|
System | : | Linux MiraNet 3.0.0-14-generic-pae #23-Ubuntu SMP Mon Nov 21 22:07:10 UTC 2011 i686 |
Software | : | Apache. PHP/5.3.6-13ubuntu3.10 |
ID | : | uid=65534(nobody) gid=65534(nogroup) groups=65534(nogroup)
|
|
Safe Mode | : | OFF |
Open_Basedir | : | OFF |
Freespace | : | 25.73 GB of 70.42 GB (36.54%) |
|
MySQL: ON MSSQL: OFF Oracle: OFF PostgreSQL: OFF Curl: OFF Sockets: ON Fetch: OFF Wget: ON Perl: ON |
Disabled Functions: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,
|
[ System Info ]
[ Processes ]
[ SQL Manager ]
[ Eval ]
[ Encoder ]
[ Mailer ]
[ Back Connection ]
[ Backdoor Server ]
[ Kernel Exploit Search ]
[ MD5 Decrypter ]
[ Reverse IP ]
[ Kill Shell ]
[ FTP Brute-Force ]
|
|
/
usr/
src/
courier-0.66.1/
rfc1035/
- drwxrwxrwx
|
Viewing file: rfc1035mkaddress.c (1.3 KB) -rw-rw-rw-Select action/file-type:  ( +) |  ( +) |  ( +) | Code ( +) | Session ( +) |  ( +) | SDB ( +) |  ( +) |  ( +) |  ( +) |  ( +) |  ( +) |
/* ** Copyright 1998 - 2000 Double Precision, Inc. ** See COPYING for distribution information. */ #include "config.h" #include "rfc1035.h" #include <sys/types.h> #include <sys/socket.h> #include <arpa/inet.h> #include <errno.h> #include <string.h>
/* ** Ok, take an address, and a port, and come back with a socket address ** in the specified address family. */
int rfc1035_mkaddress(int af, RFC1035_NETADDR *buf, const RFC1035_ADDR *addr, int port, const struct sockaddr **ptr, int *len) { struct sockaddr_in sin;
#if RFC1035_IPV6
if (af == AF_INET6) { struct sockaddr_in6 sin6;
memset(&sin6, 0, sizeof(sin6)); sin6.sin6_family=af; sin6.sin6_addr= *addr; sin6.sin6_port=port; memcpy(buf, &sin6, sizeof(sin6)); *ptr=(struct sockaddr *)buf; *len=sizeof(sin6); return (0); }
if (af != AF_INET || (!IN6_IS_ADDR_V4MAPPED(addr) && memcmp(addr, &in6addr_any, sizeof(*addr)))) { errno=EAFNOSUPPORT; return (-1); }
memset(&sin, 0, sizeof(sin)); sin.sin_family=af; rfc1035_ipv6to4(&sin.sin_addr, addr); sin.sin_port=port; #else if (af != AF_INET) { errno=EINVAL; return (-1); } memset(&sin, 0, sizeof(sin)); sin.sin_family=af; sin.sin_addr= *addr; sin.sin_port=port; #endif memcpy(buf, &sin, sizeof(sin)); *ptr=(struct sockaddr *)buf; *len=sizeof(sin); return (0); }
|