Searched refs:trapSocket (Results 1 - 1 of 1) sorted by relevance

/openjdk7/jdk/src/share/classes/com/sun/jmx/snmp/daemon/
H A DSnmpAdaptorServer.java199 transient DatagramSocket trapSocket = null; field in class:SnmpAdaptorServer
2163 * Send the specified message on trapSocket.
2178 trapSocket.send(packet) ;
2189 * Open trapSocket if it's not already done.
2192 if (trapSocket == null) {
2193 trapSocket = new DatagramSocket(0, address) ;
2197 trapSocket.getLocalPort() + " to send traps");
2203 * Close trapSocket if the SNMP protocol adaptor is not ONLINE.
2206 if ((trapSocket != null) && (state != ONLINE)) {
2207 trapSocket
[all...]

Completed in 262 milliseconds