ADTarm-ehast-experimentalenumforall-pointer-decayjacob/cs343-translationnew-ast-unique-exprpthread-emulationqualifiedEnum
Last change
on this file since 56911ce was
ba77750,
checked in by Thierry Delisle <tdelisle@…>, 4 years ago
|
Missing commits for plaintext
|
-
Property mode set to
100644
|
File size:
474 bytes
|
Line | |
---|
1 | #pragma once |
---|
2 | |
---|
3 | struct io_cancellation; |
---|
4 | |
---|
5 | enum HttpCode { |
---|
6 | OK200 = 0, |
---|
7 | E400, |
---|
8 | E404, |
---|
9 | E413, |
---|
10 | E414, |
---|
11 | KNOWN_CODES |
---|
12 | }; |
---|
13 | |
---|
14 | int code_val(HttpCode code); |
---|
15 | |
---|
16 | int answer_error( int fd, HttpCode code ); |
---|
17 | int answer_header( int fd, size_t size ); |
---|
18 | int answer_plain( int fd, char buffer [], size_t size ); |
---|
19 | |
---|
20 | [HttpCode code, bool closed, * const char file, size_t len] http_read(int fd, []char buffer, size_t len, io_cancellation *); |
---|
21 | |
---|
22 | void sendfile( int pipe[2], int fd, int ans_fd, size_t count ); |
---|
Note: See
TracBrowser
for help on using the repository browser.