Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
John McEleney
/
mailutils
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
Commit
022f12d1
...
022f12d1989d431ebd3c959b6b0d5a1116ec7116
authored
2002-07-26 11:16:25 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
(daemon option group): New option --transcript.
1 parent
6f00e1af
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
0 deletions
mailbox/mu_argp.c
mailbox/mu_argp.c
View file @
022f12d
...
...
@@ -143,6 +143,8 @@ static struct argp_option mu_daemon_argp_option[] = {
"Listen on specified port number"
,
0
},
{
"timeout"
,
't'
,
"NUMBER"
,
0
,
"Set idle timeout value to NUMBER seconds"
,
0
},
{
"transcript"
,
'x'
,
NULL
,
0
,
"output session transcript via syslog"
,
0
},
{
NULL
,
0
,
NULL
,
0
,
NULL
,
0
}
};
...
...
@@ -482,6 +484,10 @@ mu_daemon_argp_parser (int key, char *arg, struct argp_state *state)
p
->
timeout
=
strtoul
(
arg
,
NULL
,
10
);
break
;
case
'x'
:
p
->
transcript
=
1
;
break
;
default:
return
ARGP_ERR_UNKNOWN
;
}
...
...
Please
register
or
sign in
to post a comment