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.
19 lines
270 B
19 lines
270 B
5 years ago
|
#ifndef INCLUDED_BASE_DECLS_H
|
||
|
#define INCLUDED_BASE_DECLS_H
|
||
|
|
||
|
#include "first.h"
|
||
|
|
||
|
#include <sys/types.h>
|
||
|
|
||
|
struct server;
|
||
|
typedef struct server server;
|
||
|
|
||
|
struct connection;
|
||
|
typedef struct connection connection;
|
||
|
|
||
|
union sock_addr;
|
||
|
typedef union sock_addr sock_addr;
|
||
|
|
||
|
|
||
|
#endif
|