summaryrefslogtreecommitdiff
path: root/tcp.h
blob: 6d5053819ca263a517744c5a0791a30e8cda27ab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
#pragma once

#include <stdint.h>

//Unless specified otherwise, functions return -1 on error or socket closure.

//If *bufsz==0 || *buf==NULL, allocates buf newly.
//Returns line length; reallocates buf if needed.
i64 tcp_read_line(int sock,char **buf,i64 *bufsz);

i64 tcp_read_data(int sock,char *buf,i64 length);

i64 tcp_send_data(int sock,const char *buf,i64 length);
i64 tcp_send_str(int sock,const char *str);
i64 tcp_send_line(int sock,const char *str);
i64 tcp_send_line_f(int sock,const char *format,...) __attribute__((format (printf,2,3)));

i64 tcp_send_list(int sock,const char *tag,const char *const *list,i64 len);
i64 tcp_send_int(int sock,const char *tag,i64 value);


i64 tcp_read_ok(int sock,const char *tag);

typedef struct TcpList{
	i64 nitems;
	char **items;
} TcpList;

//Returns NULL on error instead of -1.
TcpList* tcp_read_list(int sock,const char *tag);
void tcp_list_destroy(TcpList *list);


//Returns the socket.
int tcp_connect(const char *hostname,int port);