tcpudp_perhost.h 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637
  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/
  4. *
  5. * Copyright (C) 2007 Denys Vlasenko.
  6. *
  7. * Licensed under GPLv2, see file LICENSE in this tarball for details.
  8. */
  9. #if __GNUC_PREREQ(4,1)
  10. # pragma GCC visibility push(hidden)
  11. #endif
  12. struct hcc {
  13. char *ip;
  14. int pid;
  15. };
  16. void ipsvd_perhost_init(unsigned);
  17. /* Returns number of already opened connects to this ips, including this one.
  18. * ip should be a malloc'ed ptr.
  19. * If return value is <= maxconn, ip is inserted into the table
  20. * and pointer to table entry if stored in *hccpp
  21. * (useful for storing pid later).
  22. * Else ip is NOT inserted (you must take care of it - free() etc) */
  23. unsigned ipsvd_perhost_add(char *ip, unsigned maxconn, struct hcc **hccpp);
  24. /* Finds and frees element with pid */
  25. void ipsvd_perhost_remove(int pid);
  26. //unsigned ipsvd_perhost_setpid(int pid);
  27. //void ipsvd_perhost_free(void);
  28. #if __GNUC_PREREQ(4,1)
  29. # pragma GCC visibility pop
  30. #endif