wpa_supplicant / hostapd 2.0

http.h

Go to the documentation of this file.
00001 
00012 #ifndef HTTP_H
00013 #define HTTP_H
00014 
00015 enum http_reply_code {
00016         HTTP_OK = 200,
00017         HTTP_BAD_REQUEST = 400,
00018         UPNP_INVALID_ACTION = 401,
00019         UPNP_INVALID_ARGS = 402,
00020         HTTP_NOT_FOUND = 404,
00021         HTTP_PRECONDITION_FAILED = 412,
00022         HTTP_INTERNAL_SERVER_ERROR = 500,
00023         HTTP_UNIMPLEMENTED = 501,
00024         UPNP_ACTION_FAILED = 501,
00025         UPNP_ARG_VALUE_INVALID = 600,
00026         UPNP_ARG_VALUE_OUT_OF_RANGE = 601,
00027         UPNP_OUT_OF_MEMORY = 603
00028 };
00029 
00030 #endif /* HTTP_H */
00031 
 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Defines