mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-24 13:21:05 +00:00
Bug 1192403 - improve ICE TCP error message. r=mjf
--HG-- extra : transplant_source : -%25t%10%26%91%3EnY%1F%24%22%E2%94%24%B5%98%24c%16
This commit is contained in:
parent
a4b97ca1c4
commit
944e3aaf48
@ -486,7 +486,9 @@ static int nr_socket_multi_tcp_recvfrom(void *obj,void * restrict buf,
|
||||
|
||||
if (r!=R_WOULDBLOCK) {
|
||||
NR_SOCKET fd;
|
||||
|
||||
r_log(LOG_ICE,LOG_DEBUG,
|
||||
"%s:%d function %s(to:%s) failed with error %d",__FILE__,
|
||||
__LINE__,__FUNCTION__,tcpsock->remote_addr.as_string,r);
|
||||
if (!nr_socket_getfd(tcpsock->inner, &fd)) {
|
||||
NR_ASYNC_CANCEL(fd, NR_ASYNC_WAIT_READ);
|
||||
NR_ASYNC_CANCEL(fd, NR_ASYNC_WAIT_WRITE);
|
||||
@ -494,7 +496,6 @@ static int nr_socket_multi_tcp_recvfrom(void *obj,void * restrict buf,
|
||||
|
||||
TAILQ_REMOVE(&sock->sockets, tcpsock, entry);
|
||||
nr_tcp_socket_ctx_destroy(&tcpsock);
|
||||
r_log(LOG_ICE,LOG_DEBUG,"%s:%d function %s(from:%s) failed with error %d",__FILE__,__LINE__,__FUNCTION__,from->as_string,r);
|
||||
ABORT(r);
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user