mirror of
https://gitee.com/Lyon1998/pikapython.git
synced 2025-01-15 17:02:53 +08:00
50 lines
1.5 KiB
C
50 lines
1.5 KiB
C
|
/*
|
||
|
* @Author: jiejie
|
||
|
* @Github: https://github.com/jiejieTop
|
||
|
* @Date: 2019-12-15 13:39:00
|
||
|
* @LastEditTime: 2020-10-17 14:17:45
|
||
|
* @Description: the code belongs to jiejie, please keep the author information and source code according to the license.
|
||
|
*/
|
||
|
#ifndef _PLATFORM_NET_SOCKET_H_
|
||
|
#define _PLATFORM_NET_SOCKET_H_
|
||
|
#include <sys/types.h>
|
||
|
#include <sys/socket.h>
|
||
|
#include <sys/param.h>
|
||
|
#include <sys/time.h>
|
||
|
#include <sys/select.h>
|
||
|
#include <netinet/in.h>
|
||
|
#include <netinet/tcp.h>
|
||
|
#include <arpa/inet.h>
|
||
|
#include <netdb.h>
|
||
|
#include <stdio.h>
|
||
|
#include <unistd.h>
|
||
|
#include <errno.h>
|
||
|
#include <fcntl.h>
|
||
|
|
||
|
#include <stdlib.h>
|
||
|
#include <string.h>
|
||
|
#include <signal.h>
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C" {
|
||
|
#endif
|
||
|
|
||
|
#define PLATFORM_NET_PROTO_TCP 0 /**< The TCP transport protocol */
|
||
|
#define PLATFORM_NET_PROTO_UDP 1 /**< The UDP transport protocol */
|
||
|
|
||
|
int platform_net_socket_connect(const char *host, const char *port, int proto);
|
||
|
int platform_net_socket_recv(int fd, void *buf, size_t len, int flags);
|
||
|
int platform_net_socket_recv_timeout(int fd, unsigned char *buf, int len, int timeout);
|
||
|
int platform_net_socket_write(int fd, void *buf, size_t len);
|
||
|
int platform_net_socket_write_timeout(int fd, unsigned char *buf, int len, int timeout);
|
||
|
int platform_net_socket_close(int fd);
|
||
|
int platform_net_socket_set_block(int fd);
|
||
|
int platform_net_socket_set_nonblock(int fd);
|
||
|
int platform_net_socket_setsockopt(int fd, int level, int optname, const void *optval, socklen_t optlen);
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif
|
||
|
|
||
|
#endif /* _PLATFORM_NET_SOCKET_H_ */
|