HTTPD.H
上传用户:sunrenlu
上传日期:2022-06-13
资源大小:1419k
文件大小:1k
源码类别:

操作系统开发

开发平台:

DOS

  1. #include <strlst.h>
  2. extern void httpdthread( DWORD ptr );
  3. void html_hdr( tcp_Socket *s, char *title );
  4. void html_tail( tcp_Socket *s );
  5. int http_dump( tcp_Socket  *s, char *base, char *fname, char *ext );
  6. void html_datestring( tcp_Socket *s, char *format, DWORD plusseconds );
  7. stringlist *cgi_getstrings( tcp_Socket *s );
  8. void cgi_freestrings( stringlist *sl );
  9. typedef struct {
  10.     char *ssi_name;
  11.     void (*ssi_fn)( tcp_Socket *s, stringlist *cookies );
  12. } ssi_type;
  13. int http_shtml( tcp_Socket  *s, char *base, char *fname, char *ext,
  14.     ssi_type *ssi_list, stringlist *cookies);
  15. /*
  16.  * user proc prototype
  17.  *
  18.  * void userproc( tcp_Socket *s, char *cmd, char *name, char *ext,
  19.  *    stringlist *cookies )
  20.  */