log ice state

This commit is contained in:
Zack Scholl 2019-11-13 09:06:58 -08:00
parent 5ff8589d0b
commit c405779a40
1 changed files with 5 additions and 1 deletions

View File

@ -365,6 +365,10 @@ func (c *Client) CreateOfferer(finished chan<- error) (pc *webrtc.PeerConnection
return
}
pc.OnICEConnectionStateChange(func(connectionState webrtc.ICEConnectionState) {
log.Debugf("ICE Connection State has changed: %s", connectionState.String())
})
// Register channel opening handling
sendData := func(buf []byte) error {
// fmt.Printf("sent message: %x\n", md5.Sum(buf))
@ -394,7 +398,7 @@ func (c *Client) CreateOfferer(finished chan<- error) (pc *webrtc.PeerConnection
timeStart := time.Now()
for {
for {
time.Sleep(10 * time.Millisecond)
time.Sleep(1 * time.Millisecond)
if readyToBegin {
break
}