home *** CD-ROM | disk | FTP | other *** search
/ CD Actual 15 / CDACTUAL15.iso / LINUX / LINUXISO.S97 / comprimid / apache / mod / mod_limit.h.txt < prev    next >
Encoding:
Text File  |  1997-07-19  |  308 b   |  20 lines

  1.  
  2.  
  3. #include <sys/types.h>
  4. #include <sys/socket.h>
  5. #include <netinet/in.h>
  6. #include <netdb.h>
  7.  
  8. #define NUM_RECORDS 16384
  9. #define LIMIT_MAGIC_TYPE "application/httpd-limit"
  10.  
  11. struct user_limit
  12. {
  13.   char account[16];
  14.   unsigned long bytes_sent;
  15.   unsigned long bytes_max;
  16. };
  17.  
  18. extern int errno;
  19.  
  20.