mirror of
git://erdgeist.org/opentracker
synced 2025-02-17 06:31:30 +08:00
Clean up help and usage
This commit is contained in:
parent
5c18293c9c
commit
77e5241cf8
@ -485,20 +485,22 @@ static void graceful( int s ) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
static void usage( char *name ) {
|
static void usage( char *name ) {
|
||||||
fprintf( stderr, "Usage: %s [-i serverip] [-p serverport] [-d serverdirectory]"
|
fprintf( stderr, "Usage: %s [-i ip] [-p port] [-P port] [-d dir] [-A ip]\n", name );
|
||||||
"\n", name );
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#define HELPLINE(opt,desc) fprintf(stderr, "\t%-10s%s\n",opt,desc)
|
||||||
static void help( char *name ) {
|
static void help( char *name ) {
|
||||||
usage( name );
|
usage( name );
|
||||||
fprintf( stderr, "\t-i serverip\tspecify ip to bind to (default: *, you may specify more than one)\n"
|
|
||||||
"\t-p serverport\tspecify tcp port to bind to (default: 6969, you may specify more than one)\n"
|
HELPLINE("-i ip","specify ip to bind to (default: *, you may specify more than one)");
|
||||||
"\t-P serverport\tspecify udp port to bind to (default: 6969, you may specify more than one)\n"
|
HELPLINE("-p port","specify tcp port to bind to (default: 6969, you may specify more than one)");
|
||||||
"\t-d serverdir\tspecify directory containing white- or black listed torrent info_hashes (default: \".\")\n"
|
HELPLINE("-P port","specify udp port to bind to (default: 6969, you may specify more than one)");
|
||||||
"\t-A adminip\tbless an ip address as admin address (e.g. to allow snycs from this address)\n"
|
HELPLINE("-d dir","specify directory containing white- or black listed torrent info_hashes (default: \".\")");
|
||||||
"\nExample: ./opentracker -i 127.0.0.1 -p 6969 -P 6969 -i 10.1.1.23 -p 2710 -p 80\n"
|
HELPLINE("-A ip","bless an ip address as admin address (e.g. to allow syncs from this address)");
|
||||||
);
|
|
||||||
|
fprintf( stderr, "\nExample: ./opentracker -i 127.0.0.1 -p 6969 -P 6969 -i 10.1.1.23 -p 2710 -p 80\n" );
|
||||||
}
|
}
|
||||||
|
#undef HELPLINE
|
||||||
|
|
||||||
static void handle_read( const int64 clientsocket ) {
|
static void handle_read( const int64 clientsocket ) {
|
||||||
struct http_data* h = io_getcookie( clientsocket );
|
struct http_data* h = io_getcookie( clientsocket );
|
||||||
|
Loading…
x
Reference in New Issue
Block a user