Results 1 to 1 of 1
I'm trying to understand how tcp works
I'm interested in detection of packet lose and their retransmissions
while looking tcp_sock structure I've found some data which can't
understand
struct sk_buff* ...
Enjoy an ad free experience by logging in. Not a member yet? Register.
- 10-26-2006 #1Just Joined!
- Join Date
- Oct 2006
- Posts
- 1
Understanding TCP algorithms
I'm trying to understand how tcp works
I'm interested in detection of packet lose and their retransmissions
while looking tcp_sock structure I've found some data which can't
understand
struct sk_buff* lost_skb_hint;
struct sk_buff *scoreboard_skb_hint;
struct sk_buff *retransmit_skb_hint;
struct sk_buff *forward_skb_hint;
struct sk_buff *fastpath_skb_hint;
I guess that they are pointers in packet queue on sender host
but what are they physically represent?


Reply With Quote
