OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:pending_reply
(Results
1 - 4
of
4
) sorted by relevancy
/src/sys/netinet/
sctp_structs.h
370
*
pending_reply
->sr_resp.reset_at_tsn.
372
struct sctp_stream_reset_response *
pending_reply
;
member in struct:sctp_association
sctp_indata.c
2160
if ((asoc->
pending_reply
) &&
2161
((compare_with_wrap(tsn, ntohl(asoc->
pending_reply
->reset_at_tsn), MAX_TSN)) ||
2162
(tsn == ntohl(asoc->
pending_reply
->reset_at_tsn)))
2346
if ((asoc->
pending_reply
) &&
2347
((compare_with_wrap((asoc->cumulative_tsn+1), ntohl(asoc->
pending_reply
->reset_at_tsn), MAX_TSN)) ||
2348
((asoc->cumulative_tsn+1) == ntohl(asoc->
pending_reply
->reset_at_tsn)))
2353
* 2: free
pending_reply
space
2357
sctp_handle_stream_reset_response(stcb, asoc->
pending_reply
);
2358
free(asoc->
pending_reply
, M_PCB);
2359
asoc->
pending_reply
= NULL
[
all
...]
sctp_input.c
2696
if (stcb->asoc.
pending_reply
!= NULL) {
2704
free(stcb->asoc.
pending_reply
, M_PCB);
2706
stcb->asoc.
pending_reply
= malloc(param_length,
2708
memcpy(stcb->asoc.
pending_reply
, resp, param_length);
sctp_pcb.c
3145
if (asoc->
pending_reply
) {
3146
free(asoc->
pending_reply
, M_PCB);
3147
asoc->
pending_reply
= NULL;
Completed in 19 milliseconds
Indexes created Sat Oct 18 17:09:52 GMT 2025