|
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.01 GB of 70.42 GB (34.09%) |
|
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/
maildrop-2.2.0/
rfc822/
- drwxr-xr-x
|
Viewing file: encode.h (1.25 KB) -rw-r--r--Select action/file-type:  ( +) |  ( +) |  ( +) | Code ( +) | Session ( +) |  ( +) | SDB ( +) |  ( +) |  ( +) |  ( +) |  ( +) |  ( +) |
/* ** $Id: encode.h,v 1.2 2004/05/23 14:28:24 mrsam Exp $ */ #ifndef rfc822_encode_h #define rfc822_encode_h
/* ** Copyright 2004 Double Precision, Inc. ** See COPYING for distribution information. */
#if HAVE_CONFIG_H #include "../rfc822/config.h" /* VPATH build */ #endif #include <stdio.h> #include <sys/types.h> #include <stdlib.h> #include <time.h>
#ifdef __cplusplus extern "C" { #endif
struct libmail_encode_info { char output_buffer[BUFSIZ]; int output_buf_cnt;
char input_buffer[57]; /* For base64 */ int input_buf_cnt;
int (*encoding_func)(struct libmail_encode_info *, const char *, size_t); int (*callback_func)(const char *, size_t, void *); void *callback_arg; };
const char *libmail_encode_autodetect_fp(FILE *, int okQp); const char *libmail_encode_autodetect_fppos(FILE *, const char *, off_t, off_t); const char *libmail_encode_autodetect_str(const char *, const char *);
void libmail_encode_start(struct libmail_encode_info *info, const char *transfer_encoding, int (*callback_func)(const char *, size_t, void *), void *callback_arg);
int libmail_encode(struct libmail_encode_info *info, const char *ptr, size_t cnt);
int libmail_encode_end(struct libmail_encode_info *info);
#ifdef __cplusplus } #endif
#endif
|