repo.or.cz
/
lighttpd.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[core] http_response_send_file() shared code (#2017)
[lighttpd.git]
/
src
/
network.h
blob
c478c4237c4b71dce6b09298b4bdef350fbbc6ce
1
#ifndef _NETWORK_H_
2
#define _NETWORK_H_
3
#include
"first.h"
4
5
#include
"server.h"
6
7
int
network_write_chunkqueue
(
server
*
srv
,
connection
*
con
,
chunkqueue
*
c
,
off_t max_bytes
);
8
9
int
network_init
(
server
*
srv
);
10
int
network_close
(
server
*
srv
);
11
12
int
network_register_fdevents
(
server
*
srv
);
13
14
#endif