/// <summary>
        /// This processes the del_dl event.
        /// </summary>
        /// <param name="pdu">Protocol Data Unit</param>
        public override void Process(del_dl pdu)
        {
            SmppEventArgs ea = new SmppEventArgs(session_, pdu, new del_dl_resp(pdu.SequenceNumber));

            if (!session_.FireEvent(EventType.DelDl, ea))
            {
                ea.ResponsePDU.Status = StatusCodes.ESME_RDELDLFAIL;
            }
            session_.SendPdu(ea.ResponsePDU);
        }
Esempio n. 2
0
 /// <summary>
 /// This processes the del_dl event.
 /// </summary>
 /// <param name="pdu">Protocol Data Unit</param>
 public override void Process(del_dl pdu)
 {
     tx_.Process(pdu);
 }
Esempio n. 3
0
 /// <summary>
 /// This processes the del_dl PDU
 /// </summary>
 /// <param name="pdu">Protocol Data Unit being processed</param>
 public virtual void Process(del_dl pdu)
 {
     throw new InvalidSmppStateException("Session is not in the proper state for a del_dl operation.");
 }