posix-next API 0.1.0
Out-of-tree Zephyr POSIX module
Loading...
Searching...
No Matches
in.h
Go to the documentation of this file.
1/*
2 * Copyright (c) 2019 Linaro Limited
3 *
4 * SPDX-License-Identifier: Apache-2.0
5 */
6
20#ifndef ZEPHYR_INCLUDE_POSIX_NETINET_IN_H_
21#define ZEPHYR_INCLUDE_POSIX_NETINET_IN_H_
22
23#include <stdint.h>
24
25#include <zephyr/net/socket.h>
26
27#ifdef __cplusplus
28extern "C" {
29#endif
30
32typedef uint16_t in_port_t;
33
35typedef uint32_t in_addr_t;
36
37
38#ifdef __cplusplus
39}
40#endif
41
42#endif /* ZEPHYR_INCLUDE_POSIX_NETINET_IN_H_ */
uint16_t in_port_t
Unsigned 16-bit Internet port number.
Definition in.h:32
uint32_t in_addr_t
Unsigned 32-bit IPv4 address.
Definition in.h:35