12
12
// See the License for the specific language governing permissions and
13
13
// limitations under the License.
14
14
15
- package bwtestlib
15
+ // package bwtest contains the definitions shared between bwtestserver and
16
+ // bwtestclient.
17
+ package bwtest
16
18
17
19
import (
18
20
"bytes"
@@ -41,21 +43,17 @@ const (
41
43
MaxPacketSize int64 = 66000
42
44
// Make sure the port number is a port the server application can connect to
43
45
MinPort uint16 = 1024
44
-
45
- MaxTries = 5 // Number of times to try to reach server
46
- Timeout time.Duration = time .Millisecond * 500
47
- MaxRTT time.Duration = time .Millisecond * 1000
48
46
)
49
47
50
- type BwtestParameters struct {
48
+ type Parameters struct {
51
49
BwtestDuration time.Duration
52
50
PacketSize int64
53
51
NumPackets int64
54
52
PrgKey []byte
55
53
Port uint16
56
54
}
57
55
58
- type BwtestResult struct {
56
+ type Result struct {
59
57
NumPacketsReceived int64
60
58
CorrectlyReceived int64
61
59
IPAvar int64
@@ -107,45 +105,45 @@ func (f *prgFiller) Fill(iv int, data []byte) {
107
105
}
108
106
}
109
107
110
- // Encode BwtestResult into a sufficiently large byte buffer that is passed in, return the number of bytes written
111
- func EncodeBwtestResult (res BwtestResult , buf []byte ) (int , error ) {
108
+ // Encode Result into a sufficiently large byte buffer that is passed in, return the number of bytes written
109
+ func EncodeResult (res Result , buf []byte ) (int , error ) {
112
110
var bb bytes.Buffer
113
111
enc := gob .NewEncoder (& bb )
114
112
err := enc .Encode (res )
115
113
copy (buf , bb .Bytes ())
116
114
return bb .Len (), err
117
115
}
118
116
119
- // Decode BwtestResult from byte buffer that is passed in, returns BwtestResult structure and number of bytes consumed
120
- func DecodeBwtestResult (buf []byte ) (BwtestResult , int , error ) {
117
+ // Decode Result from byte buffer that is passed in, returns Result structure and number of bytes consumed
118
+ func DecodeResult (buf []byte ) (Result , int , error ) {
121
119
bb := bytes .NewBuffer (buf )
122
120
is := bb .Len ()
123
121
dec := gob .NewDecoder (bb )
124
- var v BwtestResult
122
+ var v Result
125
123
err := dec .Decode (& v )
126
124
return v , is - bb .Len (), err
127
125
}
128
126
129
- // Encode BwtestParameters into a sufficiently large byte buffer that is passed in, return the number of bytes written
130
- func EncodeBwtestParameters (bwtp BwtestParameters , buf []byte ) (int , error ) {
127
+ // Encode Parameters into a sufficiently large byte buffer that is passed in, return the number of bytes written
128
+ func EncodeParameters (bwtp Parameters , buf []byte ) (int , error ) {
131
129
var bb bytes.Buffer
132
130
enc := gob .NewEncoder (& bb )
133
131
err := enc .Encode (bwtp )
134
132
copy (buf , bb .Bytes ())
135
133
return bb .Len (), err
136
134
}
137
135
138
- // Decode BwtestParameters from byte buffer that is passed in, returns BwtestParameters structure and number of bytes consumed
139
- func DecodeBwtestParameters (buf []byte ) (BwtestParameters , int , error ) {
136
+ // Decode Parameters from byte buffer that is passed in, returns BwtestParameters structure and number of bytes consumed
137
+ func DecodeParameters (buf []byte ) (Parameters , int , error ) {
140
138
bb := bytes .NewBuffer (buf )
141
139
is := bb .Len ()
142
140
dec := gob .NewDecoder (bb )
143
- var v BwtestParameters
141
+ var v Parameters
144
142
err := dec .Decode (& v )
145
143
return v , is - bb .Len (), err
146
144
}
147
145
148
- func HandleDCConnSend (bwp BwtestParameters , udpConnection io.Writer ) error {
146
+ func HandleDCConnSend (bwp Parameters , udpConnection io.Writer ) error {
149
147
sb := make ([]byte , bwp .PacketSize )
150
148
t0 := time .Now ()
151
149
interPktInterval := bwp .BwtestDuration
@@ -167,7 +165,7 @@ func HandleDCConnSend(bwp BwtestParameters, udpConnection io.Writer) error {
167
165
return nil
168
166
}
169
167
170
- func HandleDCConnReceive (bwp BwtestParameters , udpConnection io.Reader ) BwtestResult {
168
+ func HandleDCConnReceive (bwp Parameters , udpConnection io.Reader ) Result {
171
169
var numPacketsReceived int64
172
170
var correctlyReceived int64
173
171
interPacketArrivalTime := make (map [int ]int64 , bwp .NumPackets )
@@ -203,7 +201,7 @@ func HandleDCConnReceive(bwp BwtestParameters, udpConnection io.Reader) BwtestRe
203
201
}
204
202
}
205
203
206
- res := BwtestResult {
204
+ res := Result {
207
205
NumPacketsReceived : numPacketsReceived ,
208
206
CorrectlyReceived : correctlyReceived ,
209
207
PrgKey : bwp .PrgKey ,
@@ -214,8 +212,8 @@ func HandleDCConnReceive(bwp BwtestParameters, udpConnection io.Reader) BwtestRe
214
212
215
213
func aggrInterArrivalTime (bwr map [int ]int64 ) (IPAvar , IPAmin , IPAavg , IPAmax int64 ) {
216
214
// reverse map, mapping timestamps to sequence numbers
217
- revMap := make (map [int64 ]int )
218
- var keys []int64 // keys are the timestamps of the received packets
215
+ revMap := make (map [int64 ]int , len ( bwr ) )
216
+ keys := make ( []int64 , 0 , len ( bwr )) // keys are the timestamps of the received packets
219
217
// fill the reverse map and the keep track of the timestamps
220
218
for k , v := range bwr {
221
219
revMap [v ] = k
0 commit comments