diff options
| -rw-r--r-- | dund/dund.1 | 17 | ||||
| -rw-r--r-- | dund/main.c | 2 | 
2 files changed, 17 insertions, 2 deletions
| diff --git a/dund/dund.1 b/dund/dund.1 index 41354774..2056b145 100644 --- a/dund/dund.1 +++ b/dund/dund.1 @@ -5,7 +5,7 @@ dund \- BlueZ Bluetooth dial-up networking daemon  .SH DESCRIPTION  DUN daemon  .SH SYNOPSIS -dund <options> +dund <options> [pppd options]  .SH OPTIONS  .TP  \fB\-\-show\fR \fB\-\-list\fR \fB\-l\fR @@ -17,6 +17,9 @@ Listen for DUN connections  \fB\-\-connect\fR \fB\-c\fR <bdaddr>  Create DUN connection  .TP +\fB\-\-mrouter\fR \fB\-m\fR <bdaddr> +Create mRouter connection +.TP  \fB\-\-search\fR \fB\-Q[duration]\fR  Search and connect  .TP @@ -35,6 +38,9 @@ Source bdaddr  \fB\-\-nosdp\fR \fB\-D\fR  Disable SDP  .TP +\fB\-\-auth\fR \fB\-A\fR +Enable authentification +.TP  \fB\-\-encrypt\fR \fB\-E\fR  Enable encryption  .TP @@ -49,4 +55,13 @@ Do not become a daemon  .TP  \fB\-\-persist\fR \fB\-p[interval]\fR  Persist mode +.TP +\fB\-\-pppd\fR \fB\-d\fR <pppd> +Location of the PPP daemon (pppd) +.TP +\fB\-\-msdun\fR \fB\-X\fR [timeo] +Enable Microsoft dialup networking support +.TP +\fB\-\-cache\fR \fB\-C\fR [valid] +Enable address cache diff --git a/dund/main.c b/dund/main.c index b00ccab7..83be167c 100644 --- a/dund/main.c +++ b/dund/main.c @@ -430,7 +430,7 @@ static char main_help[] =  	"\t--persist -p[interval]    Persist mode\n"  	"\t--pppd -d <pppd>          Location of the PPP daemon (pppd)\n"  	"\t--msdun -X[timeo]         Enable Microsoft dialup networking support\n" -	"\t--cache -C[valid]         Enable addess cache\n"; +	"\t--cache -C[valid]         Enable address cache\n";  int main(int argc, char **argv)  { | 
