mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-02-01 03:53:33 +00:00
e557058ac8
This change addresses various open source compatibility issues, so that we pass 313/411 of the tests in https://github.com/jart/libc-test where earlier today we were passing about 30/411 of them, due to header toil. Please note that Glibc only passes 341/411 so 313 today is pretty good! - Make the conformance of libc/isystem/ headers nearly perfect - Import more of the remaining math library routines from Musl - Fix inconsistencies with type signatures of calls like umask - Write tests for getpriority/setpriority which work great now - conform to `struct sockaddr *` on remaining socket functions - Import a bunch of uninteresting stdlib functions e.g. rand48 - Introduce readdir_r, scandir, pthread_kill, sigsetjmp, etc.. Follow the instructions in our `tool/scripts/cosmocc` toolchain to run these tests yourself. You use `make CC=cosmocc` on the test repository
44 lines
1.7 KiB
C
44 lines
1.7 KiB
C
#ifndef COSMOPOLITAN_LIBC_SOCK_SOCK_H_
|
|
#define COSMOPOLITAN_LIBC_SOCK_SOCK_H_
|
|
#if !(__ASSEMBLER__ + __LINKER__ + 0)
|
|
COSMOPOLITAN_C_START_
|
|
/*───────────────────────────────────────────────────────────────────────────│─╗
|
|
│ cosmopolitan § system api » berkeley sockets ─╬─│┼
|
|
╚────────────────────────────────────────────────────────────────────────────│*/
|
|
|
|
#define INET_ADDRSTRLEN 22
|
|
#define IFHWADDRLEN 6
|
|
|
|
uint16_t htons(uint16_t);
|
|
uint16_t ntohs(uint16_t);
|
|
uint32_t htonl(uint32_t);
|
|
uint32_t ntohl(uint32_t);
|
|
|
|
#if defined(__GNUC__) && !defined(__STRICT_ANSI__)
|
|
#define htons(x) __builtin_bswap16(x)
|
|
#define ntohs(x) __builtin_bswap16(x)
|
|
#define htonl(x) __builtin_bswap32(x)
|
|
#define ntohl(x) __builtin_bswap32(x)
|
|
#endif
|
|
|
|
const char *inet_ntop(int, const void *, char *, uint32_t);
|
|
int inet_pton(int, const char *, void *);
|
|
uint32_t inet_addr(const char *);
|
|
int parseport(const char *);
|
|
uint32_t *GetHostIps(void);
|
|
|
|
int nointernet(void);
|
|
int socket(int, int, int);
|
|
int listen(int, int);
|
|
int shutdown(int, int);
|
|
ssize_t send(int, const void *, size_t, int);
|
|
ssize_t recv(int, void *, size_t, int);
|
|
ssize_t sendfile(int, int, int64_t *, size_t);
|
|
int getsockopt(int, int, int, void *, uint32_t *);
|
|
int setsockopt(int, int, int, const void *, uint32_t);
|
|
int socketpair(int, int, int, int[2]);
|
|
int sockatmark(int);
|
|
|
|
COSMOPOLITAN_C_END_
|
|
#endif /* !(__ASSEMBLER__ + __LINKER__ + 0) */
|
|
#endif /* COSMOPOLITAN_LIBC_SOCK_SOCK_H_ */
|