Home | History | Annotate | Download | only in qemud

Lines Matching defs:Receiver

687 /** PACKET RECEIVER
705 } Receiver;
707 /* post a packet to a receiver. Note that this transfers
708 * ownership of the packet to the receiver.
711 receiver_post( Receiver* r, Packet* p )
719 /* tell a receiver the packet source was closed.
721 * receiver.
724 receiver_close( Receiver* r )
736 ** these are smart listeners that send incoming packets to a receiver
752 Receiver receiver[1];
814 * this *will* notify the receiver that the file descriptor
823 /* notify receiver */
824 receiver_close(f->receiver);
857 * call the receiver's close.
859 f->receiver->close = NULL;
902 * the receiver to avoid packet loss.
915 receiver_post( f->receiver, p );
953 Receiver* receiver )
959 f->receiver[0] = receiver[0];
974 * the convention used here is that the receiver will receive a
981 /* this is an accept - send a dummy packet to the receiver */
993 receiver_post( f->receiver, p );
1006 * server socket. The receiver must expect the new connection
1012 Receiver* receiver )
1018 f->receiver[0] = receiver[0];
1053 * the resulting messages as a packet to a generic receiver.
1060 Receiver receiver[1]; /* send payload there */
1087 * After that, the payload is sent to the receiver once completed.
1144 receiver_post( s->receiver, inp );
1186 Receiver* receiver )
1188 Receiver recv;
1194 s->receiver[0] = receiver[0];
1388 Receiver recv;
1616 Receiver recv;