小弟我希望用C语言做个HTTP服务器,请各位大侠提供思路?如果有源代码或者网站介绍也请告知一下

我希望用C语言做个HTTP服务器,请各位大侠提供思路?如果有源代码或者网站介绍也请告知一下啊
因为可能要在设备里面嵌入HTTP服务器,因此估计只能自己做了
我现在的思路只是开一个SOCKET连接,打开80端口。
不知道还有什么办法???

------解决方案--------------------
到SOURCEFORGE.NET上找找
------解决方案--------------------

仅供参考
http://news.newhua.com/html/VC/2006-2/28/0622809253566380_90.shtml
------解决方案--------------------
HTTP协议的C语言编程实现实例

/******* http客户端程序 httpclient.c ************/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <errno.h>
#include <unistd.h>
#include <netinet/in.h>
#include <limits.h>
#include <netdb.h>
#include <arpa/inet.h>
#include <ctype.h>

//////////////////////////////httpclient.c 开始///////////////////////////////////////////

/********************************************
功能:搜索字符串右边起的第一个匹配字符
********************************************/
char * Rstrchr(char * s, char x) {
int i = strlen(s);
if(!(*s)) return 0;
while(s[i-1]) if(strchr(s + (i - 1), x)) return (s + (i - 1)); else i--;
return 0;
}

/********************************************
功能:把字符串转换为全小写
********************************************/
void ToLowerCase(char * s) {
while(*s) *s=tolower(*s++);
}

/**************************************************************
功能:从字符串src中分析出网站地址和端口,并得到用户要下载的文件
***************************************************************/
void GetHost(char * src, char * web, char * file, int * port) {
char * pA;
char * pB;
memset(web, 0, sizeof(web));
memset(file, 0, sizeof(file));
*port = 0;
if(!(*src)) return;
pA = src;
if(!strncmp(pA, "http:// ", strlen( "http:// "))) pA = src+strlen( "http:// ");
else if(!strncmp(pA, "https:// ", strlen( "https:// "))) pA = src+strlen( "https:// ");
pB = strchr(pA, '/ ');
if(pB) {
memcpy(web, pA, strlen(pA) - strlen(pB));
if(pB+1) {
memcpy(file, pB + 1, strlen(pB) - 1);
file[strlen(pB) - 1] = 0;
}
}
else memcpy(web, pA, strlen(pA));
if(pB) web[strlen(pA) - strlen(pB)] = 0;
else web[strlen(pA)] = 0;
pA = strchr(web, ': ');
if(pA) *port = atoi(pA + 1);
else *port = 80;
}

/*********************************************************************
*filename: httpclient.c
*purpose: HTTP协议客户端程序,可以用来下载网页
*wrote by: zhoulifa(zhoulifa@163.com) 周立发(http://zhoulifa.bokee.com)
Linux爱好者 Linux知识传播者 SOHO族 开发者 最擅长C语言
*date time:2006-03-11 21:49:00
*Note: 任何人可以任意复制代码并运用这些代码,当然包括你的商业用途
* 但请遵循GPL
*********************************************************************/
int main(int argc, char *argv[])
{
int sockfd;
char buffer[1024];
struct sockaddr_in server_addr;
struct hostent *host;
int portnumber,nbytes;
char host_addr[256];
char host_file[1024];
char local_file[256];
FILE * fp;
char request[1024];
int send, totalsend;
int i;
char * pt;

if(argc!=2)
{
fprintf(stderr, "Usage:%s web-address\a\n ",argv[0]);
exit(1);
}
printf( "parameter.1 is: %s\n ", argv[1]);
ToLowerCase(argv[1]);/*将参数转换为全小写*/