1 /* Based on ipsvd utilities written by Gerrit Pape <pape@smarden.org>
2 * which are released into public domain by the author.
3 * Homepage: http://smarden.sunsite.dk/ipsvd/
5 * Copyright (C) 2007 Denys Vlasenko.
7 * Licensed under GPLv2, see file LICENSE in this tarball for details.
10 #if __GNUC_PREREQ(4,1)
11 # pragma GCC visibility push(hidden)
19 void ipsvd_perhost_init(unsigned);
21 /* Returns number of already opened connects to this ips, including this one.
22 * ip should be a malloc'ed ptr.
23 * If return value is <= maxconn, ip is inserted into the table
24 * and pointer to table entry if stored in *hccpp
25 * (useful for storing pid later).
26 * Else ip is NOT inserted (you must take care of it - free() etc) */
27 unsigned ipsvd_perhost_add(char *ip, unsigned maxconn, struct hcc **hccpp);
29 /* Finds and frees element with pid */
30 void ipsvd_perhost_remove(int pid);
32 //unsigned ipsvd_perhost_setpid(int pid);
33 //void ipsvd_perhost_free(void);
35 #if __GNUC_PREREQ(4,1)
36 # pragma GCC visibility pop