Package org.cipango.server.log

Examples of org.cipango.server.log.AccessLog


    // could not use request.createResponse() because the request is committed.
    SipResponse responseB = new SipResponse(_request, SipServletResponse.SC_REQUEST_TIMEOUT, null);
    if (responseB.getTo().getParameter(SipParams.TAG) == null)
      responseB.setToTag(ID.newTag());
   
    AccessLog accessLog = getServer().getConnectorManager().getAccessLog();
    if (accessLog != null)
      accessLog.messageReceived(responseB, new TimeoutConnection());
   
    return responseB;
  }
View Full Code Here

TOP

Related Classes of org.cipango.server.log.AccessLog

Copyright © 2018 www.massapicom. 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.