source: trunk/libs/newlib/src/newlib/libc/sys/phoenix/sys/socket.h @ 444

Last change on this file since 444 was 444, checked in by satin@…, 6 years ago

add newlib,libalmos-mkh, restructure shared_syscalls.h and mini-libc

File size: 3.1 KB
Line 
1/* Copyright (c) 2016 Phoenix Systems
2   All rights reserved.
3
4   Redistribution and use in source and binary forms, with or without
5   modification, are permitted provided that the following conditions
6   are met:
7   1. Redistributions of source code must retain the above copyright
8      notice, this list of conditions and the following disclaimer.
9   2. Redistributions in binary form must reproduce the above copyright
10      notice, this list of conditions and the following disclaimer in the
11      documentation and/or other materials provided with the distribution.
12
13   THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
14   ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
15   IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
16   ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
17   FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
18   DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
19   OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
20   HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
21   LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
22   OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
23   SUCH DAMAGE.*/
24
25#ifndef _SYS_SOCKET_H
26#define _SYS_SOCKET_H
27
28#include <phoenix/netinet.h>
29#include <phoenix/netinet6.h>
30#include <phoenix/socket.h>
31#include <phoenix/sockios.h>
32#include <sys/types.h>
33
34#define _SS_MAXSIZE             128U
35#define _SS_ALIGNSIZE   (sizeof(int64_t))
36#define _SS_PAD1SIZE    (_SS_ALIGNSIZE - sizeof(unsigned char) - sizeof(sa_family_t))
37#define _SS_PAD2SIZE    (_SS_MAXSIZE - sizeof(unsigned char) - sizeof(sa_family_t) - _SS_PAD1SIZE - _SS_ALIGNSIZE)
38
39struct sockaddr_storage {
40        unsigned char ss_len;                   /* Aaddress length */
41        sa_family_t     ss_family;                      /* Address family */
42        char __ss_pad1[_SS_PAD1SIZE];
43        int64_t __ss_align;                             /* Force desired structure storage alignment */
44        char __ss_pad2[_SS_PAD2SIZE];
45};
46
47#define HAVE_STRUCT_SOCKADDR_STORAGE
48#define HAVE_STRUCT_IN6_ADDR
49#define HAVE_STRUCT_SOCKADDR_IN6
50
51int socket(int domain, int type, int protocol);
52int bind(int sockfd, const struct sockaddr *addr, socklen_t addrlen);
53int listen(int sockfd, int backlog);
54int accept(int sockfd, struct sockaddr *addr, socklen_t *addrlen);
55int connect(int sockfd, const struct sockaddr *addr, socklen_t addrlen);
56int sendto(int sockfd, const void *buf, size_t len, int flags, const struct sockaddr *dest_addr, socklen_t addrlen);
57int send(int sockfd, const void *buf, size_t len, int flags);
58int recvfrom(int sockfd, void *buf, size_t len, int flags, struct sockaddr *src_addr, socklen_t *addrlen);
59int recv(int sockfd, void *buf, size_t len, int flags);
60
61int getsockname(int sockfd, struct sockaddr *addr, socklen_t *addrlen);
62int getsockopt(int sockfd, int level, int optname, void *optval, socklen_t *optlen);
63int setsockopt(int sockfd, int level, int optname, const void *optval, socklen_t optlen);
64
65int     shutdown(int, int);
66int     socketpair(int, int, int, int *);
67
68int getpeername(int sockfd, struct sockaddr *addr, socklen_t *addrlen);
69
70#endif
Note: See TracBrowser for help on using the repository browser.