*
* swift: PROTOCOL is IPPROTO_SWIFT. Ignore TYPE.
*/
-int sw_socket (int __domain, int __type, int __protocol)
+int sw_socket(int __domain, int __type, int __protocol)
{
int s;
struct sock_list *list;
*
* swift: ADDR is of type struct sockaddr_sw.
*/
-int sw_bind (int __fd, __CONST_SOCKADDR_ARG __addr, socklen_t __len)
+int sw_bind(int __fd, __CONST_SOCKADDR_ARG __addr, socklen_t __len)
{
struct sock_list *list;
}
/* Put the local address of FD into *ADDR and its length in *LEN. */
-int sw_getsockname (int __fd, __SOCKADDR_ARG __addr,
+int sw_getsockname(int __fd, __SOCKADDR_ARG __addr,
socklen_t *__restrict __len)
{
/* TODO */
* This function is a cancellation point and therefore not marked with
* __THROW.
*/
-ssize_t sw_sendto (int __fd, __const void *__buf, size_t __n,
+ssize_t sw_sendto(int __fd, __const void *__buf, size_t __n,
int __flags, __CONST_SOCKADDR_ARG __addr,
socklen_t __addr_len)
{
* This function is a cancellation point and therefore not marked with
* __THROW.
*/
-ssize_t sw_recvfrom (int __fd, void *__restrict __buf, size_t __n,
+ssize_t sw_recvfrom(int __fd, void *__restrict __buf, size_t __n,
int __flags, __SOCKADDR_ARG __addr,
socklen_t *__restrict __addr_len)
{
* This function is a cancellation point and therefore not marked with
* __THROW.
*/
-ssize_t sw_sendmsg (int __fd, __const struct msghdr *__message,
+ssize_t sw_sendmsg(int __fd, __const struct msghdr *__message,
int __flags)
{
ssize_t bytes_sent;
* This function is a cancellation point and therefore not marked with
* __THROW.
*/
-ssize_t sw_recvmsg (int __fd, struct msghdr *__message, int __flags)
+ssize_t sw_recvmsg(int __fd, struct msghdr *__message, int __flags)
{
ssize_t bytes_recv;
* LEVEL into OPTVAL (which is *OPTLEN bytes long), and set *OPTLEN to the
* value's actual length. Returns 0 on success, -1 for errors.
*/
-int sw_getsockopt (int __fd, int __level, int __optname,
+int sw_getsockopt(int __fd, int __level, int __optname,
void *__restrict __optval,
socklen_t *__restrict __optlen)
{
* Returns 0 on success, -1 for errors.
*/
-int sw_setsockopt (int __fd, int __level, int __optname,
+int sw_setsockopt(int __fd, int __level, int __optname,
__const void *__optval, socklen_t __optlen)
{
/* Call classical interface of setsockopt(2). */
* SHUT_RDWR = No more receptions or transmissions.
* Returns 0 on success, -1 for errors.
*/
-int sw_shutdown (int __fd, int __how)
+int sw_shutdown(int __fd, int __how)
{
struct sock_list *list;
* Close file descriptor for socket FD.
* Returns 0 on success, -1 for errors.
*/
-int sw_close (int __fd)
+int sw_close(int __fd)
{
struct sock_list *list;