You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If you have considered using ofp_epoll or ofp_select() to determine if a descriptor is writable.... it will not work. Current OFP version does not support this functionality.
ofp_send() do return the number of bytes sent or -1 on error. However, even if the bytes are reported as 'sent', OFP may store them (a small number of packets, store per thread) to favor burst sending. The size of the burst is configurable (default 1).
Application can force the sending of the stored packets with ofp_send_pending_pkt().
Before I call ofp_send, how do I determine whether the current descriptor is writable and how do I confirm that the data packet is sent?
The text was updated successfully, but these errors were encountered: