mosquitto/lib/read_handle.h

39 lines
1.2 KiB
C
Raw Normal View History

2014-05-07 22:27:00 +00:00
/*
Copyright (c) 2010-2015 Roger Light <roger@atchoo.org>
2014-05-07 22:27:00 +00:00
All rights reserved. This program and the accompanying materials
are made available under the terms of the Eclipse Public License v1.0
and Eclipse Distribution License v1.0 which accompany this distribution.
The Eclipse Public License is available at
http://www.eclipse.org/legal/epl-v10.html
and the Eclipse Distribution License is available at
http://www.eclipse.org/org/documents/edl-v10.php.
Contributors:
Roger Light - initial implementation and documentation.
*/
#ifndef _READ_HANDLE_H_
#define _READ_HANDLE_H_
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
2015-05-16 17:43:06 +00:00
int handle__pubackcomp(struct mosquitto_db *db, 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);
int handle__pubackcomp(struct mosquitto *mosq, const char *type);
int handle__publish(struct mosquitto *mosq);
#endif
2015-05-16 17:43:06 +00:00
int handle__pubrec(struct mosquitto *mosq);
int handle__pubrel(struct mosquitto_db *db, struct mosquitto *mosq);
int handle__suback(struct mosquitto *mosq);
int handle__unsuback(struct mosquitto *mosq);
2014-05-07 22:27:00 +00:00
#endif