Added IP whitelist/blacklisting for telnet only

This commit is contained in:
Andrew Pamment
2016-12-11 14:42:28 +10:00
parent 3c5c310ee9
commit 23f4580685
15 changed files with 714 additions and 12 deletions

10
hashmap/README Normal file
View File

@@ -0,0 +1,10 @@
This is a simple C hashmap, using strings for the keys.
Originally based on code by Eliot Back at http://elliottback.com/wp/hashmap-implementation-in-c/
Reworked by Pete Warden - http://petewarden.typepad.com/searchbrowser/2010/01/c-hashmap.html
main.c contains an example that tests the functionality of the hashmap module.
To compile it, run something like this on your system:
gcc main.c hashmap.c -o hashmaptest
There are no restrictions on how you reuse this code.