-
Notifications
You must be signed in to change notification settings - Fork 22
New issue
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
makeTransition: DeliverSmID and not DeliverSmRespID for sending from SMSC #11
base: master
Are you sure you want to change the base?
Conversation
…SMSC (StateBoundTRx)
|
@@ -510,7 +510,7 @@ func (sess *Session) makeTransition(ID pdu.CommandID, received bool) error { | |||
switch ID { | |||
case pdu.UnbindID: | |||
return sess.setState(StateUnbinding) | |||
case pdu.SubmitSmRespID, pdu.SubmitMultiRespID, pdu.DataSmID, pdu.DataSmRespID, pdu.DeliverSmRespID, | |||
case pdu.SubmitSmRespID, pdu.SubmitMultiRespID, pdu.DataSmID, pdu.DataSmRespID, pdu.DeliverSmID, | |||
pdu.QuerySmRespID, pdu.CancelSmRespID, pdu.AlertNotificationID, pdu.ReplaceSmRespID, pdu.EnquireLinkID, pdu.EnquireLinkRespID, | |||
pdu.GenericNackID: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can anybody help how to trigger deliversm towards client
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
+1 @ajankovic
@@ -510,7 +510,7 @@ func (sess *Session) makeTransition(ID pdu.CommandID, received bool) error { | |||
switch ID { | |||
case pdu.UnbindID: | |||
return sess.setState(StateUnbinding) | |||
case pdu.SubmitSmRespID, pdu.SubmitMultiRespID, pdu.DataSmID, pdu.DataSmRespID, pdu.DeliverSmRespID, | |||
case pdu.SubmitSmRespID, pdu.SubmitMultiRespID, pdu.DataSmID, pdu.DataSmRespID, pdu.DeliverSmID, | |||
pdu.QuerySmRespID, pdu.CancelSmRespID, pdu.AlertNotificationID, pdu.ReplaceSmRespID, pdu.EnquireLinkID, pdu.EnquireLinkRespID, | |||
pdu.GenericNackID: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
+1 @ajankovic
Fixes #10