http.c
来自「这是为51单片机编的tcpip协议栈」· C语言 代码 · 共 26 行
C
26 行
//-----------------------------------------------------------------------------
// Net HTTP.C
//
// This module is the Web Server
// It currently serves a html text page and a jpeg image, or handles
// a POST message to turn an LED on or off.
// The HTTP protocol specification is at http://www.w3.org/Protocols/
//-----------------------------------------------------------------------------
#include <string.h>
#include <stdlib.h>
#include <ctype.h> // toupper
#include "AT89X52.h"
#include "net.h"
#include "serial.h"
#include "cksum.h"
#include "ip.h"
#include "tcp.h"
#include "http.h"
// These structures keep track of connection information
extern CONNECTION xdata conxn[];
extern ULONG code my_ipaddr;
extern char xdata text[];
extern UINT idata cpu_temperature; //ㄓ
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?