|
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 | : | 32.17 GB of 70.42 GB (45.68%) |
|
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 ]
|
|
/
distr/
l2tpd-0.68/
- drwxrwsr-x
|
Viewing file: osport.h (951 B) -rw-rw-r--Select action/file-type:  ( +) |  ( +) |  ( +) | Code ( +) | Session ( +) |  ( +) | SDB ( +) |  ( +) |  ( +) |  ( +) |  ( +) |  ( +) |
/* * Layer Two Tunnelling Protocol Daemon * Copyright (C) 1998 Adtran, Inc. * Copyright (C) 2002 Jeff McAdams * * Mark Spencer * * This software is distributed under the terms * of the GPL, which you should have received * along with this source. * * OS Portability header file. try to map some * "standard" routines into OS-specific routines. * */
#ifndef _OSPORT_H_ #define _OSPORT_H_
#if defined(SOLARIS)
# define index(x, y) strchr(x, y) # define bcopy(S1, S2, LEN) ((void)memmove(S2, S1, LEN)) # define bzero(S1, LEN) ((void)memset(S1, 0, LEN)) # define bcmp(S1,S2,LEN) ((memcmp(S2, S1, LEN)==0)?0:1)
/* pre 2.6 solaris didn't include random(), etc prototypes * <stdlib.h> (as of 2.6) has the correct prototypes. */
# if SOLARIS < 260 # define random(X) ((int)rand(X)) # define srandom(X) ((void)srand(X)) # endif /* SOLARIS < 260 */
#endif /* defined(SOLARIS) */
#endif /* _OSPORT_H_ */
|