Archived
1
0
Fork 0
This repository has been archived on 2025-03-08. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
b98/src/tcp.h

8 lines
186 B
C

#ifndef _TCP_H_
#define _TCP_H_
int hostname_to_ip(const char* const hostname, char *ip);
int tcp_connect(const char* const host, const int port);
void tcp_close(const int sd);
#endif