123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115 |
- #include <time.h>
- #define WITH_BROKER
- #include <logging_mosq.h>
- #include <memory_mosq.h>
- #include <mosquitto_broker_internal.h>
- #include <net_mosq.h>
- #include <send_mosq.h>
- #include <time_mosq.h>
- extern uint64_t last_retained;
- extern char *last_sub;
- extern int last_qos;
- struct mosquitto *context__init(mosq_sock_t sock)
- {
- UNUSED(sock);
- return mosquitto__calloc(1, sizeof(struct mosquitto));
- }
- int log__printf(struct mosquitto *mosq, unsigned int priority, const char *fmt, ...)
- {
- UNUSED(mosq);
- UNUSED(priority);
- UNUSED(fmt);
- return 0;
- }
- time_t mosquitto_time(void)
- {
- return 123;
- }
- int net__socket_close(struct mosquitto *mosq)
- {
- UNUSED(mosq);
- return MOSQ_ERR_SUCCESS;
- }
- int send__pingreq(struct mosquitto *mosq)
- {
- UNUSED(mosq);
- return MOSQ_ERR_SUCCESS;
- }
- int mosquitto_acl_check(struct mosquitto *context, const char *topic, uint32_t payloadlen, void* payload, uint8_t qos, bool retain, int access)
- {
- UNUSED(context);
- UNUSED(topic);
- UNUSED(payloadlen);
- UNUSED(payload);
- UNUSED(qos);
- UNUSED(retain);
- UNUSED(access);
- return MOSQ_ERR_SUCCESS;
- }
- int acl__find_acls(struct mosquitto *context)
- {
- UNUSED(context);
- return MOSQ_ERR_SUCCESS;
- }
- int send__publish(struct mosquitto *mosq, uint16_t mid, const char *topic, uint32_t payloadlen, const void *payload, uint8_t qos, bool retain, bool dup, const mosquitto_property *cmsg_props, const mosquitto_property *store_props, uint32_t expiry_interval)
- {
- UNUSED(mosq);
- UNUSED(mid);
- UNUSED(topic);
- UNUSED(payloadlen);
- UNUSED(payload);
- UNUSED(qos);
- UNUSED(retain);
- UNUSED(dup);
- UNUSED(cmsg_props);
- UNUSED(store_props);
- UNUSED(expiry_interval);
- return MOSQ_ERR_SUCCESS;
- }
- int send__pubcomp(struct mosquitto *mosq, uint16_t mid, const mosquitto_property *properties)
- {
- UNUSED(mosq);
- UNUSED(mid);
- UNUSED(properties);
- return MOSQ_ERR_SUCCESS;
- }
- int send__pubrec(struct mosquitto *mosq, uint16_t mid, uint8_t reason_code, const mosquitto_property *properties)
- {
- UNUSED(mosq);
- UNUSED(mid);
- UNUSED(reason_code);
- UNUSED(properties);
- return MOSQ_ERR_SUCCESS;
- }
- int send__pubrel(struct mosquitto *mosq, uint16_t mid, const mosquitto_property *properties)
- {
- UNUSED(mosq);
- UNUSED(mid);
- UNUSED(properties);
- return MOSQ_ERR_SUCCESS;
- }
|