00001 #ifndef __SESSION_H
00002 #define __SESSION_H
00003
00004 #include "encryptor.h"
00005 #define SEND 1
00006 #define RCV 0
00007 class Session
00008 {
00009 public:
00010 struct Key key;
00011 struct ClientID dest;
00012 int sendCount;
00013 int recvCount;
00014 encryptor e;
00015 };
00016
00017 #endif