public void timeout(GeneralTimer timer) {
SipServletRequestImpl req = this.getRequest();
if(!req.isSentResponse()) {
try {
SipServletResponse resp = req.createResponse(408);
resp.send();
if (_log.isLoggable(Level.FINE)) {
_log.log(Level.FINE, "Sending 408, no action on requesr : "+req.toString());
}
} catch (IOException ex) {
if (_log.isLoggable(Level.FINE)) {