520521522523524525526527528
* @throws java.io.IOException * If an I/O error occurs writing the response packet to the * network connection. */ public void ackDeliverSm(DeliverSM rq) throws java.io.IOException { DeliverSMResp rsp = new DeliverSMResp(rq); sendResponse(rsp); LOGGER.info("deliver_sm_resp sent."); }
511512513514515516517518519
136137138139140141142143144145146
case SMPPPacket.DELIVER_SM: response = new DeliverSM(); break; case SMPPPacket.DELIVER_SM_RESP: response = new DeliverSMResp(); break; case SMPPPacket.QUERY_SM: response = new QuerySM(); break;