Searched refs:sentBy (Results 1 – 4 of 4) sorted by relevance
89 protected HostPort sentBy; field in Via148 return sentBy; in getSentBy()157 HopImpl hop = new HopImpl(sentBy.getHost().getHostname(), in getHop()158 sentBy.getPort(),sentProtocol.getTransport()); in getHop()199 sentBy.removePort(); in removePort()221 if (sentBy == null) { in setHost()222 sentBy = new HostPort(); in setHost()224 sentBy.setHost(host); in setHost()240 sentBy = s; in setSentBy()262 sentBy.encode(buffer); in encodeBody()[all …]
65 private String sentBy; field in MessageProcessor236 public void setSentBy(String sentBy) throws ParseException { in setSentBy() argument238 int ind = sentBy.indexOf(":"); in setSentBy()241 this.sentByHostPort.setHost(new Host(sentBy)); in setSentBy()244 this.sentByHostPort.setHost(new Host(sentBy.substring(0, ind))); in setSentBy()245 String portStr = sentBy.substring(ind + 1); in setSentBy()254 this.sentBy = sentBy; in setSentBy()263 if ( this.sentBy == null && this.sentByHostPort != null) { in getSentBy()264 this.sentBy = this.sentByHostPort.toString(); in getSentBy()266 return this.sentBy; in getSentBy()
201 public void setSentBy(String sentBy) throws ParseException { in setSentBy() argument202 this.messageProcessor.setSentBy(sentBy); in setSentBy()
20 void setSentBy(String sentBy) throws ParseException; in setSentBy() argument