Searched refs:segmentAction (Results 1 - 2 of 2) sorted by relevance

/haiku/src/add-ons/kernel/network/protocols/tcp/
H A Dtcp.cpp730 int32 segmentAction = DROP; local
735 segmentAction = endpoint->SegmentReceived(segment, buffer);
738 // while handling a segment. If this flag is set in segmentAction
742 if ((segmentAction & DELETED_ENDPOINT) == 0)
745 segmentAction = DROP | RESET;
747 if ((segmentAction & RESET) != 0) {
751 if ((segmentAction & DROP) != 0)
H A DTCPEndpoint.cpp1904 int32 segmentAction = DROP; local
1908 segmentAction = _ListenReceive(segment, buffer);
1912 segmentAction = _SynchronizeSentReceive(segment, buffer);
1924 segmentAction = _Receive(segment, buffer);
1929 if (segmentAction & IMMEDIATE_ACKNOWLEDGE)
1931 else if (segmentAction & ACKNOWLEDGE)
1934 if (segmentAction & SEND_QUEUED)
1942 segmentAction |= DELETED_ENDPOINT;
1945 return segmentAction;

Completed in 79 milliseconds