Update of /cvsroot/com0com/hub4com/plugins/telnet
In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv6364
Modified Files:
opt_termtype.cpp telnet.cpp telnet.h opt_comport.cpp import.h
filter.cpp
Log Message:
Changed for staticaly linking
Index: opt_termtype.cpp
===================================================================
RCS file: /cvsroot/com0com/hub4com/plugins/telnet/opt_termtype.cpp,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** opt_termtype.cpp 24 Oct 2008 06:51:23 -0000 1.1
--- opt_termtype.cpp 13 Nov 2008 07:44:12 -0000 1.2
***************
*** 20,23 ****
--- 20,26 ----
*
* $Log$
+ * Revision 1.2 2008/11/13 07:44:12 vfrolov
+ * Changed for staticaly linking
+ *
* Revision 1.1 2008/10/24 06:51:23 vfrolov
* Initial revision
***************
*** 26,31 ****
#include "precomp.h"
#include "opt_termtype.h"
-
///////////////////////////////////////////////////////////////
enum {
--- 29,37 ----
#include "precomp.h"
+ #include "../plugins_api.h"
+ ///////////////////////////////////////////////////////////////
+ namespace FilterTelnet {
+ ///////////////////////////////////////////////////////////////
#include "opt_termtype.h"
///////////////////////////////////////////////////////////////
enum {
***************
*** 70,71 ****
--- 76,79 ----
}
///////////////////////////////////////////////////////////////
+ } // end namespace
+ ///////////////////////////////////////////////////////////////
Index: telnet.h
===================================================================
RCS file: /cvsroot/com0com/hub4com/plugins/telnet/telnet.h,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** telnet.h 24 Oct 2008 08:29:01 -0000 1.3
--- telnet.h 13 Nov 2008 07:44:12 -0000 1.4
***************
*** 20,23 ****
--- 20,26 ----
*
* $Log$
+ * Revision 1.4 2008/11/13 07:44:12 vfrolov
+ * Changed for staticaly linking
+ *
* Revision 1.3 2008/10/24 08:29:01 vfrolov
* Implemented RFC 2217
***************
*** 34,39 ****
#define _TELNET_H
- #include "../plugins_api.h"
-
///////////////////////////////////////////////////////////////
typedef vector<BYTE> BYTE_vector;
--- 37,40 ----
Index: telnet.cpp
===================================================================
RCS file: /cvsroot/com0com/hub4com/plugins/telnet/telnet.cpp,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** telnet.cpp 24 Oct 2008 08:29:01 -0000 1.4
--- telnet.cpp 13 Nov 2008 07:44:12 -0000 1.5
***************
*** 20,23 ****
--- 20,26 ----
*
* $Log$
+ * Revision 1.5 2008/11/13 07:44:12 vfrolov
+ * Changed for staticaly linking
+ *
* Revision 1.4 2008/10/24 08:29:01 vfrolov
* Implemented RFC 2217
***************
*** 35,41 ****
#include "precomp.h"
#include "import.h"
#include "telnet.h"
-
///////////////////////////////////////////////////////////////
static const char *code2name(unsigned code)
--- 38,47 ----
#include "precomp.h"
+ #include "../plugins_api.h"
+ ///////////////////////////////////////////////////////////////
+ namespace FilterTelnet {
+ ///////////////////////////////////////////////////////////////
#include "import.h"
#include "telnet.h"
///////////////////////////////////////////////////////////////
static const char *code2name(unsigned code)
***************
*** 335,336 ****
--- 341,344 ----
}
///////////////////////////////////////////////////////////////
+ } // end namespace
+ ///////////////////////////////////////////////////////////////
Index: filter.cpp
===================================================================
RCS file: /cvsroot/com0com/hub4com/plugins/telnet/filter.cpp,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -d -r1.5 -r1.6
*** filter.cpp 24 Oct 2008 08:29:01 -0000 1.5
--- filter.cpp 13 Nov 2008 07:44:13 -0000 1.6
***************
*** 20,23 ****
--- 20,26 ----
*
* $Log$
+ * Revision 1.6 2008/11/13 07:44:13 vfrolov
+ * Changed for staticaly linking
+ *
* Revision 1.5 2008/10/24 08:29:01 vfrolov
* Implemented RFC 2217
***************
*** 38,45 ****
#include "precomp.h"
#include "import.h"
#include "opt_termtype.h"
#include "opt_comport.h"
-
///////////////////////////////////////////////////////////////
static ROUTINE_MSG_INSERT_NONE *pMsgInsertNone;
--- 41,51 ----
#include "precomp.h"
+ #include "../plugins_api.h"
+ ///////////////////////////////////////////////////////////////
+ namespace FilterTelnet {
+ ///////////////////////////////////////////////////////////////
#include "import.h"
#include "opt_termtype.h"
#include "opt_comport.h"
///////////////////////////////////////////////////////////////
static ROUTINE_MSG_INSERT_NONE *pMsgInsertNone;
***************
*** 787,788 ****
--- 793,796 ----
}
///////////////////////////////////////////////////////////////
+ } // end namespace
+ ///////////////////////////////////////////////////////////////
Index: import.h
===================================================================
RCS file: /cvsroot/com0com/hub4com/plugins/telnet/import.h,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** import.h 24 Oct 2008 08:29:01 -0000 1.2
--- import.h 13 Nov 2008 07:44:12 -0000 1.3
***************
*** 20,23 ****
--- 20,26 ----
*
* $Log$
+ * Revision 1.3 2008/11/13 07:44:12 vfrolov
+ * Changed for staticaly linking
+ *
* Revision 1.2 2008/10/24 08:29:01 vfrolov
* Implemented RFC 2217
***************
*** 31,36 ****
#define _IMPORT_H
- #include "../plugins_api.h"
-
///////////////////////////////////////////////////////////////
extern ROUTINE_MSG_INSERT_VAL *pMsgInsertVal;
--- 34,37 ----
Index: opt_comport.cpp
===================================================================
RCS file: /cvsroot/com0com/hub4com/plugins/telnet/opt_comport.cpp,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** opt_comport.cpp 24 Oct 2008 06:51:23 -0000 1.1
--- opt_comport.cpp 13 Nov 2008 07:44:12 -0000 1.2
***************
*** 20,23 ****
--- 20,26 ----
*
* $Log$
+ * Revision 1.2 2008/11/13 07:44:12 vfrolov
+ * Changed for staticaly linking
+ *
* Revision 1.1 2008/10/24 06:51:23 vfrolov
* Initial revision
***************
*** 26,32 ****
#include "precomp.h"
#include "import.h"
#include "opt_comport.h"
-
///////////////////////////////////////////////////////////////
enum {
--- 29,38 ----
#include "precomp.h"
+ #include "../plugins_api.h"
+ ///////////////////////////////////////////////////////////////
+ namespace FilterTelnet {
+ ///////////////////////////////////////////////////////////////
#include "import.h"
#include "opt_comport.h"
///////////////////////////////////////////////////////////////
enum {
***************
*** 771,772 ****
--- 777,780 ----
}
///////////////////////////////////////////////////////////////
+ } // end namespace
+ ///////////////////////////////////////////////////////////////
|