From 309947a4316a94f4c5d43c9b39b733cc3bbab459 Mon Sep 17 00:00:00 2001 From: Javier Date: Wed, 16 Dec 2015 02:10:10 +0100 Subject: implement session termination requests --- saprotocol.cc | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'saprotocol.cc') diff --git a/saprotocol.cc b/saprotocol.cc index 94594a1..00c083f 100644 --- a/saprotocol.cc +++ b/saprotocol.cc @@ -392,8 +392,8 @@ SAProtocol::ServiceConnectionResponseFrame SAProtocol::unpackServiceConnectionRe int offset = 0; frame.messageType = read(data, offset); - frame.acceptorId = read(data, offset); - frame.initiatorId = read(data, offset); + frame.acceptorId = read(data, offset); + frame.initiatorId = read(data, offset); int marker = data.indexOf(';', offset); if (marker == -1) { @@ -446,8 +446,8 @@ SAProtocol::ServiceTerminationRequestFrame SAProtocol::unpackServiceTerminationR int offset = 0; frame.messageType = read(data, offset); - frame.acceptorId = read(data, offset); - frame.initiatorId = read(data, offset); + frame.acceptorId = read(data, offset); + frame.initiatorId = read(data, offset); int marker = data.indexOf(';', offset); if (marker == -1) { @@ -480,8 +480,8 @@ SAProtocol::ServiceTerminationResponseFrame SAProtocol::unpackServiceTermination int offset = 0; frame.messageType = read(data, offset); - frame.acceptorId = read(data, offset); - frame.initiatorId = read(data, offset); + frame.acceptorId = read(data, offset); + frame.initiatorId = read(data, offset); int marker = data.indexOf(';', offset); if (marker == -1) { -- cgit v1.2.3