]> git.meshlink.io Git - meshlink/blobdiff - src/libmeshlink.c
Started the implementation of route_meshlink that at the moment routes packets based...
[meshlink] / src / libmeshlink.c
index f84642dfc9c11ff7a77fdf4ae8e2fa4da44b765e..bd6a3d28f931ad9bb92ec8ef972f45ffec9f9e9b 100644 (file)
@@ -548,6 +548,33 @@ end:
 
 bool tinc_stop();
 
+bool route_meshlink(node_t *source,vpn_packet_t *packet) {
+
+       printf("data %s\n",packet->data);
+       printf("data 11%s\n",packet->data+11);
+       printf("data 32%s\n",packet->data+32);
+       node_t* owner = NULL;
+
+       tincpackethdr* hdr = (tincpackethdr*)packet->data;
+       owner = lookup_node(hdr->destination);
+
+       if (owner == NULL) {
+       //Lookup failed
+       printf("NULL\n");
+       return false;
+       }
+       printf("lookupnode %s\n",owner->name);
+
+       if(!owner->status.reachable) {
+       //Do some here
+       return false;
+       }
+
+       //TODO: I skipped here a lot of checks !
+
+       send_packet(owner,packet);
+
+}
 // can be called from any thread
 bool tinc_send_packet(node_t *receiver, const char* buf, unsigned int len) {
 
@@ -565,12 +592,12 @@ bool tinc_send_packet(node_t *receiver, const char* buf, unsigned int len) {
 
        packet.priority = 0;
 
-       memcpy(packet.data,hdr,sizeof(hdr));
-       memcpy(packet.data+sizeof(hdr),buf,len);
+       memcpy(packet.data,hdr,32);
+       memcpy(packet.data+32,buf,len);
 
         myself->in_packets++;
         myself->in_bytes += packet.len;
-        route(myself, &packet);
+        route_meshlink(myself, &packet);
 
 return true;
 }