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.6 by pcg, Wed Mar 26 01:58:46 2003 UTC vs.
Revision 1.11 by pcg, Sat Apr 5 02:32:40 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 0
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
31#define RSA_HASH EVP_ripemd160 ()// speed don't matter, boy, safety does.. I need sha256 :( 37#define RSA_HASH EVP_ripemd160 ()// speed don't matter, boy, safety does.. I need sha256 :(
32#define RSA_HASHLEN (160 >> 3) 38#define RSA_HASHLEN (160 >> 3)
39#define RSA_RESLEN RSA_HASHLEN
33 40
34#define RSA_IDLEN 16 // how many bytes are used to identify the challenge 41#define RSA_IDLEN 16 // how many bytes are used to identify the challenge
35#define RSA_TTL 20 // challenge bytes timeout after n seconds 42#define RSA_TTL 20 // challenge bytes timeout after n seconds
36 43
37#define CIPHER ENABLE_CIPHER () 44#define CIPHER ENABLE_CIPHER ()
51#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
52#define MAX_OVERHEAD UDP_OVERHEAD // the max. overhead of any protocol 59#define MAX_OVERHEAD UDP_OVERHEAD // the max. overhead of any protocol
53#define ETH_OVERHEAD 14 // the size of an ethernet header 60#define ETH_OVERHEAD 14 // the size of an ethernet header
54#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
55 62
56#define PKTCACHESIZE 4 // the size of the memory pool for packets 63#define PKTCACHESIZE 5 // the size of the memory pool for packets
57 64
58#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)
59 66
60#define WINDOWSIZE 512 // sliding window size 67#define WINDOWSIZE 512 // sliding window size
61 68

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines