I am acquainting with BSD sockets, and flicking through the man page of sendto
, I bumped into MSG_CONFIRM
flag, which is quite mysterious to me at the moment.
The description says:
Tell the link layer that forward progress happened: you got a
successful reply from the other side. If the link layer doesn't get
this it will regularly reprobe the neighbor (e.g., via a unicast ARP).
Only valid on SOCK_DGRAM and SOCK_RAW sockets and currently
implemented only for IPv4 and IPv6.
After a quick look at the man page of arp
, I understand that flagging something MSG_CONFIRM
prevents the ARP mapping MAC address ? IP address of the remote machine from being considered stale.
Now I am puzzled because I?can’t see any reason why I should not put it, and therefore, why didn’t they enforce that directly in the library. Why is the application layer expected to deal with anything that happens down there at the link layer.
So did I?miss anything? when should I?set it, or not set it?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…