ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/gvpe/src/global.h
(Generate patch)

Comparing gvpe/src/global.h (file contents):
Revision 1.7 by pcg, Wed Mar 26 14:39:52 2003 UTC vs.
Revision 1.12 by pcg, Sat Apr 5 17:54:22 2003 UTC

21 21
22#include "config.h" 22#include "config.h"
23 23
24#include <time.h> 24#include <time.h>
25 25
26/* Protocol version. Different major versions are incompatible,
27 * different minor versions probably are compatible ;)
28 */
29
30#define PROTOCOL_MAJOR 0
31#define PROTOCOL_MINOR 1
26 32
27#define RSA_KEYBITS 1280 // must be >= 1280 and divisible by 8 33#define RSA_KEYBITS 1280 // must be >= 1280 and divisible by 8
28#define RSA_KEYLEN ((RSA_KEYBITS) >> 3) 34#define RSA_KEYLEN ((RSA_KEYBITS) >> 3)
29#define RSA_OVERHEAD (41 + 1) // well, no define for OAEP in openssl 35#define RSA_OVERHEAD (41 + 1) // well, no define for OAEP in openssl
30 36
52#define UDP_OVERHEAD (IP_OVERHEAD + 20) // size of a (normal) ip + udp header 58#define UDP_OVERHEAD (IP_OVERHEAD + 20) // size of a (normal) ip + udp header
53#define MAX_OVERHEAD UDP_OVERHEAD // the max. overhead of any protocol 59#define MAX_OVERHEAD UDP_OVERHEAD // the max. overhead of any protocol
54#define ETH_OVERHEAD 14 // the size of an ethernet header 60#define ETH_OVERHEAD 14 // the size of an ethernet header
55#define MAXSIZE (MAX_MTU + VPE_OVERHEAD)// slightly too large, but who cares 61#define MAXSIZE (MAX_MTU + VPE_OVERHEAD)// slightly too large, but who cares
56 62
57#define PKTCACHESIZE 4 // the size of the memory pool for packets 63#define PKTCACHESIZE 5 // the size of the memory pool for packets
58 64
59#define QUEUEDEPTH 16 // the number of packets that will be queued (should be low) 65#define QUEUEDEPTH 16 // the number of packets that will be queued (should be low)
60 66
61#define WINDOWSIZE 512 // sliding window size 67#define WINDOWSIZE 512 // sliding window size
62 68

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines