lighttpd 1.4.x
https://www.lighttpd.net/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
710 B
43 lines
710 B
#ifndef INCLUDED_BASE_DECLS_H |
|
#define INCLUDED_BASE_DECLS_H |
|
|
|
#include "first.h" |
|
|
|
struct server; |
|
typedef struct server server; |
|
|
|
struct connection; |
|
typedef struct connection connection; |
|
|
|
struct h2con; |
|
typedef struct h2con h2con; |
|
|
|
struct plugin; |
|
typedef struct plugin plugin; |
|
|
|
struct request_st; |
|
typedef struct request_st request_st; |
|
|
|
union sock_addr; |
|
typedef union sock_addr sock_addr; |
|
|
|
struct fdnode_st; |
|
typedef struct fdnode_st fdnode; |
|
|
|
struct log_error_st; |
|
typedef struct log_error_st log_error_st; |
|
|
|
enum handler_t { |
|
HANDLER_GO_ON, |
|
HANDLER_FINISHED, |
|
HANDLER_COMEBACK, |
|
HANDLER_WAIT_FOR_EVENT, |
|
HANDLER_ERROR, |
|
HANDLER_WAIT_FOR_FD |
|
}; |
|
typedef enum handler_t handler_t; |
|
|
|
#define BV(x) (1 << x) |
|
|
|
|
|
#endif
|
|
|