Changeset 1137ac


Ignore:
Timestamp:
08/16/09 00:02:00 (4 years ago)
Author:
Erik Ekman <yarrick@…>
Branches:
master
Children:
a3757a
Parents:
7efdd0
git-author:
Erik Ekman <yarrick@…> (08/16/09 00:02:00)
git-committer:
Erik Ekman <erik@…> (02/04/12 20:34:03)
Message:

Updated docs

Files:
3 edited

Legend:

Unmodified
Added
Removed
  • CHANGELOG

    r0e81cd r1137ac  
    1919        - Raw UDP mode added. If the iodined server is reachable directly, 
    2020                packets can be sent to it without DNS encoding. Fixes #36. 
     21        - Added -F option to write pidfile, based on patch from 
     22                misc at mandriva.org. Fixes #70. 
    2123 
    22242009-06-01: 0.5.2 "WifiFree" 
  • man/iodine.8

    r7efdd0 r1137ac  
    88.B iodine [-h] 
    99 
    10 .B iodine [-f] [-u 
     10.B iodine [-f] [-r] [-u 
    1111.I user 
    1212.B ] [-P 
     
    106106.SS Client Options: 
    107107.TP 
     108.B -r 
     109Skip raw UDP mode. If not used, iodine will try getting the public IP address 
     110of the iodined host and test if it is reachable directly. If it is, traffic 
     111will be sent to the server instead of the DNS relay. 
     112.TP 
    108113.B -m fragsize 
    109114Maximum downstream fragsize. Not setting this will cause the client to probe 
  • src/iodine.c

    r7efdd0 r1137ac  
    11581158        extern char *__progname; 
    11591159 
    1160         fprintf(stderr, "Usage: %s [-v] [-h] [-f] [-u user] [-t chrootdir] [-d device] " 
     1160        fprintf(stderr, "Usage: %s [-v] [-h] [-f] [-r] [-u user] [-t chrootdir] [-d device] " 
    11611161                        "[-P password] [-m maxfragsize] [-z context] [-F pidfile] " 
    11621162                        "[nameserver] topdomain\n", __progname); 
     
    11691169 
    11701170        fprintf(stderr, "iodine IP over DNS tunneling client\n"); 
    1171         fprintf(stderr, "Usage: %s [-v] [-h] [-f] [-u user] [-t chrootdir] [-d device] " 
     1171        fprintf(stderr, "Usage: %s [-v] [-h] [-f] [-r] [-u user] [-t chrootdir] [-d device] " 
    11721172                        "[-P password] [-m maxfragsize] [-z context] [-F pidfile] " 
    11731173                        "[nameserver] topdomain\n", __progname); 
     
    11751175        fprintf(stderr, "  -h to print this help and exit\n"); 
    11761176        fprintf(stderr, "  -f to keep running in foreground\n"); 
     1177        fprintf(stderr, "  -r to skip raw UDP mode attempt\n"); 
    11771178        fprintf(stderr, "  -u name to drop privileges and run as user 'name'\n"); 
    11781179        fprintf(stderr, "  -t dir to chroot to directory dir\n"); 
Note: See TracChangeset for help on using the changeset viewer.