HomeSort by relevance Sort by last modified time
    Searched refs:pppox (Results 1 - 6 of 6) sorted by null

  /external/ppp/pppd/
pppox.c 25 {"pppox", o_special, pppox_set, "PPPoX socket", OPT_DEVNAM},
43 static int pppox = -1; variable
46 if (!int_option(*argv, &pppox)) {
49 info("Using PPPoX (socket = %d)", pppox);
55 return pppox;
59 if (pppox != -1) {
60 close(pppox);
61 pppox = -1
    [all...]
Android.mk 27 pppox.c
  /external/mtpd/
mtpd.h 45 void start_pppd(int pppox);
mtpd.c 312 void start_pppd(int pppox)
316 close(pppox);
320 log_print(INFO, "Starting pppd (pppox = %d)", pppox);
332 sprintf(number, "%d", pppox);
335 args[2] = "pppox";
364 close(pppox);
pptp.c 236 int pppox; local
237 log_print(INFO, "Creating PPPoX socket");
238 pppox = socket(AF_PPPOX, SOCK_DGRAM, PX_PROTO_OPNS);
240 if (pppox == -1) {
251 if (connect(pppox, (struct sockaddr *)&address, sizeof(address)) != 0) {
256 return pppox;
l2tp.c 350 int pppox; local
351 log_print(INFO, "Creating PPPoX socket");
352 pppox = socket(AF_PPPOX, SOCK_DGRAM, PX_PROTO_OLAC);
354 if (pppox == -1) {
365 if (connect(pppox, (struct sockaddr *)&address, sizeof(address)) != 0) {
370 return pppox;

Completed in 35 milliseconds