mosquitto/lib/handle_disconnect.c

73 lines
1.6 KiB
C
Raw Normal View History

2018-11-22 19:13:18 +01:00
/*
2021-11-03 23:08:24 +01:00
Copyright (c) 2009-2021 Roger Light <roger@atchoo.org>
2018-11-22 19:13:18 +01:00
All rights reserved. This program and the accompanying materials
2020-11-25 18:34:21 +01:00
are made available under the terms of the Eclipse Public License 2.0
2018-11-22 19:13:18 +01:00
and Eclipse Distribution License v1.0 which accompany this distribution.
The Eclipse Public License is available at
2020-11-25 18:34:21 +01:00
https://www.eclipse.org/legal/epl-2.0/
2018-11-22 19:13:18 +01:00
and the Eclipse Distribution License is available at
http://www.eclipse.org/org/documents/edl-v10.php.
SPDX-License-Identifier: EPL-2.0 OR BSD-3-Clause
2020-12-01 19:21:59 +01:00
2018-11-22 19:13:18 +01:00
Contributors:
Roger Light - initial implementation and documentation.
*/
#include "config.h"
#include <stdio.h>
#include <string.h>
#include "logging_mosq.h"
2023-12-23 13:59:58 +01:00
#include "mosquitto/mqtt_protocol.h"
2018-11-22 19:13:18 +01:00
#include "net_mosq.h"
#include "packet_mosq.h"
#include "property_mosq.h"
2021-03-21 10:17:53 +01:00
#include "read_handle.h"
2018-11-22 19:13:18 +01:00
#include "send_mosq.h"
#include "util_mosq.h"
2018-11-22 19:13:18 +01:00
int handle__disconnect(struct mosquitto *mosq)
{
int rc;
uint8_t reason_code;
mosquitto_property *properties = NULL;
if(!mosq){
return MOSQ_ERR_INVAL;
}
if(mosq->protocol != mosq_p_mqtt5){
return MOSQ_ERR_PROTOCOL;
}
if(mosq->in_packet.command != CMD_DISCONNECT){
return MOSQ_ERR_MALFORMED_PACKET;
}
2018-11-22 19:13:18 +01:00
rc = packet__read_byte(&mosq->in_packet, &reason_code);
if(rc){
return rc;
}
2018-11-22 19:13:18 +01:00
if(mosq->in_packet.remaining_length > 2){
2018-11-22 19:13:18 +01:00
rc = property__read_all(CMD_DISCONNECT, &mosq->in_packet, &properties);
if(rc){
return rc;
}
2018-11-22 19:13:18 +01:00
mosquitto_property_free_all(&properties);
}
log__printf(mosq, MOSQ_LOG_DEBUG, "Received DISCONNECT (%d)", reason_code);
do_client_disconnect(mosq, reason_code, properties);
mosquitto_property_free_all(&properties);
return MOSQ_ERR_SUCCESS;
}