wpa_supplicant / hostapd  2.5
 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
http.h
Go to the documentation of this file.
1 
10 #ifndef HTTP_H
11 #define HTTP_H
12 
13 enum http_reply_code {
14  HTTP_OK = 200,
15  HTTP_BAD_REQUEST = 400,
16  UPNP_INVALID_ACTION = 401,
17  UPNP_INVALID_ARGS = 402,
18  HTTP_NOT_FOUND = 404,
19  HTTP_PRECONDITION_FAILED = 412,
20  HTTP_INTERNAL_SERVER_ERROR = 500,
21  HTTP_UNIMPLEMENTED = 501,
22  UPNP_ACTION_FAILED = 501,
23  UPNP_ARG_VALUE_INVALID = 600,
24  UPNP_ARG_VALUE_OUT_OF_RANGE = 601,
25  UPNP_OUT_OF_MEMORY = 603
26 };
27 
28 #endif /* HTTP_H */