Changeset 5407cdc for benchmark/io/http/protocol.hfa
- Timestamp:
- Apr 28, 2021, 4:56:50 PM (5 years ago)
- Branches:
- ADT, arm-eh, ast-experimental, enum, forall-pointer-decay, jacob/cs343-translation, master, new-ast-unique-expr, pthread-emulation, qualifiedEnum
- Children:
- 8d66610
- Parents:
- feacef9 (diff), b7fd2db6 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)links above to see all the changes relative to each parent. - File:
-
- 1 edited
-
benchmark/io/http/protocol.hfa (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
benchmark/io/http/protocol.hfa
rfeacef9 r5407cdc 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, … … 18 17 int answer_error( int fd, HttpCode code ); 19 18 int answer_header( int fd, size_t size ); 20 int answer_plain ( int fd, char buffer [], size_t size);19 int answer_plaintext( int fd ); 21 20 int answer_empty( int fd ); 22 21 23 [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); 24 23 25 24 int sendfile( int pipe[2], int fd, int ans_fd, size_t count );
Note:
See TracChangeset
for help on using the changeset viewer.