Home | History | Annotate | Download | only in stack

Lines Matching refs:via

32 import gov.nist.javax.sip.header.Via;
63 * My Sent by string ( which I use to set the outgoing via header)
159 * Get the Via header to assign for this message processor. The topmost via
162 * @return the ViaHeader to be used by the messages sent via this message processor.
164 public Via getViaHeader() {
166 Via via = new Via();
168 via.setSentBy(sentByHostPort);
169 via.setTransport(this.getTransport());
173 via.setHost(host);
174 via.setPort(this.getPort());
175 via.setTransport(this.getTransport());
177 return via;