X-Git-Url: http://git.meshlink.io/?a=blobdiff_plain;ds=sidebyside;f=src%2Flibmeshlink.h;h=471a90db0b5185afc10f393ad6b9348918379daa;hb=3d5dd72aa41f162fd5d4d6dd13f46c0fca5a14a9;hp=02a944840b3ab3d92c28605c20b4b950cd3d299a;hpb=3113556aba931142a93384ebd9ba43c842761561;p=meshlink diff --git a/src/libmeshlink.h b/src/libmeshlink.h index 02a94484..471a90db 100644 --- a/src/libmeshlink.h +++ b/src/libmeshlink.h @@ -1,6 +1,6 @@ /* libmeshlink.h -- Tincd Library - Copyright (C) 2014 Guus Sliepen Saverio Proto + Copyright (C) 2014 Guus Sliepen Saverio Proto This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -19,22 +19,37 @@ #include "system.h" #include "node.h" -#include "names.h" //#include "tincctl.h" #include "xalloc.h" +#include "logger.h" +#include "route.h" + +typedef void (*recvdata_cb_t)(void *data); +void recvdata_register_cb(recvdata_cb_t cb); + +extern recvdata_cb_t recv_callback; extern char *hosts_dir; +extern FILE *fopenmask(const char *filename, const char *mode, mode_t perms); + +extern int check_port(const char *name); + +void *tinc_main_thread(void * in); -extern int check_port(char *name); /* OLD: tinc_configuration_t provides all information required to setup "/etc/tinc" I think tinc_setup() should basically do what cmd_init() from src/tincctl.c does, except it doesn't have to generate a tinc-up script. */ -bool tinc_setup(const char* tinc_conf, const char* name); +bool tinc_setup(const char* confbase, const char* name); bool tinc_start(const char* path); bool tinc_stop(); +typedef struct tincpackethdr { + u_int8_t destination[16]; + u_int8_t source[16]; +} __attribute__ ((__packed__)) tincpackethdr; + // can be called from any thread bool tinc_send_packet(node_t *receiver, const char* buf, unsigned int len);