HomeSort by relevance Sort by last modified time
    Searched refs:HostPort (Results 1 - 18 of 18) sorted by null

  /external/nist-sip/java/gov/nist/core/
HostPort.java 42 public final class HostPort extends GenericObject {
59 public HostPort() {
66 * Encode this hostport into its string representation.
91 HostPort that = (HostPort) other;
153 port = ((HostPort) mergeObject).port;
157 HostPort retval = (HostPort) super.clone();
HostNameParser.java 261 public HostPort hostPort( boolean allowWS ) throws ParseException {
263 dbg_enter("hostPort");
266 HostPort hp = new HostPort();
315 dbg_leave("hostPort");
334 HostPort hp = hnp.hostPort(true);
  /external/nist-sip/java/gov/nist/javax/sip/address/
Authority.java 46 /** hostport field
48 protected HostPort hostPort;
66 hostPort.encode(buffer);
68 hostPort.encode(buffer);
84 if (!this.hostPort.equals(otherAuth.hostPort)) {
96 * get the hostPort member.
97 * @return HostPort
99 public HostPort getHostPort()
    [all...]
AddressImpl.java 101 *@return host:port in a HostPort structure.
103 public HostPort getHostPort() {
SipUri.java 400 public HostPort getHostPort() {
414 HostPort hp = this.getHostPort();
700 /** Set the hostPort field of the imbedded authority field.
701 *@param hostPort is the hostPort to set.
703 public void setHostPort(HostPort hostPort) {
707 authority.setHostPort(hostPort);
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/stack/
MessageProcessor.java 29 import gov.nist.core.HostPort;
67 private HostPort sentByHostPort;
134 this.sentByHostPort = new HostPort();
240 this.sentByHostPort = new HostPort();
243 this.sentByHostPort = new HostPort();
284 public abstract MessageChannel createMessageChannel(HostPort targetHostPort)
MessageChannel.java 33 import gov.nist.core.HostPort;
279 public static String getKey(HostPort hostPort, String transport) {
280 return (transport + ":" + hostPort.getHost().getHostname() + ":" + hostPort.getPort())
285 * Get the hostport structure of this message channel.
287 public HostPort getHostPort() {
288 HostPort retval = new HostPort();
297 * @return a HostPort structure for the peer
    [all...]
TLSMessageProcessor.java 43 import gov.nist.core.HostPort;
230 public synchronized MessageChannel createMessageChannel(HostPort targetHostPort)
TCPMessageProcessor.java 214 public synchronized MessageChannel createMessageChannel(HostPort targetHostPort)
UDPMessageProcessor.java 309 public MessageChannel createMessageChannel(HostPort targetHostPort)
SIPTransactionStack.java 29 import gov.nist.core.HostPort;
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/header/
Via.java 32 import gov.nist.core.HostPort;
89 protected HostPort sentBy;
147 public HostPort getSentBy() {
222 sentBy = new HostPort();
237 * @param s HostPort to set.
239 public void setSentBy(HostPort s) {
283 sentBy = new HostPort();
322 sentBy = new HostPort();
538 retval.sentBy = (HostPort) this.sentBy.clone();
ReplyTo.java 99 * Conveniance accessor function to get the hostPort field from the address
100 * @return HostPort
102 public HostPort getHostPort() {
From.java 31 import gov.nist.core.HostPort;
96 * Conveniance accessor function to get the hostPort field from the address.
99 * @return hostport field
101 public HostPort getHostPort() {
To.java 31 import gov.nist.core.HostPort;
112 * Conveniance accessor function to get the hostPort field from the address.
115 * @return hostport field
117 public HostPort getHostPort() {
  /external/nist-sip/java/gov/nist/javax/sip/
ListeningPointImpl.java 38 import gov.nist.core.HostPort;
248 HostPort targetHostPort = new HostPort();
  /external/nist-sip/java/gov/nist/javax/sip/parser/
URLParser.java 28 import gov.nist.core.HostPort;
318 HostPort hp = hnp.hostPort( false );
633 // name@hostPort
644 HostPort hp = hnp.hostPort( false );
ViaParser.java 86 HostPort hostPort = hnp.hostPort( true );
87 v.setSentBy(hostPort);

Completed in 242 milliseconds