source: benchmark/io/http/protocol.hfa @ 2cd784a

ADTarm-ehast-experimentalenumforall-pointer-decayjacob/cs343-translationnew-ast-unique-exprpthread-emulationqualifiedEnum
Last change on this file since 2cd784a was ed2cb3c, checked in by Thierry Delisle <tdelisle@…>, 3 years ago

Client can now send message without copying.

  • Property mode set to 100644
File size: 464 bytes
Line 
1#pragma once
2
3enum HttpCode {
4        OK200 = 0,
5        OK200_PlainText,
6        E400,
7        E404,
8        E405,
9        E408,
10        E413,
11        E414,
12        KNOWN_CODES
13};
14
15int code_val(HttpCode code);
16
17int answer_error( int fd, HttpCode code );
18int answer_header( int fd, size_t size );
19int answer_plaintext( int fd );
20int answer_empty( int fd );
21
22[HttpCode code, bool closed, * const char file, size_t len] http_read(int fd, []char buffer, size_t len);
23
24int sendfile( int pipe[2], int fd, int ans_fd, size_t count );
Note: See TracBrowser for help on using the repository browser.