1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
|
#include <stdio.h>
#include <stdlib.h>
#include <process.h>
#include <WinSock2.h>
#pragma comment(lib, "ws2_32.lib")
#define BUF_SIZE 2048
#define BUF_SMALL 100
void Send_404(SOCKET sock)
{
char Protocol[] = "HTTP/1.0 404 Bad Request\r\n" ;
send(sock, Protocol, strlen (Protocol),0);
closesocket(sock);
}
void SendData(SOCKET sock, char *filename)
{
char Protocol[] = "HTTP/1.1 200 OK\r\n" ;
char ServerType[] = "Server:MyWebServer\r\n" ;
char ContentLen[] = "Content-length:2048\r\n" ;
char ContentType[] = "Content-type:text/html\r\n" ;
char buffer[BUF_SIZE] = {0};
FILE *fp;
if ((fp = fopen (filename, "r" )) != NULL)
{
// 传输头数据
send(sock, Protocol, strlen (Protocol), 0);
send(sock, ServerType, strlen (ServerType), 0);
send(sock, ContentLen, strlen (ContentLen), 0);
send(sock, ContentType, strlen (ContentType), 0);
// 传输数据
while ( fgets (buffer, BUF_SIZE, fp) != NULL)
send(sock, buffer, strlen (buffer), 0);
closesocket(sock);
}
}
unsigned WINAPI RequestHandle( void *argv)
{
SOCKET hClntSock = (SOCKET)argv;
char Buffer[BUF_SIZE] = { 0 };
char Method[BUF_SMALL] = { 0 };
char FileName[BUF_SMALL] = { 0 };
recv(hClntSock, Buffer, BUF_SIZE, 0);
// 寻找HTTP请求头 如果不为空则继续
if ( strstr (Buffer, "HTTP/1" ) != NULL)
{
// 接着判断是否为GET请求方式
strcpy (Method, strtok (Buffer, "/" ));
if ( strcmp (Method, "GET" ) != 0)
{
strcpy (FileName, strtok (0, "/" ));
printf ( "请求方式: %s 请求文件: %s \n" , Method,FileName);
SendData(hClntSock, FileName);
closesocket(hClntSock);
return 0;
}
}
Send_404(hClntSock);
closesocket(hClntSock);
return -1;
}
int main( int argc, char * argv[])
{
WSADATA wsaData;
SOCKET ServerSock, ClientSock;
SOCKADDR_IN ServerAddr, ClientAddr;
WSAStartup(MAKEWORD(2, 2), &wsaData);
ServerSock = socket(PF_INET, SOCK_STREAM, 0);
memset (&ServerAddr, 0, sizeof (ServerAddr));
ServerAddr.sin_family = AF_INET;
ServerAddr.sin_addr.s_addr = htonl(INADDR_ANY);
ServerAddr.sin_port = htons(80);
bind(ServerSock, (SOCKADDR *)&ServerAddr, sizeof (ServerAddr));
listen(ServerSock, 10);
while (1)
{
HANDLE hThread;
DWORD dwThreadID;
int ClientAddrSize;
ClientAddrSize = sizeof (ClientAddr);
ClientSock = accept(ServerSock, (SOCKADDR *)&ClientAddr, &ClientAddrSize);
printf ( "请求客户端 IP: %s --> 端口: %d \n" , inet_ntoa(ClientAddr.sin_addr), ntohs(ClientAddr.sin_port));
hThread = ( HANDLE )_beginthreadex(0, 0, RequestHandle, ( void *)ClientSock, 0, (unsigned *)&dwThreadID);
}
closesocket(ServerSock);
WSACleanup();
return 0;
}
|
以上就是C/C++ 实现简易HTTP服务器的示例的详细内容,更多关于C/C++ 实现简易HTTP服务器的资料请关注服务器之家其它相关文章!
原文链接:https://www.cnblogs.com/LyShark/p/13064740.html