Big header file cleanup: everything that has to do with standard system
[tinc] / src / node.h
index e4dcd52..a4e439a 100644 (file)
@@ -1,7 +1,7 @@
 /*
     node.h -- header for node.c
-    Copyright (C) 2001-2002 Guus Sliepen <guus@sliepen.eu.org>,
-                  2001-2002 Ivo Timmermans <ivo@o2w.nl>
+    Copyright (C) 2001-2003 Guus Sliepen <guus@sliepen.eu.org>,
+                  2001-2003 Ivo Timmermans <ivo@o2w.nl>
 
     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
     along with this program; if not, write to the Free Software
     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 
-    $Id: node.h,v 1.1.2.20 2002/09/09 21:24:41 guus Exp $
+    $Id: node.h,v 1.1.2.25 2003/07/17 15:06:26 guus Exp $
 */
 
 #ifndef __TINC_NODE_H__
 #define __TINC_NODE_H__
 
-#ifdef HAVE_INTTYPES_H
-#include <inttypes.h>
-#endif
-
-#include <avl_tree.h>
-
-#include "subnet.h"
+#include "avl_tree.h"
 #include "connection.h"
+#include "list.h"
+#include "subnet.h"
 
 typedef struct node_status_t {
        int active:1;                           /* 1 if active.. */
@@ -54,7 +50,8 @@ typedef struct node_t {
        const EVP_CIPHER *cipher;       /* Cipher type for UDP packets */
        char *key;                                      /* Cipher key and iv */
        int keylength;                          /* Cipher key and iv length */
-
+       EVP_CIPHER_CTX packet_ctx;      /* Cipher context */
+       
        const EVP_MD *digest;           /* Digest type for MAC */
        int maclength;                          /* Length of MAC */
 
@@ -73,6 +70,7 @@ typedef struct node_t {
 
        uint32_t sent_seqno;            /* Sequence number last sent to this node */
        uint32_t received_seqno;        /* Sequence number last received from this node */
+       unsigned char late[16]; /* Bitfield marking late packets */
 } node_t;
 
 extern struct node_t *myself;
@@ -81,7 +79,7 @@ extern avl_tree_t *node_udp_tree;
 
 extern void init_nodes(void);
 extern void exit_nodes(void);
-extern node_t *new_node(void);
+extern node_t *new_node(void) __attribute__ ((malloc));
 extern void free_node(node_t *);
 extern void node_add(node_t *);
 extern void node_del(node_t *);