comparison include/urweb/types.h @ 1787:69daa6d70299

Top.postFields
author Adam Chlipala <adam@chlipala.net>
date Sat, 21 Jul 2012 15:16:57 -0400
parents c414850f206f
children f57983ba2a36
comparison
equal deleted inserted replaced
1786:d794149b3713 1787:69daa6d70299
48 typedef struct uw_Basis_postBody { 48 typedef struct uw_Basis_postBody {
49 uw_Basis_string type, data; 49 uw_Basis_string type, data;
50 } uw_Basis_postBody; 50 } uw_Basis_postBody;
51 51
52 typedef uw_Basis_string uw_Basis_queryString; 52 typedef uw_Basis_string uw_Basis_queryString;
53
54 typedef struct {
55 uw_Basis_string name, value, remaining;
56 } uw_Basis_postField;
53 57
54 typedef enum { SUCCESS, FATAL, BOUNDED_RETRY, UNLIMITED_RETRY, RETURN_INDIRECTLY } failure_kind; 58 typedef enum { SUCCESS, FATAL, BOUNDED_RETRY, UNLIMITED_RETRY, RETURN_INDIRECTLY } failure_kind;
55 59
56 typedef enum { SERVED, KEEP_OPEN, FAILED } request_result; 60 typedef enum { SERVED, KEEP_OPEN, FAILED } request_result;
57 61