mirror of
https://github.com/yarrick/iodine.git
synced 2024-11-16 21:29:20 +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
|
Debian bug #477692 by Vincent Bernat, controlled by -s switch
|
||||||
- Applied a security patch from Andrew Griffiths, use setgroups() to
|
- Applied a security patch from Andrew Griffiths, use setgroups() to
|
||||||
limit the groups of the user
|
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,
|
- Added option in server (-c) to disable IP/port checking on each packet,
|
||||||
will hopefully help when server is behind NAT
|
will hopefully help when server is behind NAT
|
||||||
- Fixed bug #21, now only IP address part of each packet is checked.
|
- Fixed bug #21, now only IP address part of each packet is checked.
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
case $1 in
|
case $1 in
|
||||||
link)
|
link)
|
||||||
|
|
||||||
case $OSTYPE in
|
case `uname` in
|
||||||
SunOS | solaris)
|
SunOS | solaris)
|
||||||
echo '-lsocket -lnsl';
|
echo '-lsocket -lnsl';
|
||||||
;;
|
;;
|
||||||
|
|
Loading…
Reference in New Issue