Skip to content

Commit 6485fed

Browse files
committed
Refactor for fmt and lint
1 parent f0416db commit 6485fed

File tree

4 files changed

+27
-13
lines changed

4 files changed

+27
-13
lines changed

latte.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -70,8 +70,8 @@ func main() {
7070
sig := <-sigs
7171
fmt.Println(sig)
7272
fmt.Println(h)
73-
fmt.Println("Lost packets: %d\n", packetsLost)
74-
fmt.Println("Orphan responses: %d\n", orphanRes)
73+
fmt.Printf("Lost packets: %d\n", packetsLost)
74+
fmt.Printf("Orphan responses: %d\n", orphanRes)
7575
if *cpuprofile != "" {
7676
pprof.StopCPUProfile()
7777
}

matching/multinet.go

+2
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ import (
66
"net"
77
)
88

9+
// MultinetMatch contains matching information for traffic generated
10+
// with Multinet's logic
911
var MultinetMatch = Match{
1012
ofp14.OFPT_PACKET_IN,
1113
ofp14.OFPT_FLOW_MOD,

matching/util.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ func roundUp(num int, exp uint) int {
55
tmp := num >> exp
66
if tmp<<exp == num {
77
return num
8-
} else {
9-
return (tmp + 1) << exp
108
}
9+
10+
return (tmp + 1) << exp
1111
}

ofp14/ofp14.go

+21-9
Original file line numberDiff line numberDiff line change
@@ -8,53 +8,63 @@ package ofp14
88

99
const (
1010
// Immutable messages (symmetric)
11+
1112
OFPT_HELLO = 0
1213
OFPT_ERROR = 1
1314
OFPT_ECHO_REQUEST = 2
1415
OFPT_ECHO_REPLY = 3
1516
OFPT_EXPERIMENTER = 4
1617

17-
/* Switch configuration messages */
18+
// Switch configuration messages
19+
1820
OFPT_FEATURES_REQUEST = 5
1921
OFPT_FEATURES_REPLY = 6
2022
OFPT_GET_CONFIG_REQUEST = 7
2123
OFPT_GET_CONFIG_REPLY = 8
2224
OFPT_SET_CONFIG = 9
2325

24-
/* Asynchronous messages */
26+
// Asynchronous messages
27+
2528
OFPT_PACKET_IN = 10
2629
OFPT_FLOW_REMOVED = 11
2730
OFPT_PORT_STATUS = 12
2831

29-
/* Controller command messages */
32+
// Controller command messages
33+
3034
OFPT_PACKET_OUT = 13
3135
OFPT_FLOW_MOD = 14
3236
OFPT_GROUP_MOD = 15
3337
OFPT_PORT_MOD = 16
3438
OFPT_TABLE_MOD = 17
3539

36-
/* Multipart messages */
40+
// Multipart messages
41+
3742
OFPT_MULTIPART_REQUEST = 18
3843
OFPT_MULTIPART_REPLY = 19
3944

40-
/* Barrier messages. */
45+
// Barrier messages
46+
4147
OFPT_BARRIER_REQUEST = 20
4248
OFPT_BARRIER_REPLY = 21
4349

44-
/* Queue Configuration messages */
50+
// Queue Configuration messages
51+
4552
OFPT_QUEUE_GET_CONFIG_REQUEST = 22
4653
OFPT_QUEUE_GET_CONFIG_REPLY = 23
4754

48-
/* Controller role change request messages */
55+
// Controller role change request messages
56+
4957
OFPT_ROLE_REQUEST = 24
5058
OFPT_ROLE_REPLY = 25
5159

52-
/* Asynchronous message configuration */
60+
// Asynchronous message configuration
61+
5362
OFPT_GET_ASYNC_REQUEST = 26
5463
OFPT_GET_ASYNC_REPLY = 27
5564
OFPT_SET_ASYNC = 28
5665

57-
/* Meters and rate limiters configuration messages */
66+
// Meters and rate limiters configuration messages
67+
5868
OFPT_METER_MOD = 29
5969
OFPT_MAX_TYPE = 29
6070

@@ -165,7 +175,9 @@ const (
165175
OXM_VALUE_OFFSET = 4
166176

167177
FLOWMOD_MATCH_OFFSET = 48 // offset of 'match' field within a FLOWMOD
178+
168179
// OXM0: the first OXM TLV
180+
169181
FLOWMOD_MATCH_OXM0_OFFSET = 52
170182

171183
OFPXMC_OPENFLOW_BASIC = 0x8000

0 commit comments

Comments
 (0)