mosquitto/lib/read_handle.h

43 lines
1.3 KiB
C
Raw Permalink Normal View History

2014-05-07 22:27:00 +00:00
/*
Copyright (c) 2010-2020 Roger Light <roger@atchoo.org>
2014-05-07 22:27:00 +00:00
All rights reserved. This program and the accompanying materials
2020-11-25 17:34:21 +00:00
are made available under the terms of the Eclipse Public License 2.0
2014-05-07 22:27:00 +00:00
and Eclipse Distribution License v1.0 which accompany this distribution.
2021-10-05 14:20:37 +00:00
2014-05-07 22:27:00 +00:00
The Eclipse Public License is available at
2020-11-25 17:34:21 +00:00
https://www.eclipse.org/legal/epl-2.0/
2014-05-07 22:27:00 +00:00
and the Eclipse Distribution License is available at
http://www.eclipse.org/org/documents/edl-v10.php.
2021-10-05 14:20:37 +00:00
SPDX-License-Identifier: EPL-2.0 OR BSD-3-Clause
2020-12-01 18:21:59 +00:00
2014-05-07 22:27:00 +00:00
Contributors:
Roger Light - initial implementation and documentation.
*/
#ifndef READ_HANDLE_H
#define READ_HANDLE_H
2014-05-07 22:27:00 +00:00
2015-04-29 20:37:47 +00:00
#include "mosquitto.h"
2014-05-07 22:27:00 +00:00
struct mosquitto_db;
2015-05-16 17:43:06 +00:00
int handle__pingreq(struct mosquitto *mosq);
int handle__pingresp(struct mosquitto *mosq);
#ifdef WITH_BROKER
int handle__pubackcomp(struct mosquitto *mosq, const char *type);
#else
2015-05-18 08:29:22 +00:00
int handle__packet(struct mosquitto *mosq);
2015-05-16 17:43:06 +00:00
int handle__connack(struct mosquitto *mosq);
2018-11-22 18:13:18 +00:00
int handle__disconnect(struct mosquitto *mosq);
2015-05-16 17:43:06 +00:00
int handle__pubackcomp(struct mosquitto *mosq, const char *type);
int handle__publish(struct mosquitto *mosq);
2018-10-25 11:44:41 +00:00
int handle__auth(struct mosquitto *mosq);
#endif
int handle__pubrec(struct mosquitto *mosq);
int handle__pubrel(struct mosquitto *mosq);
2015-05-16 17:43:06 +00:00
int handle__suback(struct mosquitto *mosq);
int handle__unsuback(struct mosquitto *mosq);
2014-05-07 22:27:00 +00:00
#endif