1 /* SPDX-License-Identifier: (LGPL-2.1 OR BSD-2-Clause) */ 2 #ifndef __SOLISTEN_H 3 #define __SOLISTEN_H 4 5 #define TASK_COMM_LEN 16 6 7 struct event { 8 __u32 addr[4]; 9 __u32 pid; 10 __u32 proto; 11 int backlog; 12 int ret; 13 __u16 port; 14 char task[TASK_COMM_LEN]; 15 }; 16 17 #endif /* __SOLISTEN_H */ 18