|
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.89 GB of 70.42 GB (35.34%) |
|
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/
gpglib/
- drwxrwxrwx
|
Viewing file: mimegpgfork.h (1.88 KB) -rw-rw-rw-Select action/file-type:  ( +) |  ( +) |  ( +) | Code ( +) | Session ( +) |  ( +) | SDB ( +) |  ( +) |  ( +) |  ( +) |  ( +) |  ( +) |
#ifndef mimegpgfork_h #define mimegpgfork_h
/* ** Copyright 2001 Double Precision, Inc. See COPYING for ** distribution information. */
#include "config.h" #include <stdio.h> #include <signal.h> #include <sys/types.h>
#ifdef __cplusplus extern "C" { #endif
struct gpgmime_forkinfo { int togpg_fd; int fromgpg_fd; int fromgpg_errfd;
char gpg_writebuf[BUFSIZ]; char gpg_errbuf[1024];
unsigned gpg_writecnt; unsigned gpg_errcnt;
int gpg_errflag; pid_t gpg_pid;
struct sigaction old_pipe_sig;
int (*gpg_readhandler)(const char *, size_t, void *); void *gpg_voidarg; } ;
int libmail_gpgmime_forksignencrypt(const char *, /* gpgdir */ const char *, /* passphrase fd */ int, /* Flags: */
#define GPG_SE_SIGN 1 #define GPG_SE_ENCRYPT 2
int, char **, /* argc/argv */
int (*)(const char *, size_t, void *), /* Encrypted output */ void *, /* 3rd arg to encrypted output */
struct gpgmime_forkinfo * /* Allocated struct */ );
int libmail_gpgmime_forkchecksign(const char *, /* gpgdir */ const char *, /* passphrase fd */ const char *, /* content filename */ const char *, /* signature filename */ int, char **, /* argc/argv */ struct gpgmime_forkinfo *); /* Allocated struct */
int libmail_gpgmime_forkdecrypt(const char *, /* gpgdir */ const char *, /* passphrase fd */ int, char **, /* argc/argv */ int (*)(const char *, size_t, void *), /* Output callback function */ void *, /* 3rd arg to callback function */
struct gpgmime_forkinfo *); /* Allocated struct */
void libmail_gpgmime_write(struct gpgmime_forkinfo *, const char *, size_t); int libmail_gpgmime_finish(struct gpgmime_forkinfo *);
const char *libmail_gpgmime_getoutput(struct gpgmime_forkinfo *); const char *libmail_gpgmime_getcharset(struct gpgmime_forkinfo *);
#ifdef __cplusplus } ; #endif
#endif
|