mirror of
https://gitee.com/acl-dev/acl.git
synced 2024-12-01 11:27:40 +08:00
34 lines
649 B
C
34 lines
649 B
C
|
#include "stdafx.h"
|
|||
|
|
|||
|
class http_servlet : public acl::HttpServlet
|
|||
|
{
|
|||
|
public:
|
|||
|
http_servlet(acl::socket_stream* stream, acl::session* session)
|
|||
|
: HttpServlet(stream, session)
|
|||
|
{
|
|||
|
}
|
|||
|
|
|||
|
~http_servlet(void)
|
|||
|
{
|
|||
|
}
|
|||
|
|
|||
|
// override
|
|||
|
bool doGet(acl::HttpServletRequest& req, acl::HttpServletResponse& res)
|
|||
|
{
|
|||
|
return doPost(req, res);
|
|||
|
}
|
|||
|
|
|||
|
// override
|
|||
|
bool doPost(acl::HttpServletRequest&, acl::HttpServletResponse& res)
|
|||
|
{
|
|||
|
const char* buf = "hello world!";
|
|||
|
size_t len = strlen(buf);
|
|||
|
|
|||
|
res.setContentLength(len);
|
|||
|
res.setKeepAlive(true);
|
|||
|
|
|||
|
// <20><><EFBFBD><EFBFBD> http <20><>Ӧ<EFBFBD><D3A6>
|
|||
|
return res.write(buf, len) && res.write(NULL, 0);
|
|||
|
}
|
|||
|
};
|