ADT
ast-experimental
enum
pthread-emulation
qualifiedEnum
Last change
on this file since 6dc17a3d was 3f39009, checked in by Thierry Delisle <tdelisle@…>, 4 years ago |
Reimplemnted how splice is handled.
|
-
Property mode
set to
100644
|
File size:
428 bytes
|
Rev | Line | |
---|
[0aec496] | 1 | #pragma once
|
---|
| 2 |
|
---|
| 3 | enum HttpCode {
|
---|
| 4 | OK200 = 0,
|
---|
[ed2cb3c] | 5 | OK200_PlainText,
|
---|
[0aec496] | 6 | E400,
|
---|
| 7 | E404,
|
---|
[b57db73] | 8 | E405,
|
---|
[ee59ede] | 9 | E408,
|
---|
[0aec496] | 10 | E413,
|
---|
| 11 | E414,
|
---|
| 12 | KNOWN_CODES
|
---|
| 13 | };
|
---|
| 14 |
|
---|
[2ecbd7b] | 15 | int code_val(HttpCode code);
|
---|
| 16 |
|
---|
[0aec496] | 17 | int answer_error( int fd, HttpCode code );
|
---|
[187fdb8] | 18 | int answer_plaintext( int fd );
|
---|
[7270432] | 19 | int answer_empty( int fd );
|
---|
[3f39009] | 20 | int answer_sendfile( int pipe[2], int fd, int ans_fd, size_t count );
|
---|
[0aec496] | 21 |
|
---|
[3f39009] | 22 | [HttpCode code, bool closed, * const char file, size_t len] http_read(int fd, []char buffer, size_t len);
|
---|
Note:
See
TracBrowser
for help on using the repository browser.