We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hello,
How could I send a generic_nack PDU to SMS-C when my ESME receive an unsupported PDU ? Here is the handler that I provide to my Transceiver :
Transceiver
func handle(p pdu.Body) { switch p.Header().ID { case pdu.DeliverSMID: logger.Infof("Received DeliverSM PDU") case pdu.UnbindID: logger.Infof("Received Unbind PDU from SMS-C... shutting down !") stopGracefully() default: nack := pdu.NewGenericNACK() // TODO: send nack ... but how ? logger.Errorf("Received unknown pdu: %+v", p) } }
Any idea ?
Thanks ! Emmanuel
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hello,
How could I send a generic_nack PDU to SMS-C when my ESME receive an unsupported PDU ?
Here is the handler that I provide to my
Transceiver
:Any idea ?
Thanks !
Emmanuel
The text was updated successfully, but these errors were encountered: