Edit File by line
/home/barbar84/public_h.../wp-conte.../plugins/sujqvwi/ExeBy/smexe_ro.../usr/include/linux
File: gsmmux.h
/* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
[0] Fix | Delete
#ifndef _LINUX_GSMMUX_H
[1] Fix | Delete
#define _LINUX_GSMMUX_H
[2] Fix | Delete
[3] Fix | Delete
#include <linux/if.h>
[4] Fix | Delete
#include <linux/ioctl.h>
[5] Fix | Delete
#include <linux/types.h>
[6] Fix | Delete
[7] Fix | Delete
struct gsm_config
[8] Fix | Delete
{
[9] Fix | Delete
unsigned int adaption;
[10] Fix | Delete
unsigned int encapsulation;
[11] Fix | Delete
unsigned int initiator;
[12] Fix | Delete
unsigned int t1;
[13] Fix | Delete
unsigned int t2;
[14] Fix | Delete
unsigned int t3;
[15] Fix | Delete
unsigned int n2;
[16] Fix | Delete
unsigned int mru;
[17] Fix | Delete
unsigned int mtu;
[18] Fix | Delete
unsigned int k;
[19] Fix | Delete
unsigned int i;
[20] Fix | Delete
unsigned int unused[8]; /* Padding for expansion without
[21] Fix | Delete
breaking stuff */
[22] Fix | Delete
};
[23] Fix | Delete
[24] Fix | Delete
#define GSMIOC_GETCONF _IOR('G', 0, struct gsm_config)
[25] Fix | Delete
#define GSMIOC_SETCONF _IOW('G', 1, struct gsm_config)
[26] Fix | Delete
[27] Fix | Delete
struct gsm_netconfig {
[28] Fix | Delete
unsigned int adaption; /* Adaption to use in network mode */
[29] Fix | Delete
unsigned short protocol;/* Protocol to use - only ETH_P_IP supported */
[30] Fix | Delete
unsigned short unused2;
[31] Fix | Delete
char if_name[IFNAMSIZ]; /* interface name format string */
[32] Fix | Delete
__u8 unused[28]; /* For future use */
[33] Fix | Delete
};
[34] Fix | Delete
[35] Fix | Delete
#define GSMIOC_ENABLE_NET _IOW('G', 2, struct gsm_netconfig)
[36] Fix | Delete
#define GSMIOC_DISABLE_NET _IO('G', 3)
[37] Fix | Delete
[38] Fix | Delete
[39] Fix | Delete
#endif
[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