GSock/Readme.md

105 lines
1.8 KiB
Markdown
Raw Normal View History

2017-07-27 19:52:58 +08:00
# General Socket Wrapper
GSOCK is a project created by [Kiritow](https://github.com/kiritow).
Licensed under MIT
2018-06-11 14:25:24 +08:00
# Example
## TCP Client Example
2018-06-11 14:39:57 +08:00
2018-06-11 14:25:24 +08:00
```cpp
#include "GSock/gsock.h"
#include "GSock/gsock_helper.h"
int main()
{
int ret;
std::string ip;
2021-12-18 17:13:06 +08:00
// Initiate Socket Handler
InitNativeSocket();
2018-06-11 14:25:24 +08:00
if ((ret = DNSResolve("kiritow.com", ip)) < 0)
{
printf("Failed to resolve ip address. (%d)\n", ret);
return 1;
}
sock s;
if ((ret = s.connect(ip, 80)) < 0)
{
printf("Failed to connect. (%d)\n", ret);
return 1;
}
std::string context("GET / HTTP/1.1\r\nHost: kiritow.com\r\nAccept: */*\r\n\r\n");
sock_helper sh(s);
if ((ret=sh.sendall(context.c_str(), context.size())) < 0)
{
printf("Failed to send request header. (%d)\n", ret);
return 1;
}
char buff[1024];
while (true)
{
memset(buff, 0, 1024);
int ret = s.recv(buff, 1024);
if (ret <= 0) break;
printf("%s", buff);
}
return 0;
}
```
2018-06-11 14:39:57 +08:00
## TCP Echo Server Example
```cpp
#include "GSock/gsock.h"
#include "GSock/gsock_helper.h"
void service_main(sock& s)
{
char buff[1024];
sock_helper sh(s);
while (true)
{
memset(buff, 0, 1024);
int ret = s.recv(buff, 1024);
if (ret <= 0) break;
sh.sendall(buff, ret);
}
}
int main()
{
2021-12-18 17:13:06 +08:00
// Initiate Socket Handler
InitNativeSocket();
2018-06-11 14:39:57 +08:00
serversock t;
if (t.bind(59123) < 0 || t.listen(10) < 0)
{
printf("Failed to start up server.\n");
return 1;
}
while (true)
{
sock s;
if (t.accept(s) < 0)
{
printf("Failed to accept.\n");
break;
}
service_main(s);
}
return 0;
}
```