Changeset 5830 for luci2/zhttpd/zhttpd.h

Show
Ignore:
Timestamp:
03/15/10 22:01:46 (3 years ago)
Author:
Cyrus
Message:

zhttpd: More stuff, uhtbl: Qualifier change

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • luci2/zhttpd/zhttpd.h

    r5793 r5830  
    99#define ZHTTPD_H_ 
    1010 
     11#define _FILE_OFFSET_BITS 64 
     12 
     13#include <stdint.h> 
    1114#include <stdio.h> 
    1215#include "zthread.h" 
    13 #include "cbi2/hmapx.h" 
     16#include "libubox/uhtbl.h" 
     17#include "libubox/hash.h" 
    1418 
    1519#define ZHTTPD_OK       0 
     
    3438struct zhttpd_request { 
    3539    int flags; 
    36     cbi2_hmap_t *env; 
     40    uhtbl_t env; 
    3741    zhttpd_vfs_t *virtual; 
    3842    void *handlercontext; 
     
    6771    int threads; 
    6872    int daemonize; 
     73    char *pidfile; 
    6974}; 
    7075