Committed by
Gerrit Code Review
[Emu] [ONOS-2600] Implement Basic BGP Update protocol message parsing and decode…
… excluding path attributes. Change-Id: I37ed38cb79583fbbb31057dafc06df245aef3c49
Showing
2 changed files
with
48 additions
and
0 deletions
1 | +/* | ||
2 | + * Copyright 2015 Open Networking Laboratory | ||
3 | + * | ||
4 | + * Licensed under the Apache License, Version 2.0 (the "License"); | ||
5 | + * you may not use this file except in compliance with the License. | ||
6 | + * You may obtain a copy of the License at | ||
7 | + * | ||
8 | + * http://www.apache.org/licenses/LICENSE-2.0 | ||
9 | + * | ||
10 | + * Unless required by applicable law or agreed to in writing, software | ||
11 | + * distributed under the License is distributed on an "AS IS" BASIS, | ||
12 | + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
13 | + * See the License for the specific language governing permissions and | ||
14 | + * limitations under the License. | ||
15 | + */ | ||
16 | + | ||
17 | +package org.onosproject.bgpio.protocol; | ||
18 | + | ||
19 | +import java.util.List; | ||
20 | + | ||
21 | +import org.onlab.packet.IpPrefix; | ||
22 | +import org.onosproject.bgpio.protocol.ver4.BgpPathAttributes; | ||
23 | + | ||
24 | +/** | ||
25 | + * Abstraction of an entity providing BGP Update Message. | ||
26 | + */ | ||
27 | +public interface BgpUpdateMsg extends BGPMessage { | ||
28 | + /** | ||
29 | + * Returns path attributes in BGP Update Message. | ||
30 | + * | ||
31 | + * @return path attributes in BGP Update Message | ||
32 | + */ | ||
33 | + BgpPathAttributes bgpPathAttributes(); | ||
34 | + | ||
35 | + /** | ||
36 | + * Returns withdrawn Routes. | ||
37 | + * | ||
38 | + * @return withdrawn Routes | ||
39 | + */ | ||
40 | + List<IpPrefix> withdrawnRoutes(); | ||
41 | + | ||
42 | + /** | ||
43 | + * Returns NLRI list of prefix. | ||
44 | + * | ||
45 | + * @return NLRI list of prefix | ||
46 | + */ | ||
47 | + List<IpPrefix> nlri(); | ||
48 | +} |
This diff is collapsed. Click to expand it.
-
Please register or login to post a comment