blob: 5afe4b7a13d7ba6b6060d6369183e467938d8c64 (
plain) (
tree)
|
|
#ifndef __NET_H__
#define __NET_H__
#include <stdint.h>
#include <stdlib.h>
#include <sys/types.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);
ssize_t net_recv_all(int fd, void *, size_t);
int net_recv_buf(int fd, void **, uint32_t *);
int net_recv_static(int fd, void *, size_t);
#endif
|