source: benchmark/io/http/protocol.hfa @ 56c44dc

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

Implemented more options and moved them to their own file

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