[UPDATE] translated korean comments into English

git-svn-id: http://xe-core.googlecode.com/svn/sandbox@7182 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
hankm2004 2010-01-20 02:10:58 +00:00
parent b9b9ebc00a
commit af51550c7d

View file

@ -3,10 +3,9 @@
* @class HttpRequest * @class HttpRequest
* @author haneul (haneul@gmail.com) * @author haneul (haneul@gmail.com)
* @version 0.1 * @version 0.1
* @brief 다른 서버에 HTTP Request를 전송하고 result를 받아오는 클래스 * @brief a class that is designed to be used for sending out HTTP request to an external server and retrieving response
* @remarks Connection: keep-alive 지원하지 않음 * @remarks Connection: keep-alive is not supported
*/ */
class XEHttpRequest { class XEHttpRequest {
/// target host /// target host
@ -27,7 +26,9 @@
} }
/** /**
* @brief Add (key, value) pair to the HTTP request header * @brief mether to add key/value pair to the HTTP request header
* @param[in] key HTTP header element
* @param[in] value value string for HTTP header element
*/ */
function AddToHeader($key, $value) function AddToHeader($key, $value)
{ {
@ -36,7 +37,10 @@
/** /**
* @brief send HTTP message to the host * @brief send HTTP message to the host
* @return (result code, response body) * @param[in] target ip or url of the external server
* @param[in] method HTTP method such as GET and POST
* @param[in] timeout time out value for HTTP request expiration
* @return Returns an object containing HTTP Response body and HTTP response code
*/ */
function Send($target, $method="GET", $timeout = 3) function Send($target, $method="GET", $timeout = 3)
{ {