blob: 40d5216a63b982ea323c0bd6f7c131b450045e7f [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(
Ray Milkey6c2cbe82018-10-09 12:03:49 -07007 karaf_command_packages = ["org.onosproject.fwd"],
Thomas Vachuska970b9642018-07-10 22:30:32 -07008 deps = COMPILE_DEPS,
9)
10
11onos_app(
12 category = "Traffic Engineering",
13 description = "Provisions traffic between end-stations using hop-by-hop flow programming by " +
Ray Milkeya4f8d9d2018-07-11 10:36:23 -070014 "intercepting packets for which there are currently no matching flow objectives on the " +
15 "data plane. The paths paved in this manner are short-lived, i.e. they expire a few " +
16 "seconds after the flow on whose behalf they were programmed stops.\n\n" +
17 "The application relies on the ONOS path service to compute the shortest paths. " +
18 "In the event of negative topology events (link loss, device disconnect, etc.), " +
19 "the application will proactively invalidate any paths that it had programmed to lead " +
20 "through the resources that are no longer available.",
Thomas Vachuska970b9642018-07-10 22:30:32 -070021 title = "Reactive Forwarding",
22 url = "http://onosproject.org",
23)