diff options
author | Paul A. Patience <paul@apatience.com> | 2021-09-05 00:43:56 -0400 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2021-09-06 10:23:35 -0700 |
commit | a534a2bd5ca3e11ea26df4e285f3fcd88221fbe7 (patch) | |
tree | f06330785cff550b0cd65de2003f825137df94c4 /socket.c | |
parent | 2fe4bf535ec47c851eb217ffbf2652cec436adfb (diff) | |
download | txr-a534a2bd5ca3e11ea26df4e285f3fcd88221fbe7.tar.gz txr-a534a2bd5ca3e11ea26df4e285f3fcd88221fbe7.tar.bz2 txr-a534a2bd5ca3e11ea26df4e285f3fcd88221fbe7.zip |
sockets: make error messages more consistent.
* socket.c (dgram_set_sock_peer): set-sock-peer -> sock-set-peer.
(sock_bind, to_connect, sock_accept, socketpair_wrap): Use ~a and
self in uv_throwf calls.
(to_connect): Add colon after self in a uv_throwf call not
reporting "failed".
(sock_listen): Remove colon after self from uv_throwf call
reporting "failed".
Diffstat (limited to 'socket.c')
-rw-r--r-- | socket.c | 34 |
1 files changed, 17 insertions, 17 deletions
@@ -661,7 +661,7 @@ static val dgram_get_sock_peer(val stream) static val dgram_set_sock_peer(val stream, val peer) { - val self = lit("set-sock-peer"); + val self = lit("sock-set-peer"); struct dgram_stream *d = coerce(struct dgram_stream *, stream->co.handle); sockaddr_pack(peer, d->family, &d->peer_addr, &d->pa_len, self); return set(mkloc(d->peer, stream), peer); @@ -712,14 +712,14 @@ static val sock_bind(val sock, val sockaddr) sockaddr_pack(sockaddr, family, &sa, &salen, self); if (bind(fd, coerce(struct sockaddr *, &sa), salen) != 0) - uw_throwf(socket_error_s, lit("sock-bind failed: ~d/~s"), - num(errno), errno_to_str(errno), nao); + uw_throwf(socket_error_s, lit("~a failed: ~d/~s"), + self, num(errno), errno_to_str(errno), nao); stream_set_prop(sock, addr_k, sockaddr); return t; } - uw_throwf(socket_error_s, lit("sock-bind: cannot bind ~s"), sock, nao); + uw_throwf(socket_error_s, lit("~a: cannot bind ~s"), self, sock, nao); } #if HAVE_POLL @@ -807,8 +807,8 @@ static int to_connect(int fd, struct sockaddr *addr, socklen_t len, case -1: return -1; case 0: - uw_throwf(timeout_error_s, lit("sock-connect ~s: timeout on ~s"), - sock, sockaddr, nao); + uw_throwf(timeout_error_s, lit("~a: ~s: timeout on ~s"), + self, sock, sockaddr, nao); default: return 0; } @@ -925,7 +925,7 @@ static val sock_listen(val sock, val backlog) return t; failed: - uw_throwf(socket_error_s, lit("~a: failed: ~d/~s"), + uw_throwf(socket_error_s, lit("~a failed: ~d/~s"), self, num(errno), errno_to_str(errno), nao); } @@ -994,8 +994,8 @@ static val sock_accept(val sock, val mode_str, val timeout_in) if (nilp(peer = sockaddr_unpack(c_num(family, self), &sa))) { free(dgram); - uw_throwf(socket_error_s, lit("sock-accept: ~s isn't a supported socket family"), - family, nao); + uw_throwf(socket_error_s, lit("~a: ~s isn't a supported socket family"), + self, family, nao); } { @@ -1027,8 +1027,8 @@ static val sock_accept(val sock, val mode_str, val timeout_in) goto failed; if (nilp(peer = sockaddr_unpack(c_num(family, self), &sa))) - uw_throwf(socket_error_s, lit("accept: ~s isn't a supported socket family"), - family, nao); + uw_throwf(socket_error_s, lit("~a: ~s isn't a supported socket family"), + self, family, nao); { val stream = open_sockfd(num(afd), family, num_fast(SOCK_STREAM), @@ -1038,11 +1038,11 @@ static val sock_accept(val sock, val mode_str, val timeout_in) } } failed: - uw_throwf(socket_error_s, lit("accept failed: ~d/~s"), - num(errno), errno_to_str(errno), nao); + uw_throwf(socket_error_s, lit("~a failed: ~d/~s"), + self, num(errno), errno_to_str(errno), nao); badfd: - uw_throwf(socket_error_s, lit("sock-accept: cannot accept on ~s"), - sock, nao); + uw_throwf(socket_error_s, lit("~a: cannot accept on ~s"), + self, sock, nao); } static val sock_shutdown(val sock, val how) @@ -1107,8 +1107,8 @@ static val socketpair_wrap(val family, val type, val mode_str) uw_simple_catch_begin; if (res < 0) - uw_throwf(socket_error_s, lit("sock-pair failed: ~d/~s"), - num(errno), errno_to_str(errno), nao); + uw_throwf(socket_error_s, lit("~a failed: ~d/~s"), + self, num(errno), errno_to_str(errno), nao); { val s0 = open_sockfd(num(sv[0]), family, type, mode_str, self); |