X-Git-Url: http://git.ozlabs.org/?p=ppp.git;a=blobdiff_plain;f=pppd%2Fsys-linux.c;h=aa829aad9201abcbe914cddf415fef34071a2e96;hp=42fadaa3dfad99b764295f86f26fbd2b479d2f9b;hb=9061e74eee6de8be3478fd23caa2ac9ceae586ec;hpb=25f18053feac88f6f7251f5f64630f39bdca423b diff --git a/pppd/sys-linux.c b/pppd/sys-linux.c index 42fadaa..aa829aa 100644 --- a/pppd/sys-linux.c +++ b/pppd/sys-linux.c @@ -25,6 +25,9 @@ #include #include #include +#include +#include +#include #include #include #include @@ -91,6 +94,7 @@ int set_kdebugflag (int requested_level) void establish_ppp (void) { int pppdisc = N_PPP; + int sig = SIGIO; if (ioctl(fd, TIOCEXCL, 0) < 0) { syslog (LOG_WARNING, "ioctl(TIOCEXCL): %m"); @@ -112,6 +116,14 @@ void establish_ppp (void) } set_kdebugflag (kdebugflag); + + /* + * Set the device to give us a SIGIO when data is available. + */ + if (ioctl(fd, PPPIOCSINPSIG, &sig) == -1) { + syslog(LOG_ERR, "ioctl(PPPIOCSINPSIG): %m"); + die(1); + } } /* @@ -799,3 +811,19 @@ int ppp_available(void) return ok; } + +int +logwtmp(line, name, host) + char *line, *name, *host; +{ + struct utmp ut; + + memset (&ut, 0, sizeof (ut)); + (void)strncpy(ut.ut_line, line, sizeof(ut.ut_line)); + (void)strncpy(ut.ut_name, name, sizeof(ut.ut_name)); + (void)strncpy(ut.ut_host, host, sizeof(ut.ut_host)); + (void)time(&ut.ut_time); + + pututline (&ut); /* Write the line to the proper place */ + endutent(); /* Indicate operation is complete */ +}