HomeSort by relevance Sort by last modified time
    Searched defs:via (Results 1 - 11 of 11) sorted by null

  /external/nist-sip/java/gov/nist/javax/sip/stack/
DefaultRouter.java 295 ViaHeader via = (ViaHeader) request.getHeader(ViaHeader.NAME); local
296 transport = via.getTransport();
MessageProcessor.java 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(); local
168 via.setSentBy(sentByHostPort)
    [all...]
SIPDialog.java 57 import gov.nist.javax.sip.header.Via;
1926 Via via = lp.getViaHeader(); local
2044 Via via = ((SIPClientTransaction) clientTransactionId).getOutgoingViaHeader(); local
2459 Via via = this.lastResponse.getTopmostVia(); local
    [all...]
SIPServerTransaction.java 36 import gov.nist.javax.sip.header.Via;
408 // The server transport uses the value of the top Via header field
429 Via via = transactionResponse.getTopmostVia(); local
430 String transport = via.getTransport();
434 int port = via.getRPort();
436 port = via.getPort();
444 // Otherwise, if the Via header field value contains a
454 if (via.getMAddr() != null) {
455 host = via.getMAddr()
    [all...]
SIPTransactionStack.java 44 import gov.nist.javax.sip.header.Via;
910 Via via = sipMessage.getTopmostVia(); local
911 if (via.getBranch() != null) {
936 Via via = sipMessage.getTopmostVia(); local
937 if (via.getBranch() != null) {
    [all...]
  /external/iproute2/ip/
iproute.c 67 fprintf(stderr, "NH := [ via ADDRESS ] [ dev STRING ] [ weight NUMBER ] NHFLAGS\n");
128 inet_prefix via; local
220 memset(&via, 0, sizeof(via));
221 via.family = r->rtm_family;
223 memcpy(&via.data, RTA_DATA(tb[RTA_GATEWAY]), host_len/8);
244 if (filter.rvia.family && inet_addr_match(&via, &filter.rvia, filter.rvia.bitlen))
343 fprintf(fp, "via %s ",
546 fprintf(fp, " via %s ",
595 if (strcmp(*argv, "via") == 0)
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/
SipProviderImpl.java 35 import gov.nist.javax.sip.header.Via;
288 // Be kind and assign a via header for this provider if the user is
293 Via via = lp.getViaHeader(); local
294 request.setHeader(via);
304 * User decided to give us his own via header branch. Lets see if it
387 Via topmostVia = sipRequest.getTopmostVia();
686 // Check if we have a valid via.
689 throw new SipException("Invalid SipRequest -- no via header!");
693 * JvB: Via branch should already be OK, dont touch it here? Som
698 Via via = sipRequest.getTopmostVia(); local
744 Via via = sipResponse.getTopmostVia(); local
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/message/
SIPRequest.java 212 * the contact headers. (2) Request must have cseq, to and from and via headers. (3) Method in
246 throw new ParseException("No via header in request! ", 0);
767 * constructed by a client MUST have only a single Via header field value matching the top
768 * Via value in the request being cancelled. Using the same values for these header fields
868 // The ACK MUST contain a single Via header field
992 Via via = (Via) (((ViaList) nextHeader).getFirst().clone()); local
1075 Via via = (Via) this.getViaHeaders().getFirst(); local
1086 Via via = (Via) this.getViaHeaders().getFirst(); local
    [all...]
SIPMessage.java 67 import gov.nist.javax.sip.header.Via;
413 // in the topmost Via header
816 * @return A string containing the concatenation of various portions of the From,To,Via and
821 * Ledgard of IPera for generating transactionIDs when no port is present in the via
830 Via topVia = null;
832 topVia = (Via) this.getViaHeaders().getFirst();
1014 Via via = (Via) it.next(); local
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/header/
HeaderFactoryImpl.java 70 * This splits up via headers into multiple lines for readability ( better for
1076 Via via = new Via(); local
    [all...]
  /external/zxing/core/
core.jar 

Completed in 255 milliseconds