Edit File by line
/home/barbar84/public_h.../wp-conte.../plugins/sujqvwi/ShExBy/shex_roo.../usr/include/linux
File: kcm.h
/* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
[0] Fix | Delete
/*
[1] Fix | Delete
* Kernel Connection Multiplexor
[2] Fix | Delete
*
[3] Fix | Delete
* Copyright (c) 2016 Tom Herbert <tom@herbertland.com>
[4] Fix | Delete
*
[5] Fix | Delete
* This program is free software; you can redistribute it and/or modify
[6] Fix | Delete
* it under the terms of the GNU General Public License version 2
[7] Fix | Delete
* as published by the Free Software Foundation.
[8] Fix | Delete
*
[9] Fix | Delete
* User API to clone KCM sockets and attach transport socket to a KCM
[10] Fix | Delete
* multiplexor.
[11] Fix | Delete
*/
[12] Fix | Delete
[13] Fix | Delete
#ifndef KCM_KERNEL_H
[14] Fix | Delete
#define KCM_KERNEL_H
[15] Fix | Delete
[16] Fix | Delete
struct kcm_attach {
[17] Fix | Delete
int fd;
[18] Fix | Delete
int bpf_fd;
[19] Fix | Delete
};
[20] Fix | Delete
[21] Fix | Delete
struct kcm_unattach {
[22] Fix | Delete
int fd;
[23] Fix | Delete
};
[24] Fix | Delete
[25] Fix | Delete
struct kcm_clone {
[26] Fix | Delete
int fd;
[27] Fix | Delete
};
[28] Fix | Delete
[29] Fix | Delete
#define SIOCKCMATTACH (SIOCPROTOPRIVATE + 0)
[30] Fix | Delete
#define SIOCKCMUNATTACH (SIOCPROTOPRIVATE + 1)
[31] Fix | Delete
#define SIOCKCMCLONE (SIOCPROTOPRIVATE + 2)
[32] Fix | Delete
[33] Fix | Delete
#define KCMPROTO_CONNECTED 0
[34] Fix | Delete
[35] Fix | Delete
/* Socket options */
[36] Fix | Delete
#define KCM_RECV_DISABLE 1
[37] Fix | Delete
[38] Fix | Delete
#endif
[39] Fix | Delete
[40] Fix | Delete
[41] Fix | Delete
It is recommended that you Edit text format, this type of Fix handles quite a lot in one request
Function