protocol/rtcp/client.go: not embedding log

This commit is contained in:
Saxon 2019-05-08 13:49:09 +09:30
parent 040cd18db3
commit 76612ea8df
1 changed files with 1 additions and 1 deletions

View File

@ -68,7 +68,7 @@ type Client struct {
wg sync.WaitGroup // This is used to wait for send and recv routines to stop when Client is stopped.
quitSend chan struct{} // Channel used to communicate quit signal to send routine.
quitRecv chan struct{} // Channel used to communicate quit signal to recv routine.
log // Used to log any messages.
log log // Used to log any messages.
err chan error // Client will send any errors through this chan. Can be accessed by Err().
}