From: Stephen Hemminger Date: Wed, 15 May 2019 16:51:15 +0000 (-0700) Subject: uapi: add sockios.h X-Git-Tag: v5.4.0~113^2~3 X-Git-Url: https://git.proxmox.com/?a=commitdiff_plain;h=2f31cb4fd6cabede3c189974503077f20d3653fd;p=mirror_iproute2.git uapi: add sockios.h Forgot to add this to earlier commit. Signed-off-by: Stephen Hemminger --- diff --git a/include/uapi/asm-generic/sockios.h b/include/uapi/asm-generic/sockios.h new file mode 100644 index 00000000..44fa3ed7 --- /dev/null +++ b/include/uapi/asm-generic/sockios.h @@ -0,0 +1,14 @@ +/* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */ +#ifndef __ASM_GENERIC_SOCKIOS_H +#define __ASM_GENERIC_SOCKIOS_H + +/* Socket-level I/O control calls. */ +#define FIOSETOWN 0x8901 +#define SIOCSPGRP 0x8902 +#define FIOGETOWN 0x8903 +#define SIOCGPGRP 0x8904 +#define SIOCATMARK 0x8905 +#define SIOCGSTAMP_OLD 0x8906 /* Get stamp (timeval) */ +#define SIOCGSTAMPNS_OLD 0x8907 /* Get stamp (timespec) */ + +#endif /* __ASM_GENERIC_SOCKIOS_H */