Searched refs:PPTP_CALL (Results 1 - 6 of 6) sorted by relevance

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/pptp/
H A Dpptp_ctrl.h12 typedef struct PPTP_CALL PPTP_CALL; typedef in typeref:struct:PPTP_CALL
19 typedef void (*pptp_call_cb)(PPTP_CONN*, PPTP_CALL*, enum call_state);
28 PPTP_CALL * pptp_call_open(PPTP_CONN * conn,
32 void pptp_call_close(PPTP_CONN * conn, PPTP_CALL * call);
34 void pptp_call_destroy(PPTP_CONN *conn, PPTP_CALL *call);
46 void pptp_call_get_ids(PPTP_CONN * conn, PPTP_CALL * call,
54 void * pptp_call_closure_get(PPTP_CONN * conn, PPTP_CALL * call);
55 void pptp_call_closure_put(PPTP_CONN * conn, PPTP_CALL * call, void *cl);
H A Dvector.h1 /* vector.h ..... store a vector of PPTP_CALL information and search it
11 #include "pptp_ctrl.h" /* for definition of PPTP_CALL */
21 int vector_insert(VECTOR *v, int key, PPTP_CALL * call);
23 int vector_search(VECTOR *v, int key, PPTP_CALL ** call);
28 /* get a specific PPTP_CALL ... useful only when iterating. */
29 PPTP_CALL * vector_get_Nth(VECTOR *v, int n);
H A Dvector_test.c22 assert(!vector_search(v, i, (PPTP_CALL **)&j));
29 retval = vector_insert(v, i, (PPTP_CALL *)i);
34 retval = vector_search(v, i, (PPTP_CALL **)&j);
43 retval = vector_search(v, MAX+1, (PPTP_CALL **)&j);
67 assert(!vector_search(v, k, (PPTP_CALL **) &j));
71 retval = vector_insert(v, k, (PPTP_CALL *) k);
76 retval = vector_search(v, k, (PPTP_CALL **) &j);
86 retval = vector_search(v, i, (PPTP_CALL **) &j);
H A Dvector.c1 /* vector.c ..... store a vector of PPTP_CALL information and search it
23 PPTP_CALL *call;
76 int vector_insert(VECTOR *v, int key, PPTP_CALL * call)
124 int vector_search(VECTOR *v, int key, PPTP_CALL **call)
204 PPTP_CALL * vector_get_Nth(VECTOR *v, int n)
H A Dpptp_ctrl.c86 struct PPTP_CALL { struct
326 PPTP_CALL * pptp_call_open(PPTP_CONN * conn, pptp_call_cb callback,
329 PPTP_CALL * call;
384 void pptp_call_close(PPTP_CONN * conn, PPTP_CALL * call)
405 void pptp_call_destroy(PPTP_CONN *conn, PPTP_CALL *call)
857 PPTP_CALL * call;
915 PPTP_CALL * call;
932 PPTP_CALL * call;
991 void pptp_call_get_ids(PPTP_CONN * conn, PPTP_CALL * call,
1000 void pptp_call_closure_put(PPTP_CONN * conn, PPTP_CALL * cal
[all...]
H A Dpptp_callmgr.c62 void call_callback(PPTP_CONN *conn, PPTP_CALL *call, enum call_state state)
197 PPTP_CALL * call;
230 PPTP_CALL * call;
257 PPTP_CALL *call = vector_get_Nth(call_list, i);

Completed in 152 milliseconds