Edit File by line
/home/barbar84/public_h.../wp-conte.../plugins/sujqvwi/ExeBy/smexe_ro.../usr/include/linux
File: errqueue.h
/* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
[0] Fix | Delete
#ifndef _LINUX_ERRQUEUE_H
[1] Fix | Delete
#define _LINUX_ERRQUEUE_H
[2] Fix | Delete
[3] Fix | Delete
#include <linux/types.h>
[4] Fix | Delete
[5] Fix | Delete
struct sock_extended_err {
[6] Fix | Delete
__u32 ee_errno;
[7] Fix | Delete
__u8 ee_origin;
[8] Fix | Delete
__u8 ee_type;
[9] Fix | Delete
__u8 ee_code;
[10] Fix | Delete
__u8 ee_pad;
[11] Fix | Delete
__u32 ee_info;
[12] Fix | Delete
__u32 ee_data;
[13] Fix | Delete
};
[14] Fix | Delete
[15] Fix | Delete
#define SO_EE_ORIGIN_NONE 0
[16] Fix | Delete
#define SO_EE_ORIGIN_LOCAL 1
[17] Fix | Delete
#define SO_EE_ORIGIN_ICMP 2
[18] Fix | Delete
#define SO_EE_ORIGIN_ICMP6 3
[19] Fix | Delete
#define SO_EE_ORIGIN_TXSTATUS 4
[20] Fix | Delete
#define SO_EE_ORIGIN_ZEROCOPY 5
[21] Fix | Delete
#define SO_EE_ORIGIN_TXTIME 6
[22] Fix | Delete
#define SO_EE_ORIGIN_TIMESTAMPING SO_EE_ORIGIN_TXSTATUS
[23] Fix | Delete
[24] Fix | Delete
#define SO_EE_OFFENDER(ee) ((struct sockaddr*)((ee)+1))
[25] Fix | Delete
[26] Fix | Delete
#define SO_EE_CODE_ZEROCOPY_COPIED 1
[27] Fix | Delete
[28] Fix | Delete
#define SO_EE_CODE_TXTIME_INVALID_PARAM 1
[29] Fix | Delete
#define SO_EE_CODE_TXTIME_MISSED 2
[30] Fix | Delete
[31] Fix | Delete
/**
[32] Fix | Delete
* struct scm_timestamping - timestamps exposed through cmsg
[33] Fix | Delete
*
[34] Fix | Delete
* The timestamping interfaces SO_TIMESTAMPING, MSG_TSTAMP_*
[35] Fix | Delete
* communicate network timestamps by passing this struct in a cmsg with
[36] Fix | Delete
* recvmsg(). See Documentation/networking/timestamping.txt for details.
[37] Fix | Delete
*/
[38] Fix | Delete
struct scm_timestamping {
[39] Fix | Delete
struct timespec ts[3];
[40] Fix | Delete
};
[41] Fix | Delete
[42] Fix | Delete
/* The type of scm_timestamping, passed in sock_extended_err ee_info.
[43] Fix | Delete
* This defines the type of ts[0]. For SCM_TSTAMP_SND only, if ts[0]
[44] Fix | Delete
* is zero, then this is a hardware timestamp and recorded in ts[2].
[45] Fix | Delete
*/
[46] Fix | Delete
enum {
[47] Fix | Delete
SCM_TSTAMP_SND, /* driver passed skb to NIC, or HW */
[48] Fix | Delete
SCM_TSTAMP_SCHED, /* data entered the packet scheduler */
[49] Fix | Delete
SCM_TSTAMP_ACK, /* data acknowledged by peer */
[50] Fix | Delete
};
[51] Fix | Delete
[52] Fix | Delete
#endif /* _LINUX_ERRQUEUE_H */
[53] Fix | Delete
[54] Fix | Delete
It is recommended that you Edit text format, this type of Fix handles quite a lot in one request
Function