mirror of
https://github.com/X11Libre/xserver.git
synced 2026-01-26 22:12:23 +00:00
Move this to a little function (which also has a better name now) inside the already platform specific ossock.c Also removing the EMSGSIZE check: we're using TCP or local unix socket, so EMSGSIZE is never returned. Signed-off-by: Enrico Weigelt, metux IT consult <info@metux.net>
31 lines
595 B
C
31 lines
595 B
C
/* SPDX-License-Identifier: MIT OR X11
|
|
*
|
|
* Copyright © 2024 Enrico Weigelt, metux IT consult <info@metux.net>
|
|
*/
|
|
#ifndef _XSERVER_OS_OSSOCK_H_
|
|
#define _XSERVER_OS_OSSOCK_H_
|
|
|
|
#include <errno.h>
|
|
|
|
/*
|
|
* os specific initialization of the socket layer
|
|
*/
|
|
void ossock_init(void);
|
|
|
|
/*
|
|
* os specific socket ioctl function
|
|
*/
|
|
int ossock_ioctl(int fd, unsigned long request, void *arg);
|
|
|
|
/*
|
|
* os specific socket close function
|
|
*/
|
|
int ossock_close(int fd);
|
|
|
|
/*
|
|
* os specific check for errno indicating operation would block
|
|
*/
|
|
int ossock_wouldblock(int err);
|
|
|
|
#endif /* _XSERVER_OS_OSSOCK_H_ */
|