OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:protp
(Results
1 - 5
of
5
) sorted by null
/external/ppp/pppd/
demand.c
82
struct protent *
protp
;
local
109
for (i = 0; (
protp
= protocols[i]) != NULL; ++i)
110
if (
protp
->enabled_flag &&
protp
->demand_conf != NULL)
111
if (!((*
protp
->demand_conf)(0)))
123
struct protent *
protp
;
local
125
for (i = 0; (
protp
= protocols[i]) != NULL; ++i)
126
if (
protp
->enabled_flag &&
protp
->demand_conf != NULL)
127
sifnpmode(0,
protp
->protocol & ~0x8000, NPMODE_QUEUE)
140
struct protent *
protp
;
local
166
struct protent *
protp
;
local
338
struct protent *
protp
;
local
[
all
...]
auth.c
707
struct protent *
protp
;
local
709
for (i = 0; (
protp
= protocols[i]) != NULL; ++i) {
710
if (!
protp
->enabled_flag)
712
if (
protp
->protocol != PPP_LCP &&
protp
->lowerdown != NULL)
713
(*
protp
->lowerdown)(unit);
714
if (
protp
->protocol < 0xC000 &&
protp
->close != NULL)
715
(*
protp
->close)(unit, "LCP down");
734
struct protent *
protp
;
local
855
struct protent *
protp
;
local
896
struct protent *
protp
;
local
[
all
...]
utils.c
481
struct protent *
protp
;
local
487
for (i = 0; (
protp
= protocols[i]) != NULL; ++i)
488
if (proto ==
protp
->protocol)
490
if (
protp
!= NULL) {
491
printer(arg, "[%s",
protp
->name);
492
n = (*
protp
->printpkt)(p, len, printer, arg);
497
for (i = 0; (
protp
= protocols[i]) != NULL; ++i)
498
if (proto == (
protp
->protocol & ~0x8000))
500
if (
protp
!= 0 &&
protp
->data_name != 0)
[
all
...]
main.c
319
struct protent *
protp
;
local
355
for (i = 0; (
protp
= protocols[i]) != NULL; ++i)
356
(*
protp
->init)(0);
451
for (i = 0; (
protp
= protocols[i]) != NULL; ++i)
452
if (
protp
->check_options != NULL)
453
(*
protp
->check_options)();
1078
struct protent *
protp
;
local
1136
for (i = 0; (
protp
= protocols[i]) != NULL; ++i) {
1137
if (
protp
->protocol == protocol &&
protp
->enabled_flag)
[
all
...]
lcp.c
560
struct protent *
protp
;
local
585
for (i = 0; (
protp
= protocols[i]) != NULL; ++i)
586
if (
protp
->protocol == prot &&
protp
->enabled_flag) {
592
(*
protp
->protrej)(f->unit);
[
all
...]
Completed in 192 milliseconds