HTTP_D.C
资源名称:ertos.rar [点击查看]
上传用户:sunrenlu
上传日期:2022-06-13
资源大小:1419k
文件大小:1k
源码类别:
操作系统开发
开发平台:
DOS
- /*
- * http_d.c bare bones web server
- */
- #include <rtos.h>
- #include <net.h>
- #include <stdio.h>
- #include <ctype.h>
- #include <string.h>
- #include <time.h>
- #include <httpd.h>
- void userproc( tcp_Socket *s, char *cmd, char *name, char *ext )
- {
- html_hdr( s , "hello");
- sock_puts( s, "You asked for ");
- sock_puts( s, name );
- sock_puts( s, ".");
- if (ext) sock_puts( s, ext );
- html_tail( s );
- }
- main()
- {
- int i;
- kdebug = 1;
- rt_init(100);
- kpreemptive = 1; /* enable pre-emptive multithreading */
- sock_init(); /* initialize network */
- cputs("starting...rn");
- #define MAXHTTPD 5
- for ( i = 0 ; i < MAXHTTPD; ++i )
- rt_newthread( httpdthread, (DWORD)&userproc, 2048, 0, "httpd worker" );
- do {
- /* nothing */
- rt_yield();
- } while ( 1 );
- }