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