acl/lib_acl/samples/connect/main.cpp

105 lines
2.3 KiB
C++

#include "lib_acl.h"
#include <netdb.h>
#include <list>
static void test(const char* addr)
{
std::list<ACL_VSTREAM*> conns;
for (int i = 0; i < 1; i++) {
ACL_VSTREAM* client = acl_vstream_connect(addr, ACL_BLOCKING, 10, 10, 4096);
if (client == NULL) {
printf("connect addr: %s error\r\n", addr);
} else {
printf("connect addr: %s ok, i: %d\r\n", addr, i);
conns.push_back(client);
}
}
printf("enter any key to exit\r\n");
getchar();
std::list<ACL_VSTREAM*>::iterator it = conns.begin();
for (; it != conns.end(); ++it) {
acl_vstream_close(*it);
}
printf("Exit now ok\r\n");
}
static void get_name(void)
{
const char *name = "localhost";
struct addrinfo hints, *res, *res0;
memset(&hints, 0, sizeof(hints));
hints.ai_family = PF_UNSPEC;
hints.ai_socktype = SOCK_STREAM;
hints.ai_flags = AI_ALL;
int error = getaddrinfo(name, "8089", &hints, &res0);
if (error) {
printf("getaddrinfo error %s\r\n", acl_last_serror());
return;
}
for (res = res0; res; res = res->ai_next) {
printf("ai_family: %d, len: %d\r\n",
res->ai_family, (int) res->ai_addrlen);
}
freeaddrinfo(res0);
}
int main(int argc, char *argv[])
{
acl_msg_stdout_enable(1);
get_name();
test(argc >= 2 ? argv[1] : "localhost:8809");
//return 0;
ACL_VSTREAM *client;
const char *addr;
char buf[1024];
int ret;
if (argc != 2) {
printf("usage: %s addr\n", argv[0]);
return (0);
}
addr = argv[1];
acl_msg_stdout_enable(1);
acl_msg_open("connect.log", argv[0]);
printf("connecting %s ...\n", argv[1]);
//acl_poll_prefered(1);
for (int i = 0; i < 1; i++) {
client = acl_vstream_connect(addr, ACL_BLOCKING, 10, 10, 4096);
if (client == NULL) {
printf("connect %s error(%s)\n", addr, acl_last_serror());
return (1);
}
sleep(1);
ret = acl_vstream_probe_status(client);
printf("connect %s ok, %s, ret=%d\n", addr, acl_last_serror(), ret);
}
printf(">>>>>>connect all ok\r\n");
sleep(1);
acl_vstream_fprintf(client, "%s", "line1\nline2\nline3\nline4\nline5\nline6\nline7\n");
while (1) {
ret = acl_vstream_gets_nonl(client, buf, sizeof(buf));
if (ret > 0) {
printf("gets from %s: %s\n", addr, buf);
} else if (ret == ACL_VSTREAM_EOF) {
printf("get over\r\n");
break;
}
}
acl_vstream_close(client);
return (0);
}