@@ -97,7 +97,7 @@ func (s SourceDescription) Marshal() ([]byte, error) {
97
97
* +=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+
98
98
*/
99
99
100
- rawPacket := make ([]byte , s .len ())
100
+ rawPacket := make ([]byte , s .MarshalSize ())
101
101
packetBody := rawPacket [headerLength :]
102
102
103
103
chunkOffset := 0
@@ -169,7 +169,8 @@ func (s *SourceDescription) Unmarshal(rawPacket []byte) error {
169
169
return nil
170
170
}
171
171
172
- func (s * SourceDescription ) len () int {
172
+ // MarshalSize returns the size of the packet once marshaled
173
+ func (s * SourceDescription ) MarshalSize () int {
173
174
chunksLength := 0
174
175
for _ , c := range s .Chunks {
175
176
chunksLength += c .len ()
@@ -182,7 +183,7 @@ func (s *SourceDescription) Header() Header {
182
183
return Header {
183
184
Count : uint8 (len (s .Chunks )),
184
185
Type : TypeSourceDescription ,
185
- Length : uint16 ((s .len () / 4 ) - 1 ),
186
+ Length : uint16 ((s .MarshalSize () / 4 ) - 1 ),
186
187
}
187
188
}
188
189
@@ -251,7 +252,7 @@ func (s *SourceDescriptionChunk) Unmarshal(rawPacket []byte) error {
251
252
return err
252
253
}
253
254
s .Items = append (s .Items , it )
254
- i += it .len ()
255
+ i += it .Len ()
255
256
}
256
257
257
258
return errPacketTooShort
@@ -260,7 +261,7 @@ func (s *SourceDescriptionChunk) Unmarshal(rawPacket []byte) error {
260
261
func (s SourceDescriptionChunk ) len () int {
261
262
chunkLen := sdesSourceLen
262
263
for _ , it := range s .Items {
263
- chunkLen += it .len ()
264
+ chunkLen += it .Len ()
264
265
}
265
266
chunkLen += sdesTypeLen // for terminating null octet
266
267
@@ -280,7 +281,8 @@ type SourceDescriptionItem struct {
280
281
Text string
281
282
}
282
283
283
- func (s SourceDescriptionItem ) len () int {
284
+ // Len returns the length of the SourceDescriptionItem when encoded as binary.
285
+ func (s SourceDescriptionItem ) Len () int {
284
286
/*
285
287
* 0 1 2 3
286
288
* 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
0 commit comments