资源简介
以太网ENC28J60 tcp udp。

代码片段和文件信息
/**
* \addtogroup httpd
* @{
*/
/**
* \file
* HTTP server script language C functions file.
* \author Adam Dunkels
*
* This file contains functions that are called by the web server
* scripts. The functions takes one argument and the return value is
* interpreted as follows. A zero means that the function did not
* complete and should be invoked for the next packet as well. A
* non-zero value indicates that the function has completed and that
* the web server should move along to the next script line.
*
*/
/*
* Copyright (c) 2001 Adam Dunkels.
* All rights reserved.
*
* Redistribution and use in source and binary forms with or without
* modification are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* 3. The name of the author may not be used to endorse or promote
* products derived from this software without specific prior
* written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ‘‘AS IS‘‘ AND ANY EXPRESS
* OR IMPLIED WARRANTIES INCLUDING BUT NOT LIMITED TO THE IMPLIED
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
* DIRECT INDIRECT INCIDENTAL SPECIAL EXEMPLARY OR CONSEQUENTIAL
* DAMAGES (INCLUDING BUT NOT LIMITED TO PROCUREMENT OF SUBSTITUTE
* GOODS OR SERVICES; LOSS OF USE DATA OR PROFITS; OR BUSINESS
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY
* WHETHER IN CONTRACT STRICT LIABILITY OR TORT (INCLUDING
* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
* SOFTWARE EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
* This file is part of the uIP TCP/IP stack.
*
* $Id: cgi.cv 1.23.2.4 2003/10/07 13:22:27 adam Exp $
*
*/
#include “uip.h“
#include “cgi.h“
#include “httpd.h“
#include “fs.h“
#include
#include
static u8_t print_stats(u8_t next);
static u8_t file_stats(u8_t next);
static u8_t tcp_stats(u8_t next);
cgifunction cgitab[] = {
print_stats /* CGI function “a“ */
file_stats /* CGI function “b“ */
tcp_stats /* CGI function “c“ */
};
static const char closed[] = /* “CLOSED“*/
{0x43 0x4c 0x4f 0x53 0x45 0x44 0};
static const char syn_rcvd[] = /* “SYN-RCVD“*/
{0x53 0x59 0x4e 0x2d 0x52 0x43 0x56
0x44 0};
static const char syn_sent[] = /* “SYN-SENT“*/
{0x53 0x59 0x4e 0x2d 0x53 0x45 0x4e
0x54 0};
static const char established[] = /* “ESTABLISHED“*/
{0x45 0x53 0x54 0x41 0x42 0x4c 0x49 0x53
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 2561 2008-02-12 00:15 以太网ENC28J60模块-pcb下载站\ENC28j60程序\arp.h
文件 6851 2008-10-07 11:45 以太网ENC28J60模块-pcb下载站\ENC28j60程序\cgi.c
文件 1972 2003-10-07 21:22 以太网ENC28J60模块-pcb下载站\ENC28j60程序\cgi.h
文件 11456 2011-02-13 01:07 以太网ENC28J60模块-pcb下载站\ENC28j60程序\debug\cgi.lst
文件 23879 2011-02-13 01:07 以太网ENC28J60模块-pcb下载站\ENC28j60程序\debug\cgi.obj
文件 23507 2011-02-13 01:07 以太网ENC28J60模块-pcb下载站\ENC28j60程序\debug\enc28j60.lst
文件 45398 2011-02-13 01:07 以太网ENC28J60模块-pcb下载站\ENC28j60程序\debug\enc28j60.obj
文件 3655 2011-02-13 01:07 以太网ENC28J60模块-pcb下载站\ENC28j60程序\debug\example0.lst
文件 18975 2011-02-13 01:07 以太网ENC28J60模块-pcb下载站\ENC28j60程序\debug\example0.obj
文件 3721 2011-02-13 01:07 以太网ENC28J60模块-pcb下载站\ENC28j60程序\debug\example1.lst
文件 18908 2011-02-13 01:07 以太网ENC28J60模块-pcb下载站\ENC28j60程序\debug\example1.obj
文件 7514 2011-02-13 01:07 以太网ENC28J60模块-pcb下载站\ENC28j60程序\debug\fs.lst
文件 22029 2011-02-13 01:07 以太网ENC28J60模块-pcb下载站\ENC28j60程序\debug\fs.obj
文件 51681 2011-02-13 01:07 以太网ENC28J60模块-pcb下载站\ENC28j60程序\debug\fsdata.lst
文件 15936 2011-02-13 01:07 以太网ENC28J60模块-pcb下载站\ENC28j60程序\debug\fsdata.obj
文件 17999 2011-02-13 01:07 以太网ENC28J60模块-pcb下载站\ENC28j60程序\debug\httpd.lst
文件 28333 2011-02-13 01:07 以太网ENC28J60模块-pcb下载站\ENC28j60程序\debug\httpd.obj
文件 8728 2011-02-13 01:07 以太网ENC28J60模块-pcb下载站\ENC28j60程序\debug\main.lst
文件 32859 2011-02-13 01:07 以太网ENC28J60模块-pcb下载站\ENC28j60程序\debug\main.obj
文件 4871 2011-02-12 21:34 以太网ENC28J60模块-pcb下载站\ENC28j60程序\debug\MCU_UART.lst
文件 4198 2011-02-12 21:34 以太网ENC28J60模块-pcb下载站\ENC28j60程序\debug\MCU_UART.obj
文件 1669 2011-02-13 01:07 以太网ENC28J60模块-pcb下载站\ENC28j60程序\debug\spi.lst
文件 15971 2011-02-13 01:07 以太网ENC28J60模块-pcb下载站\ENC28j60程序\debug\spi.obj
文件 23501 2011-02-12 21:34 以太网ENC28J60模块-pcb下载站\ENC28j60程序\debug\splc501.lst
文件 12112 2011-02-12 21:34 以太网ENC28J60模块-pcb下载站\ENC28j60程序\debug\splc501.obj
文件 2140 2011-02-13 01:07 以太网ENC28J60模块-pcb下载站\ENC28j60程序\debug\tcp_server.lst
文件 16507 2011-02-13 01:07 以太网ENC28J60模块-pcb下载站\ENC28j60程序\debug\tcp_server.obj
文件 339653 2011-02-13 01:07 以太网ENC28J60模块-pcb下载站\ENC28j60程序\debug\uIP
文件 59827 2011-02-13 01:07 以太网ENC28J60模块-pcb下载站\ENC28j60程序\debug\uIP.hex
文件 377 2011-02-13 01:07 以太网ENC28J60模块-pcb下载站\ENC28j60程序\debug\uIP.lnp
............此处省略62个文件信息
- 上一篇:pthread多线程计算pi
- 下一篇:字库文件HZK12 HZK16 ASC II
相关资源
- Modbus协议官方文档中、英文全
- Omron ETN21模块进行modbustcp通讯
- 使用选择性重传协议实现UDP可靠通信
- 组态王中S7-300TCP驱动
- 基于Apache Mina实现的TCP长连接和短连接
- CVI下的TCP服务器和客户端
- 代码客:G-TcpServer(IOCP) 1.0 正式版及
- 网络(UDP)转串口程序
- TCP 发包工具(windows)
- 用Socket写的简易FTP服务器和客户端
- VxWorks TCPIP协议栈
- socket小工具(可方便建立TCP UDP的soc
- UDP组播的发送和接收程序
- vc 编写的基于TCP协议的客户/服务器
- 基于CSocket的多人聊天室
- 采用WINSOCK2 编写的TCP/UDP通信程序
- Modbus TCP Client
- 易语言 TCP使用HTTP、SOCKES5代理IP。
- 西门子S7-1200 MODBUS-TCP通讯编程
- 200SMART Modbus-TCP通信程序演示-轮询(多
- TCP_UDP对结构体加密数据传输
- 基于PIC的TCP/IP网络协议和zigbee无线传
- 欧姆龙PLC tcp通信工具
- 欧姆龙以太网通讯TCP/UDP及欧姆龙PLC程
- 流媒体相关协议标准RTP/RTSP/RTCP PDF文档
- 航海模拟器中DCPA TCPA的算法
- UDP协议进行P2P打洞
- TCPMP 支持ce6.0的播放器
- TCP/IP协议详解3卷全_高清_带书签
- stm32103c8t6ESP8266串口转WIFI模块TCP服务器
评论
共有 条评论