@@ -217,8 +217,13 @@ type ClientOnResponseFunc func(*base.Response)
217
217
type ClientOnTransportSwitchFunc func (err error )
218
218
219
219
// ClientOnPacketLostFunc is the prototype of Client.OnPacketLost.
220
+ //
221
+ // Deprecated: replaced by ClientOnPacketLost2Func
220
222
type ClientOnPacketLostFunc func (err error )
221
223
224
+ // ClientOnPacketLost2Func is the prototype of Client.OnPacketLost2.
225
+ type ClientOnPacketLost2Func func (lost uint64 )
226
+
222
227
// ClientOnDecodeErrorFunc is the prototype of Client.OnDecodeError.
223
228
type ClientOnDecodeErrorFunc func (err error )
224
229
@@ -276,9 +281,11 @@ type Client struct {
276
281
// explicitly request back channels to the server.
277
282
RequestBackChannels bool
278
283
// pointer to a variable that stores received bytes.
284
+ //
279
285
// Deprecated: use Client.Stats()
280
286
BytesReceived * uint64
281
287
// pointer to a variable that stores sent bytes.
288
+ //
282
289
// Deprecated: use Client.Stats()
283
290
BytesSent * uint64
284
291
@@ -306,7 +313,11 @@ type Client struct {
306
313
// called when the transport protocol changes.
307
314
OnTransportSwitch ClientOnTransportSwitchFunc
308
315
// called when the client detects lost packets.
316
+ //
317
+ // Deprecated: replaced by OnPacketLost2.
309
318
OnPacketLost ClientOnPacketLostFunc
319
+ // called when the client detects lost packets.
320
+ OnPacketLost2 ClientOnPacketLost2Func
310
321
// called when a non-fatal decode error occurs.
311
322
OnDecodeError ClientOnDecodeErrorFunc
312
323
@@ -423,9 +434,21 @@ func (c *Client) Start(scheme string, host string) error {
423
434
log .Println (err .Error ())
424
435
}
425
436
}
426
- if c .OnPacketLost == nil {
427
- c .OnPacketLost = func (err error ) {
428
- log .Println (err .Error ())
437
+ if c .OnPacketLost != nil {
438
+ c .OnPacketLost2 = func (lost uint64 ) {
439
+ c .OnPacketLost (liberrors.ErrClientRTPPacketsLost {Lost : uint (lost )}) //nolint:staticcheck
440
+ }
441
+ }
442
+ if c .OnPacketLost2 == nil {
443
+ c .OnPacketLost2 = func (lost uint64 ) {
444
+ log .Printf ("%d RTP %s lost" ,
445
+ lost ,
446
+ func () string {
447
+ if lost == 1 {
448
+ return "packet"
449
+ }
450
+ return "packets"
451
+ }())
429
452
}
430
453
}
431
454
if c .OnDecodeError == nil {
0 commit comments