genode/repos/libports/src/lib/libc/internal/socket_fs_plugin.h
Norman Feske bf92232698 libc: split task.cc into multiple files
This patch is the first step of re-organizing the internal structure of
the libc. The original version involved many direct calls of global
functions (often with side effects) across compilation units, which
made the control flow (e.g., the initialization sequence) hard to
follow.

The new version replaces those ad-hoc interactions with dedicated
interfaces (like suspend.h, resume.h, select.h, current_time.h). The
underlying facilities are provided by the central Libc::Kernel and
selectively propagated to the various compilation units. The latter is
done by a sequence of 'init_*' calls, which eventually will be replaced
by constructor calls.

The addition of new headers increases the chance for name clashes with
existing (public) headers. To disambiguate libc-internal header files
from public headers, this patch moves the former into a new 'internal/'
subdirectory. This makes the include directives easier to follow and the
libc's source-tree structure more tidy.

There are still a few legacies left, which cannot easily be removed
right now (e.g., because noux relies on them). However, the patch moves
those bad apples to legacy.h and legacy.cc, which highlights the
deprecation of those functions.

Issue #3497
2019-11-19 14:10:55 +01:00

39 lines
1.5 KiB
C

/*
* \brief Libc pseudo plugin for socket fs
* \author Emery Hemingway
* \author Christian Helmuth
* \date 2017-02-11
*/
/*
* Copyright (C) 2017 Genode Labs GmbH
*
* This file is part of the Genode OS framework, which is distributed
* under the terms of the GNU Affero General Public License version 3.
*/
#ifndef _LIBC__INTERNAL__SOCKET_FS_PLUGIN_H_
#define _LIBC__INTERNAL__SOCKET_FS_PLUGIN_H_
/* Libc includes */
#include <sys/types.h>
#include <sys/socket.h>
extern "C" int socket_fs_getpeername(int, sockaddr *, socklen_t *);
extern "C" int socket_fs_getsockname(int, sockaddr *, socklen_t *);
extern "C" int socket_fs_accept(int, sockaddr *, socklen_t *);
extern "C" int socket_fs_bind(int, sockaddr const *, socklen_t);
extern "C" int socket_fs_connect(int, sockaddr const *, socklen_t);
extern "C" int socket_fs_listen(int, int);
extern "C" ssize_t socket_fs_recvfrom(int, void *, ::size_t, int, sockaddr *, socklen_t *);
extern "C" ssize_t socket_fs_recv(int, void *, ::size_t, int);
extern "C" ssize_t socket_fs_recvmsg(int, msghdr *, int);
extern "C" ssize_t socket_fs_sendto(int, void const *, ::size_t, int, sockaddr const *, socklen_t);
extern "C" ssize_t socket_fs_send(int, void const *, ::size_t, int);
extern "C" int socket_fs_getsockopt(int, int, int, void *, socklen_t *);
extern "C" int socket_fs_setsockopt(int, int, int, void const *, socklen_t);
extern "C" int socket_fs_shutdown(int, int);
extern "C" int socket_fs_socket(int, int, int);
#endif /* _LIBC__INTERNAL__SOCKET_FS_PLUGIN_H_ */