Add ``PROCESSID'' as a constant expanded when running
commands.
This commit is contained in:
parent
0460185ddf
commit
a237dcba17
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=40678
@ -17,7 +17,7 @@
|
||||
* IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
|
||||
* WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
|
||||
*
|
||||
* $Id: command.c,v 1.171 1998/10/26 19:07:39 brian Exp $
|
||||
* $Id: command.c,v 1.172 1998/10/26 19:07:42 brian Exp $
|
||||
*
|
||||
*/
|
||||
#include <sys/types.h>
|
||||
@ -134,7 +134,7 @@
|
||||
#define NEG_DNS 50
|
||||
|
||||
const char Version[] = "2.0";
|
||||
const char VersionDate[] = "$Date: 1998/10/26 19:07:39 $";
|
||||
const char VersionDate[] = "$Date: 1998/10/26 19:07:42 $";
|
||||
|
||||
static int ShowCommand(struct cmdargs const *);
|
||||
static int TerminalCommand(struct cmdargs const *);
|
||||
@ -384,8 +384,10 @@ static void
|
||||
expand(char **nargv, int argc, char const *const *oargv, struct bundle *bundle)
|
||||
{
|
||||
int arg;
|
||||
char pid[12];
|
||||
|
||||
nargv[0] = strdup(oargv[0]);
|
||||
snprintf(pid, sizeof pid, "%d", getpid());
|
||||
for (arg = 1; arg < argc; arg++) {
|
||||
nargv[arg] = strdup(oargv[arg]);
|
||||
nargv[arg] = subst(nargv[arg], "HISADDR",
|
||||
@ -402,6 +404,7 @@ expand(char **nargv, int argc, char const *const *oargv, struct bundle *bundle)
|
||||
mp_Enddisc(bundle->ncp.mp.cfg.enddisc.class,
|
||||
bundle->ncp.mp.cfg.enddisc.address,
|
||||
bundle->ncp.mp.cfg.enddisc.len));
|
||||
nargv[arg] = subst(nargv[arg], "PROCESSID", pid);
|
||||
nargv[arg] = subst(nargv[arg], "LABEL", bundle_GetLabel(bundle));
|
||||
}
|
||||
nargv[arg] = NULL;
|
||||
|
@ -1,4 +1,4 @@
|
||||
.\" $Id: ppp.8,v 1.129 1998/10/26 19:07:39 brian Exp $
|
||||
.\" $Id: ppp.8,v 1.130 1998/10/27 22:53:18 brian Exp $
|
||||
.Dd 20 September 1995
|
||||
.Os FreeBSD
|
||||
.Dt PPP 8
|
||||
@ -2381,6 +2381,8 @@ file.
|
||||
This is replaced with the IP number assigned to the local interface.
|
||||
.It Li PEER_ENDDISC
|
||||
This is replaced with the value of the peers endpoint discriminator.
|
||||
.It Li PROCESSID
|
||||
This is replaced with the current process id.
|
||||
.It Li USER
|
||||
This is replaced with the username that has been authenticated with PAP or
|
||||
CHAP. Normally, this variable is assigned only in -direct mode. This value
|
||||
|
@ -1,4 +1,4 @@
|
||||
.\" $Id: ppp.8,v 1.129 1998/10/26 19:07:39 brian Exp $
|
||||
.\" $Id: ppp.8,v 1.130 1998/10/27 22:53:18 brian Exp $
|
||||
.Dd 20 September 1995
|
||||
.Os FreeBSD
|
||||
.Dt PPP 8
|
||||
@ -2381,6 +2381,8 @@ file.
|
||||
This is replaced with the IP number assigned to the local interface.
|
||||
.It Li PEER_ENDDISC
|
||||
This is replaced with the value of the peers endpoint discriminator.
|
||||
.It Li PROCESSID
|
||||
This is replaced with the current process id.
|
||||
.It Li USER
|
||||
This is replaced with the username that has been authenticated with PAP or
|
||||
CHAP. Normally, this variable is assigned only in -direct mode. This value
|
||||
|
Loading…
Reference in New Issue
Block a user