mirror of
https://git.freebsd.org/ports.git
synced 2025-07-18 01:39:16 -04:00
Fix nss_mdns when used from applications other than ssh.
Bump PORTREVISION.
This commit is contained in:
parent
e0339bd541
commit
0124d754d2
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=189843
2 changed files with 7 additions and 41 deletions
|
@ -7,7 +7,7 @@
|
||||||
|
|
||||||
PORTNAME= nss_mdns
|
PORTNAME= nss_mdns
|
||||||
PORTVERSION= 0.9
|
PORTVERSION= 0.9
|
||||||
PORTREVISION= 1
|
PORTREVISION= 2
|
||||||
CATEGORIES= dns ipv6
|
CATEGORIES= dns ipv6
|
||||||
MASTER_SITES= http://0pointer.de/lennart/projects/nss-mdns/
|
MASTER_SITES= http://0pointer.de/lennart/projects/nss-mdns/
|
||||||
DISTNAME= nss-mdns-${PORTVERSION}
|
DISTNAME= nss-mdns-${PORTVERSION}
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
--- src/bsdnss.c.orig Sat Jan 20 17:38:27 2007
|
--- src/bsdnss.c.orig Tue Apr 10 12:16:00 2007
|
||||||
+++ src/bsdnss.c Sat Jan 20 18:12:24 2007
|
+++ src/bsdnss.c Tue Apr 10 12:21:42 2007
|
||||||
@@ -0,0 +1,462 @@
|
@@ -0,0 +1,428 @@
|
||||||
+/* rcs tags go here when pushed upstream */
|
+/* rcs tags go here when pushed upstream */
|
||||||
+/* Original author: Bruce M. Simpson <bms@FreeBSD.org> */
|
+/* Original author: Bruce M. Simpson <bms@FreeBSD.org> */
|
||||||
+
|
+
|
||||||
|
@ -88,26 +88,6 @@
|
||||||
+extern enum nss_status _nss_mdns_gethostbyaddr_r (struct in_addr * addr, int len, int type,
|
+extern enum nss_status _nss_mdns_gethostbyaddr_r (struct in_addr * addr, int len, int type,
|
||||||
+ struct hostent * result, char *buffer,
|
+ struct hostent * result, char *buffer,
|
||||||
+ size_t buflen, int *errnop, int *h_errnop);
|
+ size_t buflen, int *errnop, int *h_errnop);
|
||||||
+extern enum nss_status _nss_mdns4_gethostbyname_r (const char *name, struct hostent * result,
|
|
||||||
+ char *buffer, size_t buflen, int *errnop,
|
|
||||||
+ int *h_errnop);
|
|
||||||
+
|
|
||||||
+extern enum nss_status _nss_mdns4_gethostbyname2_r (const char *name, int af, struct hostent * result,
|
|
||||||
+ char *buffer, size_t buflen, int *errnop,
|
|
||||||
+ int *h_errnop);
|
|
||||||
+extern enum nss_status _nss_mdns4_gethostbyaddr_r (struct in_addr * addr, int len, int type,
|
|
||||||
+ struct hostent * result, char *buffer,
|
|
||||||
+ size_t buflen, int *errnop, int *h_errnop);
|
|
||||||
+extern enum nss_status _nss_mdns6_gethostbyname_r (const char *name, struct hostent * result,
|
|
||||||
+ char *buffer, size_t buflen, int *errnop,
|
|
||||||
+ int *h_errnop);
|
|
||||||
+
|
|
||||||
+extern enum nss_status _nss_mdns6_gethostbyname2_r (const char *name, int af, struct hostent * result,
|
|
||||||
+ char *buffer, size_t buflen, int *errnop,
|
|
||||||
+ int *h_errnop);
|
|
||||||
+extern enum nss_status _nss_mdns6_gethostbyaddr_r (struct in_addr * addr, int len, int type,
|
|
||||||
+ struct hostent * result, char *buffer,
|
|
||||||
+ size_t buflen, int *errnop, int *h_errnop);
|
|
||||||
+
|
+
|
||||||
+typedef enum nss_status (*_bsd_nsstub_fn_t)(const char *, struct hostent *, char *, size_t, int *, int *);
|
+typedef enum nss_status (*_bsd_nsstub_fn_t)(const char *, struct hostent *, char *, size_t, int *, int *);
|
||||||
+
|
+
|
||||||
|
@ -213,26 +193,12 @@
|
||||||
+ psa = (struct sockaddr *)(ai + 1);
|
+ psa = (struct sockaddr *)(ai + 1);
|
||||||
+
|
+
|
||||||
+ /*
|
+ /*
|
||||||
+ * 1. Select which function to call based on the address family.
|
+ * 1. Call the nss_mdns internal gethostbyname function.
|
||||||
+ * 2. Map hostent to addrinfo.
|
+ * 2. Map hostent to addrinfo.
|
||||||
+ * 3. Hand-off buffer to libc.
|
+ * 3. Hand-off buffer to libc.
|
||||||
+ */
|
+ */
|
||||||
+ switch (pai->ai_family) {
|
+ status = _nss_mdns_gethostbyname_r(name, hp, buffer, mbuflen,
|
||||||
+ case AF_UNSPEC:
|
+ &_errno, &_h_errno);
|
||||||
+ status = _nss_mdns_gethostbyname_r(name, hp, buffer, mbuflen,
|
|
||||||
+ &_errno, &_h_errno);
|
|
||||||
+ break;
|
|
||||||
+ case AF_INET:
|
|
||||||
+ status = _nss_mdns4_gethostbyname_r(name, hp, buffer, mbuflen,
|
|
||||||
+ &_errno, &_h_errno);
|
|
||||||
+ break;
|
|
||||||
+ case AF_INET6:
|
|
||||||
+ status = _nss_mdns6_gethostbyname_r(name, hp, buffer, mbuflen,
|
|
||||||
+ &_errno, &_h_errno);
|
|
||||||
+ break;
|
|
||||||
+ default:
|
|
||||||
+ break;
|
|
||||||
+ }
|
|
||||||
+ status = __nss_compat_result(status, _errno);
|
+ status = __nss_compat_result(status, _errno);
|
||||||
+
|
+
|
||||||
+ if (status == NS_SUCCESS) {
|
+ if (status == NS_SUCCESS) {
|
||||||
|
|
Loading…
Add table
Reference in a new issue