NetServices Stack source
Dependents: HelloWorld ServoInterfaceBoardExample1 4180_Lab4
Diff: services/http/client/HTTPClient.h
- Revision:
- 6:b7dd7cde8ad2
- Parent:
- 5:dd63a1e02b1b
- Child:
- 9:c79fa4034f5b
--- a/services/http/client/HTTPClient.h Tue Jul 27 15:59:42 2010 +0000 +++ b/services/http/client/HTTPClient.h Wed Jul 28 10:18:21 2010 +0000 @@ -21,6 +21,10 @@ THE SOFTWARE. */ +/** \file +HTTP Client header file +*/ + #ifndef HTTP_CLIENT_H #define HTTP_CLIENT_H @@ -41,16 +45,16 @@ ///HTTP client results enum HTTPResult { - HTTP_OK, - HTTP_PROCESSING, - HTTP_PARSE, ///URI Parse error - HTTP_DNS, ///Could not resolve name - HTTP_PRTCL, ///Protocol error - HTTP_NOTFOUND, ///HTTP 404 Error - HTTP_REFUSED, ///HTTP 403 Error - HTTP_ERROR, ///HTTP xxx error - HTTP_TIMEOUT, ///Connection timeout - HTTP_CONN ///Connection error + HTTP_OK, ///<Success + HTTP_PROCESSING, ///<Processing + HTTP_PARSE, ///<URI Parse error + HTTP_DNS, ///<Could not resolve name + HTTP_PRTCL, ///<Protocol error + HTTP_NOTFOUND, ///<HTTP 404 Error + HTTP_REFUSED, ///<HTTP 403 Error + HTTP_ERROR, ///<HTTP xxx error + HTTP_TIMEOUT, ///<Connection timeout + HTTP_CONN ///<Connection error }; ///A simple HTTP Client