blob: 3f10c4255a2df882d8082728b26aaca04a000ba5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
|
package com.lumaserv.bgp.protocol.attribute;
import lombok.Getter;
import lombok.Setter;
import java.nio.ByteBuffer;
import java.util.ArrayList;
import java.util.List;
@Getter
@Setter
public class LargeCommunityAttribute implements PathAttribute {
List<LargeCommunity> communities = new ArrayList<>();
public LargeCommunityAttribute(byte typeCode, byte[] data) {
for(int i=0; i<data.length; i+=12) {
communities.add(new LargeCommunity()
.setGlobalAdministrator(
((data[i] & 0xFF) << 24) |
((data[i+1] & 0xFF) << 16) |
((data[i+2] & 0xFF) << 8) |
(data[i+3] & 0xFF)
)
.setLocalDataPart1(
((data[i+4] & 0xFF) << 24) |
((data[i+5] & 0xFF) << 16) |
((data[i+6] & 0xFF) << 8) |
(data[i+7] & 0xFF)
)
.setLocalDataPart2(
((data[i+8] & 0xFF) << 24) |
((data[i+9] & 0xFF) << 16) |
((data[i+10] & 0xFF) << 8) |
(data[i+11] & 0xFF)
)
);
}
}
public byte getTypeCode() {
return 32;
}
public void build(ByteBuffer b) {
}
@Setter
@Getter
public static class LargeCommunity {
int globalAdministrator;
int localDataPart1;
int localDataPart2;
}
}
|