Home | History | Annotate | Download | only in stack

Lines Matching refs:hop

49 import javax.sip.address.Hop;
196 * @param hop hop to send it to.
199 public void sendMessage(SIPMessage sipMessage, Hop hop) throws IOException {
201 InetAddress hopAddr = InetAddress.getByName(hop.getHost());
207 && messageProcessor.getPort() == hop.getPort()
208 && messageProcessor.getTransport().equals(hop.getTransport())) {
210 hopAddr, hop.getPort());
222 this.sendMessage(msg, hopAddr, hop.getPort(), sipMessage instanceof SIPRequest);
235 logMessage(sipMessage, hopAddr, hop.getPort(), time);