?? http.c
字號:
//-----------------------------------------------------------------------------
// 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 + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -