14 lines
296 B
C
14 lines
296 B
C
#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;
|