Home | History | Annotate | Download | only in header

Lines Matching defs:MADDR

71     /** The "maddr" paramter is designating the multicast address.
73 public static final String MADDR = ParameterNames.MADDR;
448 * Returns the value of the <code>maddr</code> parameter, or null if this
451 * @return the string value of the maddr parameter
454 return getParameter(ParameterNames.MADDR);
458 * Sets the value of the <code>maddr</code> parameter of this ViaHeader. The
459 * maddr parameter indicates the server address to be contacted for this
462 * @param mAddr new value of the <code>maddr</code> parameter
464 * unexpectedly while parsing the mAddr value.
466 public void setMAddr(String mAddr) throws ParseException {
467 if (mAddr == null)
470 + "Via, setMAddr(), the mAddr parameter is null.");
473 host.setAddress(mAddr);
474 NameValue nameValue = new NameValue(ParameterNames.MADDR, host);