mosquitto/src/mosquitto_broker.h

145 lines
3.6 KiB
C
Raw Normal View History

2014-05-07 22:27:00 +00:00
/*
Copyright (c) 2009-2019 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 MOSQUITTO_BROKER_H
#define MOSQUITTO_BROKER_H
2014-05-07 22:27:00 +00:00
#include <stdbool.h>
2014-05-07 22:27:00 +00:00
2016-07-08 10:50:50 +00:00
struct mosquitto;
2014-06-29 22:16:10 +00:00
2014-05-18 21:40:20 +00:00
enum mosquitto_protocol {
mp_mqtt,
mp_mqttsn,
mp_websockets
};
/* =========================================================================
*
* Utility Functions
*
* Use these functions from within your plugin.
*
* There are also very useful functions in libmosquitto.
*
* ========================================================================= */
2014-05-07 22:27:00 +00:00
/*
* Function: mosquitto_log_printf
*
* Write a log message using the broker configured logging.
*
* Parameters:
* level - Log message priority. Can currently be one of:
*
* MOSQ_LOG_INFO
* MOSQ_LOG_NOTICE
* MOSQ_LOG_WARNING
* MOSQ_LOG_ERR
* MOSQ_LOG_DEBUG
* MOSQ_LOG_SUBSCRIBE (not recommended for use by plugins)
* MOSQ_LOG_UNSUBSCRIBE (not recommended for use by plugins)
*
* These values are defined in mosquitto.h.
*
* fmt, ... - printf style format and arguments.
*/
void mosquitto_log_printf(int level, const char *fmt, ...);
2014-06-30 22:30:43 +00:00
2014-05-07 22:27:00 +00:00
2016-07-08 10:50:50 +00:00
/* =========================================================================
*
* Client Functions
*
* Use these functions to access client information.
*
* ========================================================================= */
2014-05-07 22:27:00 +00:00
2016-07-08 21:04:39 +00:00
/*
* Function: mosquitto_client_address
*
2017-08-09 21:17:11 +00:00
* Retrieve the IP address of the client as a string.
2014-05-07 22:27:00 +00:00
*/
2016-07-08 21:04:39 +00:00
const char *mosquitto_client_address(const struct mosquitto *client);
2014-05-07 22:27:00 +00:00
2016-07-08 21:04:39 +00:00
/*
* Function: mosquitto_client_clean_session
*
* Retrieve the clean session flag value for a client.
*/
bool mosquitto_client_clean_session(const struct mosquitto *client);
2014-05-07 22:27:00 +00:00
2016-07-08 21:04:39 +00:00
/*
* Function: mosquitto_client_id
*
* Retrieve the client id associated with a client.
*/
const char *mosquitto_client_id(const struct mosquitto *client);
2014-05-07 22:27:00 +00:00
2016-07-08 21:04:39 +00:00
/*
* Function: mosquitto_client_keepalive
*
* Retrieve the keepalive value for a client.
*/
int mosquitto_client_keepalive(const struct mosquitto *client);
2014-05-07 22:27:00 +00:00
2016-07-08 21:04:39 +00:00
/*
* Function: mosquitto_client_certificate
*
* If TLS support is enabled, return the certificate provided by a client as an
* X509 pointer from openssl. If the client did not provide a certificate, then
* NULL will be returned. This function will only ever return a non-NULL value
* if the `require_certificate` option is set to true.
*
* If TLS is not supported, this function will always return NULL.
*/
void *mosquitto_client_certificate(const struct mosquitto *client);
2014-05-07 22:27:00 +00:00
2016-07-08 21:04:39 +00:00
/*
* Function: mosquitto_client_protocol
*
* Retrieve the protocol with which the client has connected. Can be one of:
*
* mp_mqtt (MQTT over TCP)
* mp_mqttsn (MQTT-SN)
* mp_websockets (MQTT over Websockets)
*/
int mosquitto_client_protocol(const struct mosquitto *client);
2014-05-07 22:27:00 +00:00
2016-07-08 21:04:39 +00:00
/*
* Function: mosquitto_client_sub_count
*
* Retrieve the number of subscriptions that have been made by a client.
*/
int mosquitto_client_sub_count(const struct mosquitto *client);
2014-05-07 22:27:00 +00:00
2016-07-08 10:50:50 +00:00
/*
* Function: mosquitto_client_username
*
* Retrieve the username associated with a client.
*/
const char *mosquitto_client_username(const struct mosquitto *client);
2014-05-07 22:27:00 +00:00
#endif