Ray Milkey | f80bbb2 | 2016-03-11 10:16:22 -0800 | [diff] [blame] | 1 | COMPILE_DEPS = [ |
| 2 | '//lib:CORE_DEPS', |
kalagesa | 1a1867a | 2017-03-07 13:06:41 +0530 | [diff] [blame] | 3 | '//core/store/serializers:onos-core-serializers', |
| 4 | '//core/store/primitives:onos-core-primitives', |
| 5 | '//core/api:onos-api', |
| 6 | '//lib:org.apache.karaf.shell.console', |
| 7 | '//cli:onos-cli', |
Ray Milkey | f80bbb2 | 2016-03-11 10:16:22 -0800 | [diff] [blame] | 8 | ] |
| 9 | |
Ray Milkey | 24439fe | 2016-04-08 21:50:55 -0700 | [diff] [blame] | 10 | osgi_jar_with_tests ( |
Ray Milkey | f80bbb2 | 2016-03-11 10:16:22 -0800 | [diff] [blame] | 11 | deps = COMPILE_DEPS, |
Ray Milkey | f80bbb2 | 2016-03-11 10:16:22 -0800 | [diff] [blame] | 12 | ) |
| 13 | |
Ray Milkey | 24439fe | 2016-04-08 21:50:55 -0700 | [diff] [blame] | 14 | onos_app ( |
Thomas Vachuska | 7c45e28 | 2017-08-23 17:55:53 -0700 | [diff] [blame] | 15 | title = 'Reactive Forwarding', |
Brian O'Connor | 1f16598 | 2016-04-06 21:36:09 -0700 | [diff] [blame] | 16 | category = 'Traffic Steering', |
| 17 | url = 'http://onosproject.org', |
Thomas Vachuska | 7c45e28 | 2017-08-23 17:55:53 -0700 | [diff] [blame] | 18 | description = 'Provisions traffic between end-stations using hop-by-hop flow programming by ' + |
| 19 | 'intercepting packets for which there are currently no matching flow objectives on the ' + |
| 20 | 'data plane. The paths paved in this manner are short-lived, i.e. they expire a few ' + |
| 21 | 'seconds after the flow on whose behalf they were programmed stops.\n\n' + |
| 22 | 'The application relies on the ONOS path service to compute the shortest paths. ' + |
| 23 | 'In the event of negative topology events (link loss, device disconnect, etc.), ' + |
| 24 | 'the application will proactively invalidate any paths that it had programmed to lead ' + |
| 25 | 'through the resources that are no longer available.', |
Ray Milkey | 24439fe | 2016-04-08 21:50:55 -0700 | [diff] [blame] | 26 | ) |