Examples of addQopParam()


Examples of org.zoolu.sip.header.AuthorizationHeader.addQopParam()

      if (nc!=null) ah.addNcParam(nc);
      */

      if (qop!=null)
          {
            ah.addQopParam(qop);
            if (qop.equalsIgnoreCase("auth-int") || qop.equalsIgnoreCase("auth"))
            {
              // qop requires cnonce and nc as per rfc2617
              cnonce=HEX(MD5(Long.toString(System.currentTimeMillis()))); // unique hopefully
              ah.addCnonceParam(cnonce);
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.