Refactor pdus into many files

This commit is contained in:
PhatPhuckDave
2024-07-22 20:35:53 +02:00
parent 3d977b5657
commit 21e2e17f27
12 changed files with 343 additions and 298 deletions

12
pdu/deliver.go Normal file
View File

@@ -0,0 +1,12 @@
package pdu
type (
DELIVER_SM struct {
PDU_HEADER
SUBMIT_SM
}
DELIVER_SM_RESP struct {
PDU_HEADER
SUBMIT_SM_RESP
}
)