smalltalk
/
osmo-st-smpp
Archived
1
0
Fork 0

conn: libsmpp34 complains about the sequence number 0, start with 1

Mon Jul 14 16:26:04 2014 <0016> smpp_smsc.c:524 [] Error in smpp34_unpack():[command_length:00000029(OK)][command_id:00000009(OK)][command_status:00000000(OK)][sequence_number:00000000(Invalid value)]
This commit is contained in:
Holger Hans Peter Freyther 2014-07-14 16:40:29 +02:00
parent 1f49a50dc5
commit 38fb0d2745
1 changed files with 1 additions and 1 deletions

View File

@ -70,7 +70,7 @@ Osmo.OsmoStreamSocketBase subclass: SMPPConnection [
connect [
super connect.
nextSeq := 0.
nextSeq := 1.
writeQueue := SharedQueue new.
self scheduleBindTrx.
]