Home | History | Annotate | Download | only in stack

Lines Matching refs:port

55     protected int port;
65 return host + ":" + port + "/" + transport;
69 * Create new hop given host, port and transport.
71 * @param portNumber port
83 port = portNumber;
90 * @param hop is a hop string in the form of host:port/Transport
114 port = Integer.parseInt(portstr);
116 throw new IllegalArgumentException("Bad port spec");
122 this.port = transport.equalsIgnoreCase("TLS") ? 5061 : 5060;
126 this.port = 5060;
159 * Returns the port.
160 * @return port integer.
163 return port;