posix: Add headers related to BSD Sockets API
A few of these headers are currently empty and provided to avoid compiler errors when building existing software. This set of headers is what is required to build https://github.com/open62541/open62541 with Zephyr. Signed-off-by: Paul Sokolovsky <paul.sokolovsky@linaro.org>
This commit is contained in:
parent
3a9173afe1
commit
de7fb74750
7 changed files with 210 additions and 0 deletions
30
include/posix/arpa/inet.h
Normal file
30
include/posix/arpa/inet.h
Normal file
|
@ -0,0 +1,30 @@
|
|||
/*
|
||||
* Copyright (c) 2019 Linaro Limited
|
||||
*
|
||||
* SPDX-License-Identifier: Apache-2.0
|
||||
*/
|
||||
#ifndef ZEPHYR_INCLUDE_POSIX_ARPA_INET_H_
|
||||
#define ZEPHYR_INCLUDE_POSIX_ARPA_INET_H_
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
#include <net/socket.h>
|
||||
|
||||
static inline char *inet_ntop(sa_family_t family, const void *src, char *dst,
|
||||
size_t size)
|
||||
{
|
||||
return zsock_inet_ntop(family, src, dst, size);
|
||||
}
|
||||
|
||||
static inline int inet_pton(sa_family_t family, const char *src, void *dst)
|
||||
{
|
||||
return zsock_inet_pton(family, src, dst);
|
||||
}
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* ZEPHYR_INCLUDE_POSIX_ARPA_INET_H_ */
|
11
include/posix/net/if.h
Normal file
11
include/posix/net/if.h
Normal file
|
@ -0,0 +1,11 @@
|
|||
/*
|
||||
* Copyright (c) 2019 Linaro Limited
|
||||
*
|
||||
* SPDX-License-Identifier: Apache-2.0
|
||||
*/
|
||||
#ifndef ZEPHYR_INCLUDE_POSIX_NET_IF_H_
|
||||
#define ZEPHYR_INCLUDE_POSIX_NET_IF_H_
|
||||
|
||||
#include <net/socket.h>
|
||||
|
||||
#endif /* ZEPHYR_INCLUDE_POSIX_NET_IF_H_ */
|
46
include/posix/netdb.h
Normal file
46
include/posix/netdb.h
Normal file
|
@ -0,0 +1,46 @@
|
|||
/*
|
||||
* Copyright (c) 2019 Linaro Limited
|
||||
*
|
||||
* SPDX-License-Identifier: Apache-2.0
|
||||
*/
|
||||
#ifndef ZEPHYR_INCLUDE_POSIX_NETDB_H_
|
||||
#define ZEPHYR_INCLUDE_POSIX_NETDB_H_
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
#include <net/socket.h>
|
||||
|
||||
#define addrinfo zsock_addrinfo
|
||||
|
||||
static inline int getaddrinfo(const char *host, const char *service,
|
||||
const struct zsock_addrinfo *hints,
|
||||
struct zsock_addrinfo **res)
|
||||
{
|
||||
return zsock_getaddrinfo(host, service, hints, res);
|
||||
}
|
||||
|
||||
static inline void freeaddrinfo(struct zsock_addrinfo *ai)
|
||||
{
|
||||
zsock_freeaddrinfo(ai);
|
||||
}
|
||||
|
||||
static inline const char *gai_strerror(int errcode)
|
||||
{
|
||||
return zsock_gai_strerror(errcode);
|
||||
}
|
||||
|
||||
static inline int getnameinfo(const struct sockaddr *addr, socklen_t addrlen,
|
||||
char *host, socklen_t hostlen,
|
||||
char *serv, socklen_t servlen, int flags)
|
||||
{
|
||||
return zsock_getnameinfo(addr, addrlen, host, hostlen,
|
||||
serv, servlen, flags);
|
||||
}
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* ZEPHYR_INCLUDE_POSIX_NETDB_H_ */
|
11
include/posix/netinet/in.h
Normal file
11
include/posix/netinet/in.h
Normal file
|
@ -0,0 +1,11 @@
|
|||
/*
|
||||
* Copyright (c) 2019 Linaro Limited
|
||||
*
|
||||
* SPDX-License-Identifier: Apache-2.0
|
||||
*/
|
||||
#ifndef ZEPHYR_INCLUDE_POSIX_NETINET_IN_H_
|
||||
#define ZEPHYR_INCLUDE_POSIX_NETINET_IN_H_
|
||||
|
||||
#include <net/socket.h>
|
||||
|
||||
#endif /* ZEPHYR_INCLUDE_POSIX_NETINET_IN_H_ */
|
11
include/posix/netinet/tcp.h
Normal file
11
include/posix/netinet/tcp.h
Normal file
|
@ -0,0 +1,11 @@
|
|||
/*
|
||||
* Copyright (c) 2019 Linaro Limited
|
||||
*
|
||||
* SPDX-License-Identifier: Apache-2.0
|
||||
*/
|
||||
#ifndef ZEPHYR_INCLUDE_POSIX_NETINET_TCP_H_
|
||||
#define ZEPHYR_INCLUDE_POSIX_NETINET_TCP_H_
|
||||
|
||||
#include <net/socket.h>
|
||||
|
||||
#endif /* ZEPHYR_INCLUDE_POSIX_NETINET_TCP_H_ */
|
11
include/posix/sys/ioctl.h
Normal file
11
include/posix/sys/ioctl.h
Normal file
|
@ -0,0 +1,11 @@
|
|||
/*
|
||||
* Copyright (c) 2019 Linaro Limited
|
||||
*
|
||||
* SPDX-License-Identifier: Apache-2.0
|
||||
*/
|
||||
#ifndef ZEPHYR_INCLUDE_POSIX_SYS_IOCTL_H_
|
||||
#define ZEPHYR_INCLUDE_POSIX_SYS_IOCTL_H_
|
||||
|
||||
#define FIONBIO 0x5421
|
||||
|
||||
#endif /* ZEPHYR_INCLUDE_POSIX_SYS_IOCTL_H_ */
|
90
include/posix/sys/socket.h
Normal file
90
include/posix/sys/socket.h
Normal file
|
@ -0,0 +1,90 @@
|
|||
/*
|
||||
* Copyright (c) 2019 Linaro Limited
|
||||
*
|
||||
* SPDX-License-Identifier: Apache-2.0
|
||||
*/
|
||||
#ifndef ZEPHYR_INCLUDE_POSIX_SYS_SOCKET_H_
|
||||
#define ZEPHYR_INCLUDE_POSIX_SYS_SOCKET_H_
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
#include <sys/types.h>
|
||||
#include <net/socket.h>
|
||||
|
||||
static inline int socket(int family, int type, int proto)
|
||||
{
|
||||
return zsock_socket(family, type, proto);
|
||||
}
|
||||
|
||||
#define SHUT_RD ZSOCK_SHUT_RD
|
||||
#define SHUT_WR ZSOCK_SHUT_WR
|
||||
#define SHUT_RDWR ZSOCK_SHUT_RDWR
|
||||
|
||||
static inline int shutdown(int sock, int how)
|
||||
{
|
||||
return zsock_shutdown(sock, how);
|
||||
}
|
||||
|
||||
static inline int bind(int sock, const struct sockaddr *addr, socklen_t addrlen)
|
||||
{
|
||||
return zsock_bind(sock, addr, addrlen);
|
||||
}
|
||||
|
||||
static inline int connect(int sock, const struct sockaddr *addr,
|
||||
socklen_t addrlen)
|
||||
{
|
||||
return zsock_connect(sock, addr, addrlen);
|
||||
}
|
||||
|
||||
static inline int listen(int sock, int backlog)
|
||||
{
|
||||
return zsock_listen(sock, backlog);
|
||||
}
|
||||
|
||||
static inline int accept(int sock, struct sockaddr *addr, socklen_t *addrlen)
|
||||
{
|
||||
return zsock_accept(sock, addr, addrlen);
|
||||
}
|
||||
|
||||
static inline ssize_t send(int sock, const void *buf, size_t len, int flags)
|
||||
{
|
||||
return zsock_send(sock, buf, len, flags);
|
||||
}
|
||||
|
||||
static inline ssize_t recv(int sock, void *buf, size_t max_len, int flags)
|
||||
{
|
||||
return zsock_recv(sock, buf, max_len, flags);
|
||||
}
|
||||
|
||||
static inline ssize_t sendto(int sock, const void *buf, size_t len, int flags,
|
||||
const struct sockaddr *dest_addr,
|
||||
socklen_t addrlen)
|
||||
{
|
||||
return zsock_sendto(sock, buf, len, flags, dest_addr, addrlen);
|
||||
}
|
||||
|
||||
static inline ssize_t recvfrom(int sock, void *buf, size_t max_len, int flags,
|
||||
struct sockaddr *src_addr, socklen_t *addrlen)
|
||||
{
|
||||
return zsock_recvfrom(sock, buf, max_len, flags, src_addr, addrlen);
|
||||
}
|
||||
|
||||
static inline int getsockopt(int sock, int level, int optname,
|
||||
void *optval, socklen_t *optlen)
|
||||
{
|
||||
return zsock_getsockopt(sock, level, optname, optval, optlen);
|
||||
}
|
||||
|
||||
static inline int setsockopt(int sock, int level, int optname,
|
||||
const void *optval, socklen_t optlen)
|
||||
{
|
||||
return zsock_setsockopt(sock, level, optname, optval, optlen);
|
||||
}
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* ZEPHYR_INCLUDE_POSIX_SYS_SOCKET_H_ */
|
Loading…
Add table
Add a link
Reference in a new issue