2019-07-28 10:31:56 +08:00
|
|
|
#include "lib_acl.h"
|
2014-11-19 00:25:21 +08:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
|
|
|
static void init(void)
|
|
|
|
{
|
2016-10-25 10:31:33 +08:00
|
|
|
acl_lib_init();
|
2017-04-07 20:13:08 +08:00
|
|
|
acl_msg_stdout_enable(1);
|
2014-11-19 00:25:21 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static void end(void)
|
|
|
|
{
|
2016-10-25 10:31:33 +08:00
|
|
|
acl_lib_end();
|
2014-11-19 00:25:21 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static void thread_run(void *arg)
|
|
|
|
{
|
|
|
|
ACL_VSTREAM *client = (ACL_VSTREAM*) arg;
|
|
|
|
char buf[8192];
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
|
|
|
|
ret = acl_vstream_read(client, buf, sizeof(buf));
|
|
|
|
if (ret == ACL_VSTREAM_EOF) {
|
|
|
|
acl_vstream_close(client);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
buf[ret] = 0;
|
2017-04-07 20:13:08 +08:00
|
|
|
(void) acl_vstream_write(client, buf, ret);
|
2014-11-19 00:25:21 +08:00
|
|
|
acl_vstream_close(client);
|
|
|
|
}
|
|
|
|
|
2017-04-07 20:13:08 +08:00
|
|
|
static void run(const char *addr)
|
2014-11-19 00:25:21 +08:00
|
|
|
{
|
|
|
|
ACL_VSTREAM *sstream = acl_vstream_listen(addr, 128);
|
|
|
|
acl_pthread_pool_t *pool;
|
|
|
|
|
|
|
|
if (sstream == NULL) {
|
|
|
|
acl_msg_error("listen %s error(%s)", addr, acl_last_serror());
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
printf("listening on %s ...\n", addr);
|
|
|
|
pool = acl_thread_pool_create(100, 120);
|
|
|
|
while (1) {
|
|
|
|
ACL_VSTREAM *client = acl_vstream_accept(sstream, NULL, 0);
|
|
|
|
if (client == NULL) {
|
|
|
|
acl_msg_error("accept error(%s)", acl_last_serror());
|
|
|
|
break;
|
|
|
|
}
|
2017-04-07 20:13:08 +08:00
|
|
|
printf("accept one client\r\n");
|
2017-04-20 19:39:03 +08:00
|
|
|
acl_vstream_close(client); continue;
|
2014-11-19 00:25:21 +08:00
|
|
|
acl_pthread_pool_add(pool, thread_run, client);
|
|
|
|
}
|
|
|
|
|
|
|
|
acl_vstream_close(sstream);
|
|
|
|
}
|
|
|
|
|
2017-04-07 20:13:08 +08:00
|
|
|
int main(int argc, char *argv[])
|
2014-11-19 00:25:21 +08:00
|
|
|
{
|
2017-04-07 20:13:08 +08:00
|
|
|
const char *addr = "0:8809";
|
|
|
|
|
|
|
|
if (argc >= 2)
|
|
|
|
addr = argv[1];
|
2014-11-19 00:25:21 +08:00
|
|
|
init();
|
2017-04-07 20:13:08 +08:00
|
|
|
run(addr);
|
2014-11-19 00:25:21 +08:00
|
|
|
end();
|
|
|
|
return (0);
|
|
|
|
}
|