blob: 19877d35ca9689b99839e71bcaa80b14daade4e7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#ifndef LOOP_H
#define LOOP_H
#include "sock.h"
void loop_records_init(void);
void loop_records_add(union sockaddr_union *addr);
int connection_loops (union sockaddr_union *addr);
#endif
|