Exemple #1
0
net_serial_t net_serial_loop(net_serial_t net)
{
  xht_walk(net->pipes, _walkflush, NULL);
  return net;
}
Exemple #2
0
net_tcp4_t net_tcp4_loop(net_tcp4_t net)
{
  net_tcp4_accept(net);
  xht_walk(net->pipes, _walkflush, NULL);
  return net;
}