Displaying 10 results from an estimated 10 matches for "getipnodebyaddr".
2009 Sep 10
3
Samba Panic when attempting to connect using OS X cli ent (3.3.7)
..._nss_wins_freebsd_gethostbyname_r+47> at
> /usr/local/lib/nss_wins.so.1
> #4 0x207d28d4 <nsdispatch+452> at /lib/libc.so.7
> #5 0x207d2230 <gethostbyaddr_r+240> at /lib/libc.so.7
> #6 0x207d235f <gethostbyaddr+95> at /lib/libc.so.7
> #7 0x207b51f6 <getipnodebyaddr+150> at /lib/libc.so.7
> #8 0x207b3647 <getnameinfo+1191> at /lib/libc.so.7
> #9 0x29f992 <sys_getnameinfo+98> at /usr/local/sbin/smbd
> #10 0x2b92c9 <get_peer_name+345> at /usr/local/sbin/smbd
> #11 0x2a4c76 <check_access+358> at /usr/local/sbin/s...
2009 Sep 04
0
Samba Panic when attempting to connect using OS X client (3.3.7)
...b4
#3 0x20a4012f <__nss_wins_freebsd_gethostbyname_r+47> at
/usr/local/lib/nss_wins.so.1
#4 0x207d28d4 <nsdispatch+452> at /lib/libc.so.7
#5 0x207d2230 <gethostbyaddr_r+240> at /lib/libc.so.7
#6 0x207d235f <gethostbyaddr+95> at /lib/libc.so.7
#7 0x207b51f6 <getipnodebyaddr+150> at /lib/libc.so.7
#8 0x207b3647 <getnameinfo+1191> at /lib/libc.so.7
#9 0x29f992 <sys_getnameinfo+98> at /usr/local/sbin/smbd
#10 0x2b92c9 <get_peer_name+345> at /usr/local/sbin/smbd
#11 0x2a4c76 <check_access+358> at /usr/local/sbin/smbd
#12 0xdde58 &...
2004 Aug 06
3
src/net/resolver.c patches for better IPv6 resolution
...return NULL;
#ifdef HAVE_GETIPNODEBYNAME
- host = getipnodebyname(what, AF_INET6, AI_DEFAULT, &err);
- if (host) {
- if (_isip(what))
+ if (_isip(what)) {
+ /* According to FreeBSD's man page, getipnodebyname and such
+ * aren't threadsafe either */
+ _lock_resolver();
+ host = getipnodebyaddr(&addr_u.v4addr, sizeof(struct in_addr),
+ AF_INET, &err);
+ _unlock_resolver();
+ if (host == NULL) {
+ _lock_resolver();
+ host = getipnodebyaddr(&addr_u.v6addr,
+ sizeof(struct in6_addr), AF_INET6, &err);
+ _unlock_resolver();
+ }
+ if (host == NULL) {
+ buf...
2002 Nov 17
0
[PATCH] Patches to rsync-2.5.5 for Stratus VOS (update)
...me(addr, afd, res, numaddr, pai, p
struct addrinfo *pai;
int port0;
{
- u_short port = port0 & 0xffff;
+ ushort_t port = port0 & 0xffff;
struct hostent *hp;
struct addrinfo *cur;
- int error = 0, h_error;
+ int error = 0;
+#ifdef INET6
+ int h_error;
+#endif
#ifdef INET6
hp = getipnodebyaddr(addr, afd->a_addrlen, afd->a_af, &h_error);
@@ -515,7 +520,7 @@ get_addr(hostname, af, res, pai, port0)
struct addrinfo *pai;
int port0;
{
- u_short port = port0 & 0xffff;
+ ushort_t port = port0 & 0xffff;
struct addrinfo sentinel;
struct hostent *hp;
struct addrinfo *t...
2002 Sep 06
0
[PATCH] Patches to rsync-2.5.5 for Stratus VOS
...me(addr, afd, res, numaddr, pai, p
struct addrinfo *pai;
int port0;
{
- u_short port = port0 & 0xffff;
+ ushort_t port = port0 & 0xffff;
struct hostent *hp;
struct addrinfo *cur;
- int error = 0, h_error;
+ int error = 0;
+#ifdef INET6
+ int h_error;
+#endif
#ifdef INET6
hp = getipnodebyaddr(addr, afd->a_addrlen, afd->a_af, &h_error);
@@ -515,7 +520,7 @@ get_addr(hostname, af, res, pai, port0)
struct addrinfo *pai;
int port0;
{
- u_short port = port0 & 0xffff;
+ ushort_t port = port0 & 0xffff;
struct addrinfo sentinel;
struct hostent *hp;
struct addrinfo *t...
2002 Oct 14
0
[PATCH] Patches to rsync-2.5.5 for Stratus VOS (resend)
...me(addr, afd, res, numaddr, pai, p
struct addrinfo *pai;
int port0;
{
- u_short port = port0 & 0xffff;
+ ushort_t port = port0 & 0xffff;
struct hostent *hp;
struct addrinfo *cur;
- int error = 0, h_error;
+ int error = 0;
+#ifdef INET6
+ int h_error;
+#endif
#ifdef INET6
hp = getipnodebyaddr(addr, afd->a_addrlen, afd->a_af, &h_error);
@@ -515,7 +520,7 @@ get_addr(hostname, af, res, pai, port0)
struct addrinfo *pai;
int port0;
{
- u_short port = port0 & 0xffff;
+ ushort_t port = port0 & 0xffff;
struct addrinfo sentinel;
struct hostent *hp;
struct addrinfo *t...
2018 Dec 06
3
Build error while upgrading samba 4.9.3
...: ok
Checking for gethostent_r : ok
Checking for sethostent : ok
Checking for endhostent : ok
Checking for getipnodebyaddr : not found
Checking for macro getipnodebyaddr : not found
Checking for freehostent : not found
Checking for macro freehostent...
2010 Nov 01
1
Samba 4 on osx
...: not found
Checking for sethostent : ok
Checking for endhostent : ok
Checking for getipnodebyaddr : ok
Checking for freehostent : ok
Checking for gethostbyname_r : not found
Checking for...
2010 Oct 07
1
OSX and samba4 git
...: not found
Checking for sethostent : ok
Checking for endhostent : ok
Checking for getipnodebyaddr : ok
Checking for freehostent : ok
Checking for gethostbyname_r : not found
Checking for...
2010 May 02
2
samba4 make error - drsblobs.so
...es
checking for uname... yes
checking for unsetenv... (cached) yes
checking for closefrom... no
checking for hstrerror... yes
checking for err... yes
checking for warn... yes
checking for errx... yes
checking for warnx... yes
checking for flock... yes
checking for getipnodebyname... no
checking for getipnodebyaddr... no
checking for freehostent... no
checking for writev... yes
checking for bswap16... no
checking for bswap32... no
checking for struct winsize... yes
checking return type of signal handlers... void
checking for h_errno... yes
checking whether h_errno is declared... yes
checking pty.h usability.....