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

@@ -2,7 +2,7 @@ package pdu
type (
CANCEL_SM struct {
header PDU_HEADER
header *PDU_HEADER
service_type string
message_id string
source_addr_ton byte
@@ -13,6 +13,6 @@ type (
destination_addr string
}
CANCEL_SM_RESP struct {
header PDU_HEADER
header *PDU_HEADER
}
)