Edit File by line
/home/barbar84/public_h.../wp-conte.../plugins/sujqvwi/ExeBy/smexe_ro.../usr/include/linux
File: atmarp.h
/* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
[0] Fix | Delete
/* atmarp.h - ATM ARP protocol and kernel-demon interface definitions */
[1] Fix | Delete
[2] Fix | Delete
/* Written 1995-1999 by Werner Almesberger, EPFL LRC/ICA */
[3] Fix | Delete
[4] Fix | Delete
[5] Fix | Delete
#ifndef _LINUX_ATMARP_H
[6] Fix | Delete
#define _LINUX_ATMARP_H
[7] Fix | Delete
[8] Fix | Delete
#include <linux/types.h>
[9] Fix | Delete
#include <linux/atmapi.h>
[10] Fix | Delete
#include <linux/atmioc.h>
[11] Fix | Delete
[12] Fix | Delete
[13] Fix | Delete
#define ATMARP_RETRY_DELAY 30 /* request next resolution or forget
[14] Fix | Delete
NAK after 30 sec - should go into
[15] Fix | Delete
atmclip.h */
[16] Fix | Delete
#define ATMARP_MAX_UNRES_PACKETS 5 /* queue that many packets while
[17] Fix | Delete
waiting for the resolver */
[18] Fix | Delete
[19] Fix | Delete
[20] Fix | Delete
#define ATMARPD_CTRL _IO('a',ATMIOC_CLIP+1) /* become atmarpd ctrl sock */
[21] Fix | Delete
#define ATMARP_MKIP _IO('a',ATMIOC_CLIP+2) /* attach socket to IP */
[22] Fix | Delete
#define ATMARP_SETENTRY _IO('a',ATMIOC_CLIP+3) /* fill or hide ARP entry */
[23] Fix | Delete
#define ATMARP_ENCAP _IO('a',ATMIOC_CLIP+5) /* change encapsulation */
[24] Fix | Delete
[25] Fix | Delete
[26] Fix | Delete
enum atmarp_ctrl_type {
[27] Fix | Delete
act_invalid, /* catch uninitialized structures */
[28] Fix | Delete
act_need, /* need address resolution */
[29] Fix | Delete
act_up, /* interface is coming up */
[30] Fix | Delete
act_down, /* interface is going down */
[31] Fix | Delete
act_change /* interface configuration has changed */
[32] Fix | Delete
};
[33] Fix | Delete
[34] Fix | Delete
struct atmarp_ctrl {
[35] Fix | Delete
enum atmarp_ctrl_type type; /* message type */
[36] Fix | Delete
int itf_num;/* interface number (if present) */
[37] Fix | Delete
__be32 ip; /* IP address (act_need only) */
[38] Fix | Delete
};
[39] Fix | Delete
[40] Fix | Delete
#endif
[41] Fix | Delete
[42] Fix | Delete
It is recommended that you Edit text format, this type of Fix handles quite a lot in one request
Function