Diff for /libwww/Robot/src/HTRobMan.html between versions 1.9 and 1.10

version 1.9, 1999/03/14 02:21:09 version 1.10, 2005/02/27 22:52:38
Line 24  This program illustrates how to travers Line 24  This program illustrates how to travers
 #include "WWWInit.h"  #include "WWWInit.h"
 #include "WWWSQL.h"  #include "WWWSQL.h"
   
 #include "HText.h"  #ifdef HT_SSL
   #include "WWWSSL.h"
   #endif /* HT_SSL */
   
   #include "HText.h"
 #include "HTRobot.h"                                     /* Implemented here */  #include "HTRobot.h"                                     /* Implemented here */
   
 #ifndef W3C_VERSION  #ifndef W3C_VERSION
Line 64  This program illustrates how to travers Line 67  This program illustrates how to travers
 #define DEFAULT_SQL_USER        "webbot"  #define DEFAULT_SQL_USER        "webbot"
 #define DEFAULT_SQL_PW          ""  #define DEFAULT_SQL_PW          ""
   
   #ifdef HT_SSL
   #define DEFAULT_SSL_PROT        HTSSL_V23
   #define DEFAULT_SSL_VDEPTH      2
   #define DEFAULT_SSL_CFILE       ""
   #define DEFAULT_SSL_KFILE       ""
   #endif
   
 #if 0  #if 0
 #define HT_MEMLOG               /* Is expensive in performance! */  #define HT_MEMLOG               /* Is expensive in performance! */
 #endif  #endif
Line 171  typedef struct _Robot { Line 181  typedef struct _Robot {
     int                 sqlflags;      int                 sqlflags;
 #endif  #endif
   
   #ifdef HT_SSL
       HTSSL_PROTOCOL      sslprot;
       int                 sslverifydepth;
       char *              sslcertfile;
       char *              sslkeyfile;
   #endif
   
 } Robot;  } Robot;
   
 typedef struct _Finger {  typedef struct _Finger {

Removed from v.1.9  
changed lines
  Added in v.1.10


Webmaster