📄 ssl_ssi.c
字号:
/*******************************************************************************
ssl_ssi.c
Z-World, 2003
A basic contoller. This creates four 'devices' (lights), and four
buttons to toggle them. Users can browse to the device, and change
the status of the lights.
This program has been modified to use SSL via HTTPS. See the
SSL comments below for more information.
See the SSL Walkthrough for information on creating certificates
for SSL programs.
*******************************************************************************/
#class auto
/***********************************
* Configuration *
* ------------- *
* All fields in this section must *
* be altered to match your local *
* network settings. *
***********************************/
/*
* Pick the predefined TCP/IP configuration for this sample. See
* LIB\TCPIP\TCP_CONFIG.LIB for instructions on how to set the
* configuration.
*/
#define TCPCONFIG 1
/*
* TCP/IP modification - reduce TCP socket buffer
* size, to allow more connections. This can be increased,
* with increased performance, if the number of sockets
* are reduced. Note that this buffer size is split in
* two for TCP sockets--1024 bytes for send and 1024 bytes
* for receive.
*/
#define TCP_BUF_SIZE 2048
/*
* Web server configuration
*/
/*
* only one socket and server are needed for a reserved port,
* but to use HTTP and HTTPS on the same device, 2 servers
* are needed, one for HTTP and one for HTTPS. To use only
* HTTPS, change HTTP_MAXSERVERS to match HTTP_SSL_SOCKETS.
*/
#define HTTP_MAXSERVERS 2
#define MAX_TCP_SOCKET_BUFFERS 2
// This macro determines the number of HTTP servers that will use
// SSL (HTTPS servers). In this case, we have 2 total servers, and
// this defines one of them to be HTTPS
#define HTTP_SSL_SOCKETS 1
/*
* Our web server as seen from the clients.
* This should be the address that the clients (netscape/IE)
* use to access your server. Usually, this is your IP address.
* If you are behind a firewall, though, it might be a port on
* the proxy, that will be forwarded to the Rabbit board. The
* commented out line is an example of such a situation.
*/
#define REDIRECTHOST _PRIMARY_STATIC_IP
//#define REDIRECTHOST "proxy.domain.com:1212"
// SSL Stuff
// This macro tells the HTTP library to use SSL
#define USE_HTTP_SSL
// Import the certificate
#ximport "cert\mycert.dcc" SSL_CERTIFICATE
/********************************
* End of configuration section *
********************************/
/*
* REDIRECTTO is used by each ledxtoggle cgi's to tell the
* browser which page to hit next. The default REDIRECTTO
* assumes that you are serving a page that does not have
* any address translation applied to it.
* Note that this sample uses HTTPS, so the http:// has
* been changed to https://
*
*/
#define REDIRECTTO "https://" REDIRECTHOST "/index.shtml"
#memmap xmem
#use "dcrtcp.lib"
#use "http.lib"
/*
* Notice that we have ximported in the source code for
* this program. This allows us to <!--#include file="ssi.c"-->
* in the pages/showsrc.shtml.
*
*/
#ximport "pages/ledon.gif" ledon_gif
#ximport "pages/ssi.shtml" index_html
#ximport "pages/rabbit1.gif" rabbit1_gif
#ximport "pages/ledoff.gif" ledoff_gif
#ximport "pages/button.gif" button_gif
#ximport "pages/showsrc.shtml" showsrc_shtml
#ximport "ssl_ssi.c" ssi_c
/*
* In this case the .html is not the first type in the
* type table. This causes the default (no extension)
* to assume the shtml_handler.
*
*/
/* the default for / must be first */
const HttpType http_types[] =
{
{ ".shtml", "text/html", shtml_handler}, // ssi
{ ".html", "text/html", NULL}, // html
{ ".cgi", "", NULL}, // cgi
{ ".gif", "image/gif", NULL}
};
/*
* Each ledx contains a text string that is either
* "ledon.gif" or "ledoff.gif" This string is toggled
* each time the ledxtoggle.cgi is requested from the
* browser.
*
*/
char led1[15];
char led2[15];
char led3[15];
char led4[15];
/*
* Instead of sending other text back from the cgi's
* we have decided to redirect them to the original page.
* the cgi_redirectto forms a header which will redirect
* the browswer back to the main page.
*
*/
int led1toggle(HttpState* state)
{
if (strcmp(led1,"ledon.gif")==0)
strcpy(led1,"ledoff.gif");
else
strcpy(led1,"ledon.gif");
cgi_redirectto(state,REDIRECTTO);
return 0;
}
int led2toggle(HttpState* state)
{
if (strcmp(led2,"ledon.gif")==0)
strcpy(led2,"ledoff.gif");
else
strcpy(led2,"ledon.gif");
cgi_redirectto(state,REDIRECTTO);
return 0;
}
int led3toggle(HttpState* state)
{
if (strcmp(led3,"ledon.gif")==0)
strcpy(led3,"ledoff.gif");
else
strcpy(led3,"ledon.gif");
cgi_redirectto(state,REDIRECTTO);
return 0;
}
int led4toggle(HttpState* state)
{
if (strcmp(led4,"ledon.gif")==0)
strcpy(led4,"ledoff.gif");
else
strcpy(led4,"ledon.gif");
cgi_redirectto(state,REDIRECTTO);
return 0;
}
const HttpSpec http_flashspec[] =
{
{ HTTPSPEC_FILE, "/", index_html, NULL, 0, NULL, NULL},
{ HTTPSPEC_FILE, "/index.shtml", index_html, NULL, 0, NULL, NULL},
{ HTTPSPEC_FILE, "/showsrc.shtml", showsrc_shtml, NULL, 0, NULL, NULL},
{ HTTPSPEC_FILE, "/ledon.gif", ledon_gif, NULL, 0, NULL, NULL},
{ HTTPSPEC_FILE, "/rabbit1.gif", rabbit1_gif, NULL, 0, NULL, NULL},
{ HTTPSPEC_FILE, "/ledoff.gif", ledoff_gif, NULL, 0, NULL, NULL},
{ HTTPSPEC_FILE, "/button.gif", button_gif, NULL, 0, NULL, NULL},
{ HTTPSPEC_FILE, "ssi.c", ssi_c, NULL, 0, NULL, NULL},
{ HTTPSPEC_VARIABLE, "led1", 0, led1, PTR16, "%s", NULL},
{ HTTPSPEC_VARIABLE, "led2", 0, led2, PTR16, "%s", NULL},
{ HTTPSPEC_VARIABLE, "led3", 0, led3, PTR16, "%s", NULL},
{ HTTPSPEC_VARIABLE, "led4", 0, led4, PTR16, "%s", NULL},
{ HTTPSPEC_FUNCTION, "/led1tog.cgi", 0, led1toggle, 0, NULL, NULL},
{ HTTPSPEC_FUNCTION, "/led2tog.cgi", 0, led2toggle, 0, NULL, NULL},
{ HTTPSPEC_FUNCTION, "/led3tog.cgi", 0, led3toggle, 0, NULL, NULL},
{ HTTPSPEC_FUNCTION, "/led4tog.cgi", 0, led4toggle, 0, NULL, NULL},
};
void main()
{
strcpy(led1,"ledon.gif");
strcpy(led2,"ledon.gif");
strcpy(led3,"ledoff.gif");
strcpy(led4,"ledon.gif");
sock_init();
http_init();
tcp_reserveport(80);
// We need to reserve the HTTPS port as well, which is TCP port 443
tcp_reserveport(443);
while (1) {
http_handler();
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -