📄 httpd_msg.c
字号:
/*
* $Id: httpd_msg.c,v 1.0 2003/02/21 00:11:04 csm Exp $
* $Copyright: (c) 2002, 2003 Broadcom Corp.
* All Rights Reserved.$
*/
/***********************************************************************
* iMpacct Technology Corporation. Copyright 2001 - 2100. *
* ALL RIGHTS RESERVED *
*----------------------------------------------------------------------*
* Project : RoboSwitch
* Creator : Gary Chen / iMpacct 04/08/2002
* File : httpd_msg.c
* Description: Collect httpd messages
*
* History:
*
************************************************************************/
char* ok200title = "OK";
char* ok206title = "Partial Content";
char* err302title = "Found";
char* err302form = "The actual URL is '%.80s'.\n";
char* err304title = "Not Modified";
char* httpd_err400title = "Bad Request";
char* httpd_err400form = "Your request has bad syntax or is inherently impossible to satisfy.\n";
char* err401title = "Unauthorized";
char* err401form = "Authorization required for the URL '%.80s'.\n";
char* err403title = "Forbidden";
char* err403form =
"You do not have permission to get URL '%.80s' from this server.\n";
char* err404title = "Not Found";
char* err404form =
"The requested URL '%.80s' was not found on this server.\n";
char* httpd_err408title = "Request Timeout";
char* httpd_err408form =
"No request appeared within a reasonable time period.\n";
char* err500title = "Internal Error";
char* err500form =
"There was an unusual problem serving the requested URL '%.80s'.\n";
char* err501title = "Not Implemented";
char* err501form =
"The requested method '%.80s' is not implemented by this server.\n";
char* httpd_err503title = "Service Temporarily Overloaded";
char* httpd_err503form =
"The requested URL '%.80s' is temporarily overloaded. Please try again later.\n";
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -