source: benchmark/io/http/protocol.hfa@ 7223dbf2

ADT arm-eh ast-experimental enum forall-pointer-decay jacob/cs343-translation new-ast-unique-expr pthread-emulation qualifiedEnum
Last change on this file since 7223dbf2 was ee59ede, checked in by Thierry Delisle <tdelisle@…>, 5 years ago

Improved error handling in server

  • Property mode set to 100644
File size: 508 bytes
Line 
1#pragma once
2
3struct io_cancellation;
4
5enum HttpCode {
6 OK200 = 0,
7 E400,
8 E404,
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_plain( int fd, char buffer [], size_t size );
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, io_cancellation *);
23
24int sendfile( int pipe[2], int fd, int ans_fd, size_t count );
Note: See TracBrowser for help on using the repository browser.