You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
rtpengine/include/iptables.h

16 lines
261 B

#ifndef _IPTABLES_H_
#define _IPTABLES_H_
#include "socket.h"
#include "str.h"
void iptables_init(void);
extern int (*iptables_add_rule)(const socket_t *local_sock, const str *comment);
extern int (*iptables_del_rule)(const socket_t *local_sock);
#endif