diff options
author | Ulrich Drepper <drepper@redhat.com> | 2004-08-09 00:25:37 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2004-08-09 00:25:37 +0000 |
commit | 020a9a23e2eff7479ccdc6a9fc11c7572925baae (patch) | |
tree | 6d37d46fe95333cb3d26eed79f7a594f367ee50a /resolv/res_send.c | |
parent | 0b3cce3139d2cb17328c1fdd80789304250b5be3 (diff) | |
download | glibc-020a9a23e2eff7479ccdc6a9fc11c7572925baae.tar.gz glibc-020a9a23e2eff7479ccdc6a9fc11c7572925baae.tar.xz glibc-020a9a23e2eff7479ccdc6a9fc11c7572925baae.zip |
Update.
* resolv/res_send.c: Compiling with DEBUG defined works again. * resolv/gethnamaddr.c (dprintf): Renamed to Dprintf. Adjust all callers.
Diffstat (limited to 'resolv/res_send.c')
-rw-r--r-- | resolv/res_send.c | 33 |
1 files changed, 24 insertions, 9 deletions
diff --git a/resolv/res_send.c b/resolv/res_send.c index 19adc3e103..54f74d4d12 100644 --- a/resolv/res_send.c +++ b/resolv/res_send.c @@ -190,7 +190,7 @@ static int send_dg(res_state, const u_char *, int, int *, int *, u_char **); #ifdef DEBUG static void Aerror(const res_state, FILE *, const char *, int, - struct sockaddr_in); + const struct sockaddr *); static void Perror(const res_state, FILE *, const char *, int); #endif #ifdef _LIBC @@ -576,9 +576,17 @@ __libc_res_nsend(res_state statp, const u_char *buf, int buflen, } while (!done); } +#ifdef _LIBC + char tmpbuf[40]; + Dprint(statp->options & RES_DEBUG, + (stdout, ";; Querying server (# %d) address = %s\n", + ns + 1, inet_ntop(AF_INET6, &nsap->sin6_addr, + tmpbuf, sizeof (tmpbuf)))); +#else Dprint(statp->options & RES_DEBUG, (stdout, ";; Querying server (# %d) address = %s\n", ns + 1, inet_ntoa(nsap->sin_addr))); +#endif if (v_circuit) { /* Use VC; at most one attempt per server. */ @@ -610,7 +618,7 @@ __libc_res_nsend(res_state statp, const u_char *buf, int buflen, DprintQ((statp->options & RES_DEBUG) || (statp->pfcode & RES_PRF_REPLY), - (stdout, ""), + (stdout, "%s", ""), ans, (resplen > anssiz) ? anssiz : resplen); /* @@ -743,7 +751,8 @@ send_vc(res_state statp, if (connect(statp->_vcsock, (struct sockaddr *)nsap, sizeof *nsap) < 0) { *terrno = errno; - Aerror(statp, stderr, "connect/vc", errno, *nsap); + Aerror(statp, stderr, "connect/vc", errno, + (struct sockaddr *) nsap); res_nclose(statp); return (0); } @@ -948,7 +957,8 @@ send_dg(res_state statp, */ if (connect(EXT(statp).nssocks[ns], (struct sockaddr *)nsap, sizeof *nsap) < 0) { - Aerror(statp, stderr, "connect(dg)", errno, *nsap); + Aerror(statp, stderr, "connect(dg)", errno, + (struct sockaddr *) nsap); res_nclose(statp); return (0); } @@ -972,7 +982,8 @@ send_dg(res_state statp, if (sendto(s, (char*)buf, buflen, 0, (struct sockaddr *)nsap, sizeof *nsap) != buflen) { - Aerror(statp, stderr, "sendto", errno, *nsap); + Aerror(statp, stderr, "sendto", errno, + (struct sockaddr *) nsap); res_nclose(statp); return (0); } @@ -1130,18 +1141,22 @@ send_dg(res_state statp, #ifdef DEBUG static void Aerror(const res_state statp, FILE *file, const char *string, int error, - struct sockaddr_in address) + const struct sockaddr *address) { int save = errno; if ((statp->options & RES_DEBUG) != 0) { - char tmp[sizeof "255.255.255.255"]; + char tmp[sizeof "xxxx.xxxx.xxxx.255.255.255.255"]; fprintf(file, "res_send: %s ([%s].%u): %s\n", string, - inet_ntop(address.sin_family, &address.sin_addr, + inet_ntop(address->sa_family, address->sa_data, tmp, sizeof tmp), - ntohs(address.sin_port), + (address->sa_family == AF_INET + ? ntohs(((struct sockaddr_in *) address)->sin_port) + : address->sa_family == AF_INET6 + ? ntohs(((struct sockaddr_in6 *) address)->sin6_port) + : 0), strerror(error)); } __set_errno (save); |