Synopsis
typedef enum {
  CTL_TCP_SEND_PUSH,
  CTL_TCP_SEND_URGENT,
  CTL_TCP_SEND_NOCOPY,
  CTL_TCP_SEND_FREE
} CTL_TCP_SEND_FLAG_t;

See ctl_tcp_send for a full description of the flags.

CTL_TCP_SEND_PUSH
Push buffered data to network.
CTL_TCP_SEND_URGENT
Send out-of-band data. This is not implemented.
CTL_TCP_SEND_NOCOPY
Perform a zero-copy send of static data.
CTL_TCP_SEND_FREE
Perform a zero-copy send of dynamic data.