@@ -127,26 +127,34 @@ process_iq(_, Acc, From, To, El) ->
127
127
To :: jid :jid (),
128
128
Acc :: mongoose_acc :t (),
129
129
IQ :: jlib :iq ()) -> mongoose_acc :t ().
130
- process_iq_reply (From , To , Acc , # iq {id = ID } = IQ ) ->
130
+ process_iq_reply (From , To , Acc , # iq {type = Type , id = ID } = IQ ) ->
131
131
case get_iq_callback_in_cluster (ID , Acc ) of
132
132
{ok , Callback } ->
133
133
Callback (From , To , Acc , IQ );
134
- _ ->
134
+ Other ->
135
+ % % 8.2.3. IQ Semantics (https://www.rfc-editor.org/rfc/rfc6120)
136
+ % % An entity that receives a stanza of type "result" or "error" MUST
137
+ % % NOT respond to the stanza by sending a further IQ response of
138
+ % % type "result" or "error".
139
+ % % (Do not reply).
140
+ ? LOG_INFO (#{what => dropped_iq_reply ,
141
+ text => <<" User send an unexpected IQ "
142
+ " type=" , (atom_to_binary (Type ))/binary ,
143
+ " . Ignore the stanza." >>,
144
+ reason => Other , acc => Acc }),
135
145
Acc
136
146
end .
137
147
138
148
-spec get_iq_callback_in_cluster (id (), mongoose_acc :t ()) ->
139
149
{ok , callback ()} | {error , term ()}.
140
- get_iq_callback_in_cluster (ID , Acc ) ->
150
+ get_iq_callback_in_cluster (ID , _Acc ) ->
141
151
% % We store information from which node the request is originating in the ID
142
152
case parse_iq_id (ID ) of
143
153
local_node ->
144
154
get_iq_callback (ID );
145
155
{remote_node , NodeName } ->
146
156
rpc :call (NodeName , ? MODULE , get_iq_callback , [ID ]);
147
157
{error , Reason } ->
148
- ? LOG_ERROR (#{what => parse_iq_id_failed ,
149
- reason => Reason , acc => Acc }),
150
158
{error , Reason }
151
159
end .
152
160
0 commit comments