From 553537a2c9f08450614648d7184b6bbf212d5ed5 Mon Sep 17 00:00:00 2001 From: xengineering Date: Thu, 6 Jul 2023 21:21:33 +0200 Subject: Use different IQ struct for RX and TX It is quite tricky to write structs with correct XML struct tags which are suitable for RX and TX because in RX structs all possible fields have to be addressed and in TX some have to be hidden depending on the use case. --- xmpp/routing.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'xmpp/routing.go') diff --git a/xmpp/routing.go b/xmpp/routing.go index df45451..4058dfb 100644 --- a/xmpp/routing.go +++ b/xmpp/routing.go @@ -12,7 +12,7 @@ func route(s *xml.StartElement, d *xml.Decoder, c chan<- any) { case xml.Name{`urn:ietf:params:xml:ns:xmpp-sasl`, `success`}: parse(saslSuccess{}, s, d, c) case xml.Name{`jabber:client`, `iq`}: - parse(iq{}, s, d, c) + parse(iqRx{}, s, d, c) case xml.Name{`jabber:client`, `message`}: parse(message{}, s, d, c) default: @@ -35,8 +35,8 @@ func handle(s *session, element any) { handleStreamFeatures(s, t) case saslSuccess: handleSaslSuccess(s) - case iq: - handleIq(s, t) + case iqRx: + t.handle(s) case message: handleMessage(s, t) default: -- cgit v1.2.3-70-g09d2