comparison include/types.h @ 1347:b106ca8200b1

postBody type
author Adam Chlipala <adam@chlipala.net>
date Sat, 18 Dec 2010 10:56:31 -0500
parents 1cc67fdac4d3
children 87156c44824f
comparison
equal deleted inserted replaced
1346:faad7d01b200 1347:b106ca8200b1
38 typedef struct uw_Basis_file { 38 typedef struct uw_Basis_file {
39 uw_Basis_string name, type; 39 uw_Basis_string name, type;
40 uw_Basis_blob data; 40 uw_Basis_blob data;
41 } uw_Basis_file; 41 } uw_Basis_file;
42 42
43 typedef struct uw_Basis_postBody {
44 uw_Basis_string type, data;
45 } uw_Basis_postBody;
46
43 typedef enum { SUCCESS, FATAL, BOUNDED_RETRY, UNLIMITED_RETRY, RETURN_INDIRECTLY } failure_kind; 47 typedef enum { SUCCESS, FATAL, BOUNDED_RETRY, UNLIMITED_RETRY, RETURN_INDIRECTLY } failure_kind;
44 48
45 typedef enum { SERVED, KEEP_OPEN, FAILED } request_result; 49 typedef enum { SERVED, KEEP_OPEN, FAILED } request_result;
46 50
47 typedef struct input *uw_input; 51 typedef struct input *uw_input;