You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
296 B
C
14 lines
296 B
C
2 years ago
|
#pragma once
|
||
|
|
||
|
struct Connection;
|
||
|
typedef Connection* Connection;
|
||
|
|
||
|
struct Connection*
|
||
|
conn_new (
|
||
|
struct Connection* connection,
|
||
|
unsigned int source_port,
|
||
|
const char* source_ip,
|
||
|
unsigned int dest_port,
|
||
|
const char* dest_ip );
|
||
|
extern const size_t SIZEOF_CONN;
|