http-bench

http-bench.git
git clone git://git.lenczewski.org/http-bench.git
Log | Files | Refs | README | LICENSE

http.h (181B)


      1 #ifndef HTTP_H
      2 #define HTTP_H
      3 
      4 #include <stddef.h>
      5 #include <stdint.h>
      6 
      7 struct str {
      8 	char *ptr;
      9 	size_t len;
     10 };
     11 
     12 struct http_header {
     13 	struct str key, val;
     14 };
     15 
     16 #endif /* HTTP_H */