home *** CD-ROM | disk | FTP | other *** search
/ CD Actual 25 / CDROM25.iso / Share / linux / apache / contrib / modules / mod_limit.h < prev    next >
Encoding:
C/C++ Source or Header  |  1998-06-11  |  287 b   |  18 lines

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