Home | History | Annotate | Download | only in address

Lines Matching refs:TTL

186             // transport, user, ttl or method must match when present in either
463 *remove the ttl value from the parameter list if it exists.
467 uriParms.delete(TTL);
816 /** Returns the value of the "ttl" parameter, or -1 if this is not set.
817 * This method is equivalent to getParameter("ttl").
819 * @return the value of the <code>ttl</code> parameter
822 Integer ttl = (Integer) uriParms.getValue("ttl");
823 if (ttl != null)
824 return ttl.intValue();
947 if (name.equalsIgnoreCase("ttl")) {
969 /** Sets the value of the <code>ttl</code> parameter. The ttl parameter
971 * multicast. This is equivalent to setParameter("ttl", ttl).
973 * @param ttl - new value of the <code>ttl</code> parameter
975 public void setTTLParam(int ttl) {
976 if (ttl <= 0)
977 throw new IllegalArgumentException("Bad ttl value");
979 NameValue nv = new NameValue("ttl", Integer.valueOf(ttl));