NAME

AnyEvent::Handle::UDP - client/server UDP handles for AnyEvent

VERSION

version 0.033

DESCRIPTION

This module is an abstraction around UDP sockets for use with AnyEvent.

ATTRIBUTES

on_recv

The callback for when a package arrives. It takes three arguments: the datagram, the handle and the address the datagram was received from.

on_error

The callback for when an error occurs. It takes three arguments: the handle, a boolean indicating the error is fatal or not, and the error message.

on_drain

This sets the callback that is called when the send buffer becomes empty. The callback takes the handle as its only argument.

autoflush

Always attempt to send data to the operating system immediately, without waiting for the loop to indicate the filehandle is write-ready.

receive_size

The buffer size for the receiving in bytes. It defaults to 1500, which is slightly more than the MTA on ethernet.

family

Sets the socket family. The default is 0, which means either IPv4 or IPv6. The values 4 and 6 mean IPv4 and IPv6 respectively.

fh

The underlying filehandle.

METHODS

new

Create a new UDP handle. As arguments it accepts any attribute, as well as these two:

  • connect

    Set the address to which datagrams are sent by default, and the only address from which datagrams are received. It must be either a packed sockaddr struct or an arrayref containing a hostname and a portnumber.

  • bind

    The address to bind the socket to. It must be either a packed sockaddr struct or an arrayref containing a hostname and a portnumber.

All are optional, though using either connect or bind (or both) is strongly recommended unless you give it a connected/bound fh.

bind_to($address)

Bind to the specified addres. Note that a bound socket may be rebound to another address. $address must be in the same form as the bind argument to new.

connect_to($address)

Connect to the specified address. Note that a connected socket may be reconnected to another address. $address must be in the same form as the connect argument to new.

push_send($message, $to = undef, $cv = AnyEvent::CondVar->new)

Try to send a message. If a socket is not connected a receptient address must also be given. If it is connected giving a receptient may not work as expected, depending on your platform. It returns $cv, which will become true when $message is sent.

destroy

Destroy the handle.

BACKWARDS COMPATIBILITY

This module is not backwards compatible in any way with the previous module of the same name by Jan Henning Thorsen. That module was broken by AnyEvent itself and now considered defunct.

AUTHOR

Leon Timmermans <leont@cpan.org>

COPYRIGHT AND LICENSE

This software is copyright (c) 2011 by Leon Timmermans.

This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.