Mixe for Privacy and Anonymity in the Internet
packetintro.h
Go to the documentation of this file.
1 /*$Id: packetintro.h 2739 2007-10-16 11:56:26Z rolf $*/
2 /*********************************************************************************************************/
3 /* */
4 /* tramo V0.9, server traffic monitor, (c) SDTFA 05/2007 */
5 /* */
6 /* Declarations PacketIntro */
7 /* */
8 /* Date CRQ Revision Change description Autor */
9 /*-------------------------------------------------------------------------------------------------------*/
10 /* 16.05.07 1.0 file created Freddy */
11 /* */
12 /*********************************************************************************************************/
13 #ifdef SDTFA
14 
15 #ifndef PACKETINTRO_H
16 #define PACKETINTRO_H
17 
18 #define SDTFA_MIXPACKET_SIZE 998 /* size of a mix packet */
19 #define SDTFA_MIX_SHARED_KEY 0xAB0B5EA7 /* key for shm access */
20 #define SDTFA_SHM_MODE 0664 /* owner and group rw, other read */
21 
24 class SDTFA_MixShared
25  {
26  public:
27  unsigned int PacketCount;
28  };
29 
30 void SDTFA_IncrementShmPacketCount(void);
31 
32 #endif
33 #endif