blob: f2f4bc4501581ed9440129950a13645de83ab4f8 [file] [log] [blame]
Thomas Vachuska970b9642018-07-10 22:30:32 -07001COMPILE_DEPS = CORE_DEPS + KRYO + CLI + [
2 "//core/store/serializers:onos-core-serializers",
3 "//core/store/primitives:onos-core-primitives",
4]
5
6osgi_jar_with_tests(
7 deps = COMPILE_DEPS,
8)
9
10onos_app(
11 category = "Traffic Engineering",
12 description = "Provisions traffic between end-stations using hop-by-hop flow programming by " +
Ray Milkeya4f8d9d2018-07-11 10:36:23 -070013 "intercepting packets for which there are currently no matching flow objectives on the " +
14 "data plane. The paths paved in this manner are short-lived, i.e. they expire a few " +
15 "seconds after the flow on whose behalf they were programmed stops.\n\n" +
16 "The application relies on the ONOS path service to compute the shortest paths. " +
17 "In the event of negative topology events (link loss, device disconnect, etc.), " +
18 "the application will proactively invalidate any paths that it had programmed to lead " +
19 "through the resources that are no longer available.",
Thomas Vachuska970b9642018-07-10 22:30:32 -070020 title = "Reactive Forwarding",
21 url = "http://onosproject.org",
22)