WPS: Move generic UPnP XML helper functionality into a separate file
This commit is contained in:
parent
092794f480
commit
0b40d03394
7 changed files with 323 additions and 272 deletions
28
src/wps/http.h
Normal file
28
src/wps/http.h
Normal file
|
@ -0,0 +1,28 @@
|
|||
/*
|
||||
* HTTP for WPS
|
||||
* Copyright (c) 2000-2003 Intel Corporation
|
||||
* Copyright (c) 2006-2007 Sony Corporation
|
||||
* Copyright (c) 2008-2009 Atheros Communications
|
||||
* Copyright (c) 2009, Jouni Malinen <j@w1.fi>
|
||||
*
|
||||
* See wps_upnp.c for more details on licensing and code history.
|
||||
*/
|
||||
|
||||
#ifndef HTTP_H
|
||||
#define HTTP_H
|
||||
|
||||
enum http_reply_code {
|
||||
HTTP_OK = 200,
|
||||
HTTP_BAD_REQUEST = 400,
|
||||
UPNP_INVALID_ACTION = 401,
|
||||
UPNP_INVALID_ARGS = 402,
|
||||
HTTP_PRECONDITION_FAILED = 412,
|
||||
HTTP_INTERNAL_SERVER_ERROR = 500,
|
||||
HTTP_UNIMPLEMENTED = 501,
|
||||
UPNP_ACTION_FAILED = 501,
|
||||
UPNP_ARG_VALUE_INVALID = 600,
|
||||
UPNP_ARG_VALUE_OUT_OF_RANGE = 601,
|
||||
UPNP_OUT_OF_MEMORY = 603
|
||||
};
|
||||
|
||||
#endif /* HTTP_H */
|
Loading…
Add table
Add a link
Reference in a new issue