mirror of
https://github.com/yarrick/iodine.git
synced 2024-11-08 02:19:18 +02:00
fixed osflags script, updated changelog
This commit is contained in:
parent
9019b0639d
commit
ad8afce8e1
|
@ -11,7 +11,9 @@ CHANGES:
|
|||
Debian bug #477692 by Vincent Bernat, controlled by -s switch
|
||||
- Applied a security patch from Andrew Griffiths, use setgroups() to
|
||||
limit the groups of the user
|
||||
- Applied a patch to make iodine work on (Open)Solaris, from Albert Lee
|
||||
- Applied a patch to make iodine build on (Open)Solaris, from Albert Lee
|
||||
Needs TUN/TAP driver: http://www.whiteboard.ne.jp/~admin2/tuntap/
|
||||
Still needs some more code in tun.c for opening/closing the device
|
||||
- Added option in server (-c) to disable IP/port checking on each packet,
|
||||
will hopefully help when server is behind NAT
|
||||
- Fixed bug #21, now only IP address part of each packet is checked.
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
case $1 in
|
||||
link)
|
||||
|
||||
case $OSTYPE in
|
||||
case `uname` in
|
||||
SunOS | solaris)
|
||||
echo '-lsocket -lnsl';
|
||||
;;
|
||||
|
|
Loading…
Reference in New Issue