| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140 |
- #include "PikaPlatform_socket.h"
- /*
- The functinos start with PIKA_WEAK are weak functions,
- you need to override them in your platform.
- */
- PIKA_WEAK int pika_platform_socket(int __domain, int __type, int __protocol) {
- #if defined(__linux__) || PIKA_LWIP_ENABLE
- return socket(__domain, __type, __protocol);
- #else
- WEAK_FUNCTION_NEED_OVERRIDE_ERROR();
- #endif
- }
- PIKA_WEAK int pika_platform_bind(int __fd,
- const struct sockaddr* __addr,
- socklen_t __addr_len) {
- #if defined(__linux__) || PIKA_LWIP_ENABLE
- return bind(__fd, __addr, __addr_len);
- #else
- WEAK_FUNCTION_NEED_OVERRIDE_ERROR();
- #endif
- }
- PIKA_WEAK int pika_platform_listen(int __fd, int __n) {
- #if defined(__linux__) || PIKA_LWIP_ENABLE
- return listen(__fd, __n);
- #else
- WEAK_FUNCTION_NEED_OVERRIDE_ERROR();
- #endif
- }
- PIKA_WEAK int pika_platform_accept(int __fd,
- struct sockaddr* __addr,
- socklen_t* __addr_len) {
- #if defined(__linux__) || PIKA_LWIP_ENABLE
- return accept(__fd, __addr, __addr_len);
- #else
- WEAK_FUNCTION_NEED_OVERRIDE_ERROR();
- #endif
- }
- PIKA_WEAK int pika_platform_connect(int __fd,
- const struct sockaddr* __addr,
- socklen_t __addr_len) {
- #if defined(__linux__) || PIKA_LWIP_ENABLE
- return connect(__fd, __addr, __addr_len);
- #else
- WEAK_FUNCTION_NEED_OVERRIDE_ERROR();
- #endif
- }
- PIKA_WEAK int pika_platform_send(int __fd,
- const void* __buf,
- size_t __n,
- int __flags) {
- #if defined(__linux__) || PIKA_LWIP_ENABLE
- return send(__fd, __buf, __n, __flags);
- #else
- WEAK_FUNCTION_NEED_OVERRIDE_ERROR();
- #endif
- }
- PIKA_WEAK int pika_platform_recv(int __fd,
- void* __buf,
- size_t __n,
- int __flags) {
- #if defined(__linux__) || PIKA_LWIP_ENABLE
- return recv(__fd, __buf, __n, __flags);
- #else
- WEAK_FUNCTION_NEED_OVERRIDE_ERROR();
- #endif
- }
- /* gethostname */
- PIKA_WEAK int pika_platform_gethostname(char* __name, size_t __len) {
- #if defined(__linux__)
- return gethostname(__name, __len);
- #else
- WEAK_FUNCTION_NEED_OVERRIDE_ERROR();
- #endif
- }
- PIKA_WEAK int pika_platform_getaddrinfo(const char* __name,
- const char* __service,
- const struct addrinfo* __req,
- struct addrinfo** __pai) {
- #if defined(__linux__) || PIKA_LWIP_ENABLE
- return getaddrinfo(__name, __service, __req, __pai);
- #else
- WEAK_FUNCTION_NEED_OVERRIDE_ERROR();
- #endif
- }
- PIKA_WEAK void pika_platform_freeaddrinfo(struct addrinfo* __ai) {
- #if defined(__linux__) || PIKA_LWIP_ENABLE
- freeaddrinfo(__ai);
- #else
- WEAK_FUNCTION_NEED_OVERRIDE_ERROR();
- #endif
- }
- PIKA_WEAK int pika_platform_setsockopt(int __fd,
- int __level,
- int __optname,
- const void* __optval,
- socklen_t __optlen) {
- #if defined(__linux__) || PIKA_LWIP_ENABLE
- return setsockopt(__fd, __level, __optname, __optval, __optlen);
- #else
- WEAK_FUNCTION_NEED_OVERRIDE_ERROR();
- #endif
- }
- PIKA_WEAK int pika_platform_fcntl(int fd, int cmd, long arg) {
- #if defined(__linux__) || PIKA_LWIP_ENABLE
- return fcntl(fd, cmd, arg);
- #else
- WEAK_FUNCTION_NEED_OVERRIDE_ERROR();
- #endif
- }
- /* os file API */
- PIKA_WEAK int pika_platform_close(int __fd) {
- #if defined(__linux__) || PIKA_LWIP_ENABLE
- return close(__fd);
- #elif PIKA_FREERTOS_ENABLE
- return closesocket(__fd);
- #else
- WEAK_FUNCTION_NEED_OVERRIDE_ERROR();
- #endif
- }
- PIKA_WEAK int pika_platform_write(int __fd, const void* __buf, size_t __nbyte) {
- #if defined(__linux__) || PIKA_LWIP_ENABLE
- return write(__fd, __buf, __nbyte);
- #else
- WEAK_FUNCTION_NEED_OVERRIDE_ERROR();
- #endif
- }
|