mirror of
https://github.com/apache/nuttx.git
synced 2026-06-05 07:12:54 +08:00
Filename changes needed by ZDS archiver
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@1452 42af7a65-404d-4744-a932-0658087f49c3
This commit is contained in:
@@ -34,4 +34,4 @@
|
||||
############################################################################
|
||||
|
||||
WEBSERVER_ASRCS =
|
||||
WEBSERVER_CSRCS = httpd.c httpd-fs.c httpd-cgi.c
|
||||
WEBSERVER_CSRCS = httpd.c httpd_fs.c httpd_cgi.c
|
||||
|
||||
@@ -62,7 +62,7 @@
|
||||
#include <net/uip/httpd.h>
|
||||
|
||||
#include "httpd.h"
|
||||
#include "httpd-cgi.h"
|
||||
#include "httpd_cgi.h"
|
||||
|
||||
/****************************************************************************
|
||||
* Definitions
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
/* httpd-cgi.c
|
||||
/* httpd_cgi.c
|
||||
* Web server script interface
|
||||
* Author: Adam Dunkels <adam@sics.se>
|
||||
*
|
||||
@@ -39,7 +39,7 @@
|
||||
#include <net/uip/uip.h>
|
||||
#include <net/uip/httpd.h>
|
||||
|
||||
#include "httpd-cgi.h"
|
||||
#include "httpd_cgi.h"
|
||||
|
||||
#define CONFIG_HTTPDCGI_FILESTATS 1
|
||||
#undef CONFIG_HTTPDCGI_DCPSTATS
|
||||
@@ -1,4 +1,4 @@
|
||||
/* httpd-cgi.h
|
||||
/* httpd_cgi.h
|
||||
* Web server script interface header file
|
||||
* Author: Adam Dunkels <adam@sics.se>
|
||||
*
|
||||
@@ -1,7 +1,7 @@
|
||||
/****************************************************************************
|
||||
* netutils/webserver/httpd-fs.c
|
||||
* netutils/webserver/httpd_fs.c
|
||||
*
|
||||
* Copyright (C) 2007 Gregory Nutt. All rights reserved.
|
||||
* Copyright (C) 2007, 2008 Gregory Nutt. All rights reserved.
|
||||
* Author: Gregory Nutt <spudmonkey@racsa.co.cr>
|
||||
*
|
||||
* Based on uIP which also has a BSD style license:
|
||||
@@ -46,13 +46,13 @@
|
||||
#include <net/uip/httpd.h>
|
||||
|
||||
#include "httpd.h"
|
||||
#include "httpd-fsdata.h"
|
||||
#include "httpd_fsdata.h"
|
||||
|
||||
#ifndef NULL
|
||||
#define NULL 0
|
||||
#endif /* NULL */
|
||||
|
||||
#include "httpd-fsdata.c"
|
||||
#include "httpd_fsdata.c"
|
||||
|
||||
#if HTTPD_FS_STATISTICS
|
||||
static uint16 count[HTTPD_FS_NUMFILES];
|
||||
@@ -1,7 +1,7 @@
|
||||
/****************************************************************************
|
||||
* netutils/webserver/httpd-fsdata.h
|
||||
* netutils/webserver/httpd_fsdata.h
|
||||
*
|
||||
* Copyright (C) 2007 Gregory Nutt. All rights reserved.
|
||||
* Copyright (C) 2007, 2008 Gregory Nutt. All rights reserved.
|
||||
* Author: Gregory Nutt <spudmonkey@racsa.co.cr>
|
||||
*
|
||||
* Based on uIP which also has a BSD style license:
|
||||
@@ -53,9 +53,9 @@
|
||||
struct httpd_fsdata_file
|
||||
{
|
||||
const struct httpd_fsdata_file *next;
|
||||
const unsigned char *name;
|
||||
const unsigned char *data;
|
||||
const int len;
|
||||
FAR const ubyte *name;
|
||||
FAR const ubyte *data;
|
||||
int len;
|
||||
#ifdef HTTPD_FS_STATISTICS
|
||||
#if HTTPD_FS_STATISTICS == 1
|
||||
uint16 count;
|
||||
@@ -65,9 +65,9 @@ struct httpd_fsdata_file
|
||||
|
||||
struct httpd_fsdata_file_noconst
|
||||
{
|
||||
struct httpd_fsdata_file *next;
|
||||
char *name;
|
||||
char *data;
|
||||
FAR struct httpd_fsdata_file *next;
|
||||
FAR char *name;
|
||||
FAR char *data;
|
||||
int len;
|
||||
#ifdef HTTPD_FS_STATISTICS
|
||||
#if HTTPD_FS_STATISTICS == 1
|
||||
Reference in New Issue
Block a user