blob: 48b1eec1384b2b8bf70b689668adda46f4b81503 [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 " +
13 "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.",
20 title = "Reactive Forwarding",
21 url = "http://onosproject.org",
22)