Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • benchmark/io/http/protocol.hfa

    red2cb3c rb57db73  
    11#pragma once
     2
     3struct io_cancellation;
    24
    35enum HttpCode {
    46        OK200 = 0,
    5         OK200_PlainText,
    67        E400,
    78        E404,
     
    1718int answer_error( int fd, HttpCode code );
    1819int answer_header( int fd, size_t size );
    19 int answer_plaintext( int fd );
     20int answer_plain( int fd, char buffer [], size_t size );
    2021int answer_empty( int fd );
    2122
    22 [HttpCode code, bool closed, * const char file, size_t len] http_read(int fd, []char buffer, size_t len);
     23[HttpCode code, bool closed, * const char file, size_t len] http_read(int fd, []char buffer, size_t len, io_cancellation *);
    2324
    2425int sendfile( int pipe[2], int fd, int ans_fd, size_t count );
Note: See TracChangeset for help on using the changeset viewer.