Ensure all pdus use pointer to header
All checks were successful
Run Tests / Test (push) Successful in 20s
Benchmark BufferPool / RunBenchmarks (push) Successful in 23s

This commit is contained in:
2024-07-24 19:22:41 +02:00
parent 14c861ccb4
commit 2453d639ff
6 changed files with 13 additions and 13 deletions

View File

@@ -9,7 +9,7 @@ import (
type (
SUBMIT_SM struct {
header PDU_HEADER
header *PDU_HEADER
service_type string
source_addr_ton byte
source_addr_npi byte
@@ -58,7 +58,7 @@ type (
// ussd_service_op byte
}
SUBMIT_SM_RESP struct {
header PDU_HEADER
header *PDU_HEADER
message_id string
}
SUBMIT_MULTI struct{}