⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 cse.h

📁 resinweb服务器源文件
💻 H
字号:
/* * Copyright (c) 1999-2001 Caucho Technology.  All rights reserved. * * Caucho Technology permits redistribution, modification and use * of this file in source and binary form ("the Software") under the * Caucho Public License ("the License").  In particular, the following * conditions must be met: * * 1. Each copy or derived work of the Software must preserve the copyright *    notice and this notice unmodified. * * 2. Redistributions of the Software in source or binary form must include  *    an unmodified copy of the License, normally in a plain ASCII text * * 3. The names "Resin" or "Caucho" are trademarks of Caucho Technology and *    may not be used to endorse products derived from this software. *    "Resin" or "Caucho" may not appear in the names of products derived *    from this software. * * 4. Caucho Technology requests that attribution be given to Resin *    in any manner possible.  We suggest using the "Resin Powered" *    button or creating a "powered by Resin(tm)" link to *    http://www.caucho.com for each page served by Resin. * * This Software is provided "AS IS," without a warranty of any kind.  * ALL EXPRESS OR IMPLIED REPRESENTATIONS AND WARRANTIES, INCLUDING ANY * IMPLIED WARRANTY OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE * OR NON-INFRINGEMENT, ARE HEREBY EXCLUDED. * * CAUCHO TECHNOLOGY AND ITS LICENSORS SHALL NOT BE LIABLE FOR ANY DAMAGES * SUFFERED BY LICENSEE OR ANY THIRD PARTY AS A RESULT OF USING OR * DISTRIBUTING SOFTWARE. IN NO EVENT WILL Caucho OR ITS LICENSORS BE LIABLE * FOR ANY LOST REVENUE, PROFIT OR DATA, OR FOR DIRECT, INDIRECT, SPECIAL, * CONSEQUENTIAL, INCIDENTAL OR PUNITIVE DAMAGES, HOWEVER CAUSED AND * REGARDLESS OF THE THEORY OF LIABILITY, ARISING OUT OF THE USE OF OR * INABILITY TO USE SOFTWARE, EVEN IF HE HAS BEEN ADVISED OF THE POSSIBILITY * OF SUCH DAMAGES.       */#ifndef CSE_H#define CSE_H#include "srun.h"typedef struct mem_pool_t mem_pool_t;#define CONN_POOL_SIZE 128typedef struct registry_t {  struct registry_t *parent;  struct registry_t *next;  struct registry_t *prev;  struct registry_t *first;  struct registry_t *last;  char *key;  char *value;} registry_t;typedef struct location_t {  struct location_t *next;  struct web_app_t *application;    char *prefix;  char *suffix;  int is_exact;  int ignore;     /* If true, a matching will defer to the web server. */} location_t;typedef struct caucho_host_t {  char *host;  int port;} caucho_host_t;typedef struct web_app_t {  struct web_app_t *next;  struct config_t *config;    char *host;  caucho_host_t **host_aliases;  int host_alias_length;    char *prefix;  int has_resin_conf;  /* true if configured in the resin.conf */  struct location_t *locations;} web_app_t;typedef struct stream_t stream_t;typedef struct srun_t {  int is_valid;    char *hostname;  struct in_addr *host;  int port;  int connect_timeout;       /* time the connect() call should wait  */  int live_time;             /* time an idle socket should live      */  int dead_time;             /* time a dead srun stays dead          */    void *lock;                /* lock specific to the srun            */    int is_dead;               /* true if the connect() failed         */  unsigned int fail_time;    /* when the last connect() failed       */  void *ssl;                 /* ssl context                          */  int (*open) (stream_t *);  int (*read) (stream_t *, char *buf, int len);  int (*write) (stream_t *, const char *buf, int len);  int (*close) (int socket, void *ssl);  struct conn_t {            /* pool of idle sockets (ring)          */    struct srun_t *srun;     /* owning srun                          */    int socket;              /* socket file descriptor               */    void *ssl;               /* ssl context                          */    unsigned int last_time;  /* last time the socket was used        */  } conn_pool[CONN_POOL_SIZE];  int conn_head;             /* head of the pool (most recent used)  */  int conn_tail;             /* tail of the pool (least recent used) */    int max_sockets;  int is_default;  int active_sockets;        /* current number of active connections */} srun_t;typedef struct depend_t {  struct depend_t *next;  char *path;  int last_modified;  int last_size;} depend_t;typedef struct srun_item_t {  srun_t *srun;  char *id;  char *group_id;  int is_valid;  int is_backup;  int session;  int group_index;  struct srun_item_t **group;  int group_size;} srun_item_t;typedef struct config_t {  void *p;  void *web_pool;    void *lock;  char *error;  int disable_caucho_status;  int disable_sticky_sessions;  int round_robin_index;  int disable_session_failover;  char *path;  char *resin_home;  char *work_dir;  char *error_page;  char *session_url_prefix;  int session_url_prefix_length;  char *alt_session_prefix;  int alt_session_prefix_length;  char *session_cookie;  registry_t *registry;  web_app_t *applications;  srun_item_t *srun_list;    int srun_capacity;  int srun_size;  int last_update;  int update_count;  depend_t *depend_list;} config_t;#define BUF_LENGTH 8192struct stream_t {  struct srun_item_t *srun;  void *pool;  void *web_pool;  int update_count;  int socket;  void *ssl;  void *ssl_ctx;    struct config_t *config;  unsigned char read_buf[BUF_LENGTH + 8];  int read_offset;  int read_length;  unsigned char write_buf[BUF_LENGTH + 8];  int write_length;  int sent_data;  };#define CSE_NULL            '?'#define CSE_PATH_INFO       'b'#define CSE_PROTOCOL        'c'#define CSE_METHOD          'd'#define CSE_QUERY_STRING    'e'#define CSE_SERVER_NAME     'f'#define CSE_SERVER_PORT     'g'#define CSE_REMOTE_HOST     'h'#define CSE_REMOTE_ADDR     'i'#define CSE_REMOTE_PORT     'j'#define CSE_REAL_PATH       'k'#define CSE_REMOTE_USER     'm'#define CSE_AUTH_TYPE       'n'#define CSE_URI             'o'#define CSE_CONTENT_LENGTH  'p'#define CSE_CONTENT_TYPE    'q'#define CSE_IS_SECURE       'r'#define CSE_SESSION_GROUP   's'#define CSE_CLIENT_CERT     't'#define CSE_SERVER_TYPE		'u'#define CSE_HEADER          'H'#define CSE_VALUE           'V'#define CSE_STATUS          'S'#define CSE_SEND_HEADER     'G'#define CSE_PING            'P'#define CSE_QUERY           'Q'#define CSE_ACK             'A'#define CSE_DATA            'D'#define CSE_FLUSH           'F'#define CSE_KEEPALIVE       'K'#define CSE_END             'Z'#define CSE_CLOSE           'X'#ifdef DEBUG#define LOG(x) cse_log x#define ERR(x) cse_log x#else#define LOG(x)#define ERR(x)#endif#ifndef WIN32#undef closesocket#define closesocket(x) close(x)#endifmem_pool_t *cse_create_pool(config_t *config);void cse_free_pool(mem_pool_t *);/* base malloc */void *cse_malloc(int size);void *cse_alloc(mem_pool_t *p, int size);char *cse_strdup(mem_pool_t *p, const char *string);void cse_error(config_t *config, char *format, ...);registry_t *cse_parse(FILE *is, config_t *config, char *path);registry_t *cse_next_link(registry_t *reg, char *key);char *cse_find_value(registry_t *reg, char *key);char *cse_find_inherited_value(registry_t *reg, char *key, char *deflt);void cse_print_registry(registry_t *registry);void cse_init_config(config_t *config);void cse_update_config(config_t *config, int now);int cse_match_request(config_t *config, const char *host, int port,                      const char *url, int should_escape);srun_item_t *cse_add_host_int(config_t *config, const char *hostname,		 int port, int session, char *id, char *group,                 int is_backup, int is_ssl);srun_item_t *cse_add_host(config_t *config, const char *host, int port);srun_item_t *cse_add_backup(config_t *config, const char *host, int port);void cse_log(char *fmt, ...);int cse_session_from_string(char *source, char *cookie, int *backup_index);int cse_open(stream_t *s, config_t *config, srun_item_t *srun, void *p, int wait);void cse_close(stream_t *s, char *msg);void cse_close_stream(stream_t *s);void cse_close_sockets(config_t *config);void cse_recycle(stream_t *s, unsigned int now);int cse_flush(stream_t *s);int cse_fill_buffer(stream_t *s);int cse_read_byte(stream_t *s);void cse_write(stream_t *s, const char *buf, int length);int cse_read_all(stream_t *s, char *buf, int len);int cse_skip(stream_t *s, int length);int cse_read_limit(stream_t *s, char *buf, int buflen, int readlen);void cse_write_packet(stream_t *s, char code, const char *buf, int length);void cse_write_string(stream_t *s, char code, const char *buf);int cse_read_string(stream_t *s, char *buf, int length);void cse_kill_socket_cleanup(int socket, void *pool);void cse_set_socket_cleanup(int socket, void *pool);intcse_open_connection(stream_t *s, config_t *config,		    int session_index, int backup_offset,                    unsigned int request_time, void *pool);void close_srun(config_t *config, srun_t *srun, unsigned int now);void *cse_create_lock(config_t *config);int cse_lock(void *lock);void cse_unlock(void *lock);void cse_close_all();void cse_add_depend(config_t *config, char *path);#endif /* CSE_H */

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -