mirror of https://bitbucket.org/ausocean/av.git
rtp: added print messages for debugging purposes
rtp: added print messages for debugging purposes rtp: removed binaries
This commit is contained in:
parent
fce0937810
commit
42097ddef7
|
@ -29,6 +29,7 @@ LICENSE
|
|||
package revid
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
"io"
|
||||
"net"
|
||||
"os"
|
||||
|
@ -317,6 +318,7 @@ func (s *udpSender) load(c *ring.Chunk) error {
|
|||
}
|
||||
|
||||
func (s *udpSender) send() error {
|
||||
fmt.Println(len(s.chunk.Bytes()))
|
||||
_, err := s.chunk.WriteTo(s.conn)
|
||||
return err
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue