Changes in benchmark/io/http/protocol.hfa [7270432:ed2cb3c]
- File:
-
- 1 edited
-
benchmark/io/http/protocol.hfa (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
benchmark/io/http/protocol.hfa
r7270432 red2cb3c 1 1 #pragma once 2 3 struct io_cancellation;4 2 5 3 enum HttpCode { 6 4 OK200 = 0, 5 OK200_PlainText, 7 6 E400, 8 7 E404, 8 E405, 9 E408, 9 10 E413, 10 11 E414, … … 16 17 int answer_error( int fd, HttpCode code ); 17 18 int answer_header( int fd, size_t size ); 18 int answer_plain ( int fd, char buffer [], size_t size);19 int answer_plaintext( int fd ); 19 20 int answer_empty( int fd ); 20 21 21 [HttpCode code, bool closed, * const char file, size_t len] http_read(int fd, []char buffer, size_t len , io_cancellation *);22 [HttpCode code, bool closed, * const char file, size_t len] http_read(int fd, []char buffer, size_t len); 22 23 23 voidsendfile( int pipe[2], int fd, int ans_fd, size_t count );24 int sendfile( int pipe[2], int fd, int ans_fd, size_t count );
Note:
See TracChangeset
for help on using the changeset viewer.