Searched refs:rstate (Results 1 - 25 of 36) sorted by relevance

12

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/ppp-2.4.4/pppd/plugins/radius/
H A Dradius.c135 static struct radius_state rstate; variable in typeref:struct:radius_state
163 memset(&rstate, 0, sizeof(rstate));
165 strlcpy(rstate.config_file, "/etc/radiusclient/radiusclient.conf",
166 sizeof(rstate.config_file));
223 if (rstate.choose_ip) {
224 *addrp = rstate.ip_addr;
260 /* Put user with potentially realm added in rstate.user */
264 radius_pre_auth_hook(rstate.user,
265 &rstate
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/asm-m68knommu/
H A Dm68360_pram.h63 unsigned long rstate; /* Rx Internal State */ member in struct:quicc32_pram
88 unsigned long rstate; /* Rx internal state */ member in struct:hdlc_pram
148 unsigned long rstate; /* Rx internal state */ member in struct:uart_pram
200 unsigned long rstate; /* Rx internal state */ member in struct:bisync_pram
235 unsigned short rstate; /* receiver state */ member in struct:iom2_pram
251 unsigned long rstate; /* Rx internal state */ member in struct:spi_pram
269 unsigned long rstate; /* Rx internal state */ member in struct:smc_uart_pram
293 unsigned long rstate; /* Rx internal state */ member in struct:smc_trnsp_pram
322 unsigned long rstate; /* Rx internal state */ member in struct:ethernet_pram
399 unsigned long rstate; /* R member in struct:transparent_pram
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/fs/smbfs/
H A Drequest.c440 server->rstate = SMB_RECV_DROP;
458 server->rstate = SMB_RECV_DROP;
471 server->rstate = SMB_RECV_PARAM;
504 server->rstate = SMB_RECV_DROP;
508 server->rstate = req->rq_rlen > 0 ? SMB_RECV_DATA : SMB_RECV_END;
515 server->rstate = SMB_RECV_END;
533 server->rstate = SMB_RECV_END;
699 VERBOSE("state: %d\n", server->rstate);
700 switch (server->rstate) {
705 if (server->rstate
[all...]
H A Dsock.c224 server->rstate = SMB_RECV_DROP;
230 server->rstate = SMB_RECV_DROP;
246 server->rstate = SMB_RECV_HCOMPLETE;
290 server->rstate = SMB_RECV_END;
H A Dsmbiod.c225 server->rstate = SMB_RECV_DROP;
245 } else if (server->rstate == SMB_RECV_REQUEST)
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/ppp-2.4.4/modules/
H A Dppp_comp.c139 void *rstate; member in struct:comp_state
206 cp->rstate = NULL;
228 if (cp->rstate != NULL)
229 (*cp->rcomp->decomp_free)(cp->rstate);
370 if (cp->rstate != NULL) {
371 (*cp->rcomp->decomp_free)(cp->rstate);
372 cp->rstate = NULL;
435 if (cp->rstate != NULL) {
436 (*cp->rcomp->decomp_free)(cp->rstate);
437 cp->rstate
[all...]
H A Dvjcompress.c457 cs = &comp->rstate[comp->last_recv = ip->ip_p];
510 cs = &comp->rstate[comp->last_recv];
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/ppp-2.4.4/solaris/
H A Dppp_comp.c139 void *rstate; member in struct:comp_state
206 cp->rstate = NULL;
228 if (cp->rstate != NULL)
229 (*cp->rcomp->decomp_free)(cp->rstate);
370 if (cp->rstate != NULL) {
371 (*cp->rcomp->decomp_free)(cp->rstate);
372 cp->rstate = NULL;
435 if (cp->rstate != NULL) {
436 (*cp->rcomp->decomp_free)(cp->rstate);
437 cp->rstate
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/ppp-2.4.4/include/net/
H A Dslcompress.h135 struct cstate rstate[MAX_STATES]; /* receive connection states */ member in struct:slcompress
H A Dvjcompress.h127 struct cstate rstate[MAX_STATES]; /* receive connection states */ member in struct:vjcompress
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/linux/
H A Dsmb_fs_sb.h45 enum smb_receive_state rstate; member in struct:smb_sb_info
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/net/
H A Dslhc_vj.h144 struct cstate *rstate; /* receive connection states (array)*/ member in struct:slcompress
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/net/
H A Dslhc.c103 comp->rstate = kzalloc(rsize, GFP_KERNEL);
104 if (! comp->rstate)
140 kfree(comp->rstate);
158 if ( comp->rstate != NULLSLSTATE )
159 kfree( comp->rstate );
518 cs = &comp->rstate[comp->recv_current];
664 cs = &comp->rstate[comp->recv_current = index];
H A Dppp_generic.c111 unsigned int rstate; /* receive state bits 6c */ member in struct:ppp
143 * Bits in rstate: SC_DECOMP_RUN, SC_DC_ERROR, SC_DC_FERROR.
837 val = ppp->flags | ppp->xstate | ppp->rstate;
1812 if (ppp->rc_state != 0 && (ppp->rstate & SC_DECOMP_RUN)
1813 && (ppp->rstate & (SC_DC_FERROR | SC_DC_ERROR)) == 0)
1816 if (ppp->flags & SC_MUST_COMP && ppp->rstate & SC_DC_FERROR)
1975 ppp->rstate |= SC_DC_FERROR;
1996 ppp->rstate |= SC_DC_ERROR;
2401 ppp->rstate &= ~SC_DECOMP_RUN;
2449 ppp->rstate
2512 void *xstate, *rstate; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/openssl/ssl/
H A Ds2_pkt.c164 s->rstate=SSL_ST_READ_HEADER;
175 if (s->rstate == SSL_ST_READ_HEADER)
198 s->rstate=SSL_ST_READ_BODY;
219 if (s->rstate == SSL_ST_READ_BODY)
230 s->rstate=SSL_ST_READ_HEADER;
H A Dssl_stat.c206 switch (s->rstate)
494 switch (s->rstate)
H A Ds3_pkt.c261 if ( (s->rstate != SSL_ST_READ_BODY) ||
266 s->rstate=SSL_ST_READ_BODY;
308 /* now s->rstate == SSL_ST_READ_BODY */
311 /* s->rstate == SSL_ST_READ_BODY, get and decode the data */
323 s->rstate=SSL_ST_READ_HEADER; /* set state for later operations */
851 if ((rr->length == 0) || (s->rstate == SSL_ST_READ_BODY))
904 s->rstate=SSL_ST_READ_HEADER;
H A Ds23_clnt.c401 s->rstate=SSL_ST_READ_HEADER;
430 s->rstate=SSL_ST_READ_HEADER;
H A Ds23_srvr.c542 s->rstate=SSL_ST_READ_HEADER;
567 s->rstate=SSL_ST_READ_HEADER;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/openssl-0.9.8e/ssl/
H A Ds2_pkt.c164 s->rstate=SSL_ST_READ_HEADER;
175 if (s->rstate == SSL_ST_READ_HEADER)
198 s->rstate=SSL_ST_READ_BODY;
219 if (s->rstate == SSL_ST_READ_BODY)
230 s->rstate=SSL_ST_READ_HEADER;
H A Ds23_srvr.c510 s->rstate=SSL_ST_READ_HEADER;
535 s->rstate=SSL_ST_READ_HEADER;
H A Dssl_stat.c206 switch (s->rstate)
494 switch (s->rstate)
H A Ds3_pkt.c263 if ( (s->rstate != SSL_ST_READ_BODY) ||
268 s->rstate=SSL_ST_READ_BODY;
306 /* now s->rstate == SSL_ST_READ_BODY */
309 /* s->rstate == SSL_ST_READ_BODY, get and decode the data */
321 s->rstate=SSL_ST_READ_HEADER; /* set state for later operations */
852 if ((rr->length == 0) || (s->rstate == SSL_ST_READ_BODY))
905 s->rstate=SSL_ST_READ_HEADER;
H A Dd1_pkt.c508 if ( (s->rstate != SSL_ST_READ_BODY) ||
517 s->rstate=SSL_ST_READ_BODY;
562 /* now s->rstate == SSL_ST_READ_BODY */
565 /* s->rstate == SSL_ST_READ_BODY, get and decode the data */
584 s->rstate=SSL_ST_READ_HEADER; /* set state for later operations */
703 if ((rr->length == 0) || (s->rstate == SSL_ST_READ_BODY))
764 s->rstate=SSL_ST_READ_HEADER;
811 s->rstate=SSL_ST_READ_HEADER;
H A Ds23_clnt.c482 s->rstate=SSL_ST_READ_HEADER;
511 s->rstate=SSL_ST_READ_HEADER;

Completed in 149 milliseconds

12