mirror of
https://github.com/owntracks/recorder.git
synced 2024-11-15 09:58:40 -07:00
25 lines
516 B
C
25 lines
516 B
C
#ifndef FENCES_H_INCLUDED
|
|
# define FENCES_H_INCLUDED
|
|
|
|
#include <stdbool.h>
|
|
|
|
typedef struct {
|
|
double lat;
|
|
double lon;
|
|
long rad;
|
|
char *desc;
|
|
bool io; /* true: is IN region. false: is OUT of region */
|
|
char *user;
|
|
char *device;
|
|
enum { ENTER, LEAVE } event;
|
|
struct udata *ud;
|
|
char *topic; /* original publish topic */
|
|
JsonNode *json; /* full JSON payload of publish */
|
|
} wpoint;
|
|
|
|
void check_fences(struct udata *ud, char *username, char *device, double lat, double lon, JsonNode *json, char *topic);
|
|
|
|
|
|
#endif
|
|
|