2005-02-20 14:27:00 +00:00
|
|
|
#ifndef _NETWORK_H_
|
|
|
|
#define _NETWORK_H_
|
2016-03-19 15:14:35 +00:00
|
|
|
#include "first.h"
|
2005-02-20 14:27:00 +00:00
|
|
|
|
|
|
|
#include "server.h"
|
|
|
|
|
2011-08-22 15:12:28 +00:00
|
|
|
int network_write_chunkqueue(server *srv, connection *con, chunkqueue *c, off_t max_bytes);
|
2005-02-20 14:27:00 +00:00
|
|
|
|
|
|
|
int network_init(server *srv);
|
|
|
|
int network_close(server *srv);
|
|
|
|
|
|
|
|
int network_register_fdevents(server *srv);
|
|
|
|
|
|
|
|
#endif
|