2012-09-14 02:17:48 +00:00
|
|
|
/*
|
|
|
|
Copyright (C) 2012 Serval Project.
|
|
|
|
|
|
|
|
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 the Free Software Foundation; either version 2
|
|
|
|
of the License, or (at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program; if not, write to the Free Software
|
|
|
|
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __SERVALD_MDP_CLIENT_H
|
|
|
|
#define __SERVALD_MDP_CLIENT_H
|
|
|
|
|
|
|
|
#include "serval.h"
|
|
|
|
|
2013-10-09 05:04:41 +00:00
|
|
|
// define 3rd party mdp API without any structure padding
|
|
|
|
#pragma pack(push, 1)
|
|
|
|
|
|
|
|
struct mdp_sockaddr {
|
|
|
|
sid_t sid;
|
|
|
|
uint32_t port;
|
|
|
|
};
|
|
|
|
|
|
|
|
#define MDP_FLAG_NO_CRYPT (1<<0)
|
|
|
|
#define MDP_FLAG_NO_SIGN (1<<1)
|
|
|
|
#define MDP_FLAG_BIND_ALL (1<<2)
|
|
|
|
#define MDP_FLAG_OK (1<<3)
|
|
|
|
#define MDP_FLAG_ERROR (1<<4)
|
|
|
|
|
|
|
|
struct mdp_header {
|
|
|
|
struct mdp_sockaddr local;
|
|
|
|
struct mdp_sockaddr remote;
|
|
|
|
uint8_t flags;
|
|
|
|
uint8_t qos;
|
|
|
|
uint8_t ttl;
|
|
|
|
};
|
|
|
|
|
|
|
|
#define TYPE_SID 1
|
|
|
|
#define TYPE_PIN 2
|
|
|
|
#define ACTION_LOCK 1
|
|
|
|
#define ACTION_UNLOCK 2
|
|
|
|
|
|
|
|
struct mdp_identity_request{
|
|
|
|
uint8_t action;
|
|
|
|
uint8_t type;
|
|
|
|
// followed by a list of SID's or NULL terminated entry pins for the remainder of the payload
|
|
|
|
};
|
|
|
|
|
|
|
|
#define MDP_IDENTITY 1
|
|
|
|
|
|
|
|
#pragma pack(pop)
|
|
|
|
|
2012-12-05 04:43:47 +00:00
|
|
|
struct overlay_route_record{
|
|
|
|
unsigned char sid[SID_SIZE];
|
2013-02-18 01:17:08 +00:00
|
|
|
char interface_name[256];
|
2012-12-05 04:43:47 +00:00
|
|
|
int reachable;
|
|
|
|
unsigned char neighbour[SID_SIZE];
|
|
|
|
};
|
|
|
|
|
|
|
|
struct overlay_mdp_scan{
|
|
|
|
struct in_addr addr;
|
|
|
|
};
|
|
|
|
|
2013-10-09 05:04:41 +00:00
|
|
|
/* V2 interface */
|
|
|
|
int mdp_socket(void);
|
|
|
|
int mdp_close(int socket);
|
|
|
|
int mdp_send(int socket, const struct mdp_header *header, const unsigned char *payload, ssize_t len);
|
|
|
|
ssize_t mdp_recv(int socket, struct mdp_header *header, unsigned char *payload, ssize_t max_len);
|
|
|
|
int mdp_poll(int socket, time_ms_t timeout_ms);
|
|
|
|
|
2012-09-14 02:17:48 +00:00
|
|
|
/* Client-side MDP function */
|
2012-11-06 19:48:54 +00:00
|
|
|
int overlay_mdp_client_socket(void);
|
|
|
|
int overlay_mdp_client_close(int mdp_sockfd);
|
|
|
|
int overlay_mdp_client_poll(int mdp_sockfd, time_ms_t timeout_ms);
|
|
|
|
int overlay_mdp_getmyaddr(int mpd_sockfd, unsigned index, sid_t *sid);
|
|
|
|
int overlay_mdp_bind(int mdp_sockfd, const sid_t *localaddr, int port) ;
|
|
|
|
int overlay_mdp_recv(int mdp_sockfd, overlay_mdp_frame *mdp, int port, int *ttl);
|
|
|
|
int overlay_mdp_send(int mdp_sockfd, overlay_mdp_frame *mdp,int flags,int timeout_ms);
|
2013-10-08 05:09:29 +00:00
|
|
|
ssize_t overlay_mdp_relevant_bytes(overlay_mdp_frame *mdp);
|
2012-09-14 02:17:48 +00:00
|
|
|
|
2012-11-16 14:31:28 +00:00
|
|
|
#endif
|