Home | History | Annotate | Download | only in message

Lines Matching defs:via

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,
869 Via header
911 * single Via header field, and this MUST be equal to the top Via header field of the
963 * <li>Via header is not included from the original request. </li>
992 Via via = (Via) (((ViaList) nextHeader).getFirst().clone());
993 via.removeParameter("branch");
994 nextHeader = via;
1070 * Get the host from the topmost via header.
1072 * @return the string representation of the host from the topmost via header.
1075 Via via = (Via) this.getViaHeaders().getFirst();
1076 return via.getHost();
1081 * Get the port from the topmost via header.
1083 * @return the port from the topmost via header (5060 if there is no port indicated).
1086 Via via = (Via) this.getViaHeaders().getFirst();
1087 if (via.hasPort())
1088 return via.getPort();