Skip to content

Commit 0b08cc7

Browse files
committed
Add uthash.h
1 parent 4151843 commit 0b08cc7

File tree

2 files changed

+979
-0
lines changed

2 files changed

+979
-0
lines changed

tcptrace.h

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
#ifndef _TCPTRACE_H
2+
#define _TCPTRACE_H
3+
4+
#include <stdbool.h>
5+
6+
#include "uthash.h"
7+
8+
struct socket_info {
9+
int fd;
10+
int domain;
11+
int type;
12+
bool is_connected;
13+
UT_hash_handle hh; /* makes this structure hashable */
14+
};
15+
16+
#endif

0 commit comments

Comments
 (0)