00001 00013 #ifndef _CAS_RANDOM_H 00014 #define _CAS_RANDOM_H 00015 00016 #include "httpd.h" 00017 #include "http_config.h" 00018 00019 /* 00020 * ------------------------------------------------------------------ 00021 * Randomness directive 00022 *------------------------------------------------------------------- 00023 */ 00024 00025 /* Command handler for the CASEGDFile directive */ 00026 const char *cas_read_CASEGDFile(cmd_parms *cmd, 00027 void *dummy, 00028 const char *word); 00029 00030 /* 00031 * ------------------------------------------------------------------ 00032 * Random ticket construction 00033 *------------------------------------------------------------------- 00034 */ 00035 00036 /* Constructs a random ticket value */ 00037 int cas_random_ticket(char *buf, 00038 int buflen, 00039 char *egdfile); 00040 00041 00042 #endif 00043
1.3