OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:sentBy
(Results
1 - 2
of
2
) sorted by null
/external/nist-sip/java/gov/nist/javax/sip/header/
Via.java
87
/**
sentBy
field.
89
protected HostPort
sentBy
;
144
* Accessor for the
sentBy
field
145
*@return
SentBy
field
148
return
sentBy
;
157
HopImpl hop = new HopImpl(
sentBy
.getHost().getHostname(),
158
sentBy
.getPort(),sentProtocol.getTransport());
199
sentBy
.removePort();
221
if (
sentBy
== null) {
222
sentBy
= new HostPort()
[
all
...]
/external/nist-sip/java/gov/nist/javax/sip/stack/
MessageProcessor.java
65
private String
sentBy
;
231
* Set the
sentby
string. This is used for stamping outgoing messages sent
234
* @param
sentBy
236
public void setSentBy(String
sentBy
) throws ParseException {
238
int ind =
sentBy
.indexOf(":");
241
this.sentByHostPort.setHost(new Host(
sentBy
));
244
this.sentByHostPort.setHost(new Host(
sentBy
.substring(0, ind)));
245
String portStr =
sentBy
.substring(ind + 1);
254
this.
sentBy
=
sentBy
;
[
all
...]
Completed in 32 milliseconds