Zsh Mailing List Archive
Messages sorted by:
Reverse Date,
Date,
Thread,
Author
Re: PATCH: Re: inet_{a,p}ton prototypes in Src/Modules/zftp.pro
- X-seq: zsh-users 3872
- From: Andrej Borsenkow <Andrej.Borsenkow@xxxxxxxxxxxxxx>
- To: <zsh-users@xxxxxxxxxx>
- Subject: Re: PATCH: Re: inet_{a,p}ton prototypes in Src/Modules/zftp.pro
- Date: Thu, 10 May 2001 00:01:23 +0400 (MSD)
- Cc: Paul Ackersviller <paulda@xxxxxxxxxxxxx>
- In-reply-to: <Pine.SV4.4.33.0105092346260.28289-100000@xxxxxxxxxxxxxxxxxxxxx>
- Mailing-list: contact zsh-users-help@xxxxxxxxxx; run by ezmlm
On Wed, 9 May 2001, Andrej Borsenkow wrote:
>
> O.K. here is patch for zftp.c.
Really here this time.
Index: Src/Modules/zftp.c
===================================================================
RCS file: /cvsroot/zsh/zsh/Src/Modules/zftp.c,v
retrieving revision 1.11
diff -u -r1.11 zftp.c
--- Src/Modules/zftp.c 2001/04/13 16:54:58 1.11
+++ Src/Modules/zftp.c 2001/05/09 19:44:23
@@ -126,12 +126,12 @@
# define INET6_ADDRSTRLEN 46
#endif
-/**/
+/**/
#ifndef HAVE_INET_NTOP
-/**/
+/**/
static char const *
-inet_ntop(int af, void const *cp, char *buf, size_t len)
+zsh_inet_ntop(int af, void const *cp, char *buf, size_t len)
{
if(af != AF_INET) {
errno = EAFNOSUPPORT;
@@ -144,8 +144,12 @@
strcpy(buf, inet_ntoa(*(struct in_addr *)cp));
return buf;
}
+
+#else /* !HAVE_INET_NTOP */
-/**/
+# define zsh_inet_ntop inet_ntop
+
+/**/
#endif /* !HAVE_INET_NTOP */
/**/
@@ -159,38 +163,68 @@
# endif
/**/
-static int inet_aton(char const *src, struct in_addr *dst)
+static int zsh_inet_aton(char const *src, struct in_addr *dst)
{
return (dst->s_addr = inet_addr(src)) != INADDR_NONE;
}
+#else /* !HAVE_INET_ATON */
+
+# define zsh_inet_aton inet_aton
+
/**/
# endif /* !HAVE_INET_ATON */
/**/
static int
-inet_pton(int af, char const *src, void *dst)
+zsh_inet_pton(int af, char const *src, void *dst)
{
if(af != AF_INET) {
errno = EAFNOSUPPORT;
return -1;
}
- return !!inet_aton(src, dst);
+ return !!zsh_inet_aton(src, dst);
}
+#else /* !HAVE_INET_PTON */
+
+# define zsh_inet_pton inet_pton
+
/**/
#endif /* !HAVE_INET_PTON */
/**/
#ifndef HAVE_GETIPNODEBYNAME
+/**/
+# ifndef HAVE_GETHOSTBYNAME2
+
+/**/
+static struct hostent *
+zsh_gethostbyname2(char const *name, int af)
+{
+ if(af != AF_INET) {
+ h_errno = NO_RECOVERY;
+ return NULL;
+ }
+ return gethostbyname(name);
+}
+
+#else /* !HAVE_GETHOSTBYNAME2 */
+
+# define zsh_gethostbyname2 gethostbyname2
+
+/**/
+# endif /* !HAVE_GETHOSTBYNAME2 */
+
+
/* note: this is not a complete implementation. If ignores the flags,
and does not provide the memory allocation of the standard interface.
Each returned structure will overwrite the previous one. */
/**/
static struct hostent *
-getipnodebyname(char const *name, int af, int flags, int *errorp)
+zsh_getipnodebyname(char const *name, int af, int flags, int *errorp)
{
static struct hostent ahe;
static char nbuf[16];
@@ -201,8 +235,8 @@
static char pbuf[INET_ADDRSTRLEN];
# endif
struct hostent *he;
- if(inet_pton(af, name, nbuf) == 1) {
- inet_ntop(af, nbuf, pbuf, sizeof(pbuf));
+ if(zsh_inet_pton(af, name, nbuf) == 1) {
+ zsh_inet_ntop(af, nbuf, pbuf, sizeof(pbuf));
ahe.h_name = pbuf;
ahe.h_aliases = addrlist+1;
ahe.h_addrtype = af;
@@ -210,35 +244,21 @@
ahe.h_addr_list = addrlist;
return &ahe;
}
- he = gethostbyname2(name, af);
+ he = zsh_gethostbyname2(name, af);
if(!he)
*errorp = h_errno;
return he;
}
-
/**/
-# ifndef HAVE_GETHOSTBYNAME2
-
-/**/
-struct hostent *
-gethostbyname2(char const *name, int af)
-{
- if(af != AF_INET) {
- h_errno = NO_RECOVERY;
- return NULL;
- }
- return gethostbyname(name);
-}
-
-/**/
-# endif /* !HAVE_GETHOSTBYNAME2 */
-
-/**/
static void
freehostent(struct hostent *ptr)
{
}
+#else /* !HAVE_GETIPNODEBYNAME */
+
+# define zsh_getipnodebyname getipnodebyname
+
/**/
#endif /* !HAVE_GETIPNODEBYNAME */
@@ -1171,7 +1191,7 @@
if(zdsockp->a.sa_family == AF_INET6) {
/* see RFC 2428 for explanation */
strcpy(portcmd, "EPRT |2|");
- inet_ntop(AF_INET6, &zdsockp->in6.sin6_addr,
+ zsh_inet_ntop(AF_INET6, &zdsockp->in6.sin6_addr,
portcmd+8, INET6_ADDRSTRLEN);
sprintf(strchr(portcmd, 0), "|%u|\r\n",
(unsigned)ntohs(zdsockp->in6.sin6_port));
@@ -1917,7 +1937,7 @@
# define FAILED() do { } while(0)
#endif
{
- zhostp = getipnodebyname(args[0], af, 0, &herrno);
+ zhostp = zsh_getipnodebyname(args[0], af, 0, &herrno);
if (!zhostp || errflag) {
/* should use herror() here if available, but maybe
* needs configure test. on AIX it's present but not
@@ -1999,7 +2019,7 @@
char pbuf[INET_ADDRSTRLEN];
#endif
addrp--;
- inet_ntop(af, *addrp, pbuf, sizeof(pbuf));
+ zsh_inet_ntop(af, *addrp, pbuf, sizeof(pbuf));
zfsetparam("ZFTP_IP", ztrdup(pbuf), ZFPM_READONLY);
}
freehostent(zhostp);
Messages sorted by:
Reverse Date,
Date,
Thread,
Author