Home | History | Annotate | Download | only in sip

Lines Matching refs:transport

60     protected String transport;
88 * @param transport transport
91 public static String makeKey(String host, int port, String transport) {
96 .append(transport)
106 return makeKey(this.getIPAddress(), port, transport);
131 String transport) {
135 this.transport = transport;
141 * started. The transport is set to null.
155 * is dependent on the scheme and transport. For example:
157 * <li>The default port is 5060 if the transport UDP the scheme is <i>sip:</i>.
158 * <li>The default port is 5060 if the transport is TCP the scheme is <i>sip:</i>.
159 * <li>The default port is 5060 if the transport is SCTP the scheme is <i>sip:</i>.
160 * <li>The default port is 5061 if the transport is TLS over TCP the scheme is <i>sip:</i>.
161 * <li>The default port is 5061 if the transport is TCP the scheme is <i>sips:</i>.
171 * Gets transport of the ListeningPoint.
173 * @return transport of ListeningPoint
232 sipURI.setTransportParam(this.transport);