Home | History | Annotate | Download | only in sip

Lines Matching refs:transport

1062 			int port, String transport) throws TransportNotSupportedException,
1067 + port + " transport = " + transport);
1072 if (transport == null)
1073 throw new NullPointerException("null transport");
1077 if (!transport.equalsIgnoreCase("UDP")
1078 && !transport.equalsIgnoreCase("TLS")
1079 && !transport.equalsIgnoreCase("TCP")
1080 && !transport.equalsIgnoreCase("SCTP"))
1081 throw new TransportNotSupportedException("bad transport "
1082 + transport);
1090 String key = ListeningPointImpl.makeKey(address, port, transport);
1099 .createMessageProcessor(inetAddr, port, transport);
1103 + " port = " + port + " transport = "
1104 + transport);
1106 lip = new ListeningPointImpl(this, port, transport);
1117 + port + " transport = " + transport);
1259 public ListeningPoint createListeningPoint(int port, String transport)
1264 return this.createListeningPoint(super.stackAddress, port, transport);