Uses of Class
org.snmp4j.smi.UdpAddress
Packages that use UdpAddress
Package
Description
Provides classes for the representation of SMIv1/v2 data types (which also
includes some basic ASN.1 primitive data types).
Provides transport protocol mappings for SNMP.
-
Uses of UdpAddress in org.snmp4j.fluent
Methods in org.snmp4j.fluent with parameters of type UdpAddressModifier and TypeMethodDescriptionSnmpBuilder.udp(UdpAddress... listenAddresses)
Adds a set of UDP transport mappings (DefaultUdpTransportMapping
) with the specified local listen addresses -
Uses of UdpAddress in org.snmp4j.smi
Subclasses of UdpAddress in org.snmp4j.smiModifier and TypeClassDescriptionclass
TheTlsAddress
represents a TLS transport addresses as defined by RFC 5953 SnmpTSLAddress textual convention.Constructors in org.snmp4j.smi with parameters of type UdpAddress -
Uses of UdpAddress in org.snmp4j.transport
Fields in org.snmp4j.transport declared as UdpAddressMethods in org.snmp4j.transport that return UdpAddressModifier and TypeMethodDescriptionUdpTransportMapping.getAddress()
Returns the transport address that is configured for this transport mapping for sending and receiving messages.DefaultUdpTransportMapping.getListenAddress()
DTLSTM.getListenAddress()
UdpTransportMapping.getListenAddress()
Methods in org.snmp4j.transport with parameters of type UdpAddressModifier and TypeMethodDescriptionboolean
DTLSTM.close(UdpAddress remoteAddress)
Closes a connection to the supplied remote address, if it is open.protected List<DatagramPacket>
DefaultUdpTransportMapping.prepareOutPackets(UdpAddress targetAddress, byte[] message, TransportStateReference tmStateReference, DatagramSocket socket, long timeoutMillis, int maxRetries)
Prepare an application message for sending over the network to the specified target address.protected List<DatagramPacket>
DTLSTM.prepareOutPackets(UdpAddress targetAddress, byte[] message, TransportStateReference tmStateReference, DatagramSocket socket, long timeoutMillis, int maxRetries)
void
DefaultUdpTransportMapping.sendMessage(UdpAddress targetAddress, byte[] message, TransportStateReference tmStateReference, long timeoutMillis, int maxRetries)
abstract void
UdpTransportMapping.sendMessage(UdpAddress address, byte[] message, TransportStateReference tmStateReference, long timeoutMillis, int maxRetries)
Constructors in org.snmp4j.transport with parameters of type UdpAddressModifierConstructorDescriptionDefaultUdpTransportMapping(UdpAddress udpAddress)
Creates a UDP transport on the specified address.DefaultUdpTransportMapping(UdpAddress udpAddress, boolean reuseAddress)
Creates a UDP transport with optional reusing the address if is currently in timeout state (TIME_WAIT) after the connection is closed.UdpTransportMapping(UdpAddress udpAddress)