aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/src/net.h
blob: 305f590848579ea423a8e6c031fb9a85fa2e6e15 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#ifndef __NET_H__
#define __NET_H__

#include <stdint.h>
#include <stdlib.h>

int net_bind(const char *port);
int net_accept(int fd);
int net_connect(const char *host, const char *port);

int net_send_all(int fd, const void *, size_t);
int net_send_buf(int fd, const void *, uint32_t);

int net_recv_all(int fd, void *, size_t);
int net_recv_buf(int fd, void **, uint32_t *);

#endif