Small wrapper of TLS_cyassl

Dependents:   HTTPSClientExample2

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers HTTPStatus.h Source File

HTTPStatus.h

00001 #ifndef HTTP_STATUS_H
00002 #define HTTP_STATUS_H
00003 
00004 
00005 enum HTTPStatus {
00006     HTTP_OK = 200,
00007     HTTP_BAD_REQUEST = 400,
00008     HTTP_UNAUTHORIZED,
00009     HTTP_FORBIDDEN = 403,
00010     HTTP_NOT_FOUND,
00011     HTTP_INTERNAL_ERROR = 500,
00012     HTTP_INVALID = 0
00013 };
00014 
00015 
00016 #endif
00017