资源简介
该c++ web server基于boost.asio库编写,同时支持http和https协议。该工程基于vs2015编译通过,相关配置和说明见readme.txt

代码片段和文件信息
/*
* Copyright 2004-2016 The OpenSSL Project Authors. All Rights Reserved.
*
* Licensed under the OpenSSL license (the “License“). You may not use
* this file except in compliance with the License. You can obtain a copy
* in the file LICENSE in the source distribution or at
* https://www.openssl.org/source/license.html
*/
#define APPlink_STDIN 1
#define APPlink_STDOUT 2
#define APPlink_STDERR 3
#define APPlink_FPRINTF 4
#define APPlink_FGETS 5
#define APPlink_FREAD 6
#define APPlink_FWRITE 7
#define APPlink_FSETMOD 8
#define APPlink_FEOF 9
#define APPlink_FCLOSE 10 /* should not be used */
#define APPlink_FOPEN 11 /* solely for completeness */
#define APPlink_FSEEK 12
#define APPlink_FTELL 13
#define APPlink_FFLUSH 14
#define APPlink_FERROR 15
#define APPlink_CLEARERR 16
#define APPlink_FILENO 17 /* to be used with below */
#define APPlink_OPEN 18 /* formally can‘t be used as flags can vary */
#define APPlink_READ 19
#define APPlink_WRITE 20
#define APPlink_LSEEK 21
#define APPlink_CLOSE 22
#define APPlink_MAX 22 /* always same as last macro */
#ifndef APPMACROS_ONLY
# include
# include
# include
static void *app_stdin(void)
{
return stdin;
}
static void *app_stdout(void)
{
return stdout;
}
static void *app_stderr(void)
{
return stderr;
}
static int app_feof(FILE *fp)
{
return feof(fp);
}
static int app_ferror(FILE *fp)
{
return ferror(fp);
}
static void app_clearerr(FILE *fp)
{
clearerr(fp);
}
static int app_fileno(FILE *fp)
{
return _fileno(fp);
}
static int app_fsetmod(FILE *fp char mod)
{
return _setmode(_fileno(fp) mod == ‘b‘ ? _O_BINARY : _O_TEXT);
}
#ifdef __cplusplus
extern “C“ {
#endif
__declspec(dllexport)
void **
# if defined(__BORLANDC__)
/*
* __stdcall appears to be the only way to get the name
* decoration right with Borland C. Otherwise it works
* purely incidentally as we pass no parameters.
*/
__stdcall
# else
__cdecl
# endif
OPENSSL_Applink(void)
{
static int once = 1;
static void *OPENSSL_ApplinkTable[APPlink_MAX + 1] =
{ (void *)APPlink_MAX };
if (once) {
OPENSSL_ApplinkTable[APPlink_STDIN] = app_stdin;
OPENSSL_ApplinkTable[APPlink_STDOUT] = app_stdout;
OPENSSL_ApplinkTable[APPlink_STDERR] = app_stderr;
OPENSSL_ApplinkTable[APPlink_FPRINTF] = fprintf;
OPENSSL_ApplinkTable[APPlink_FGETS] = fgets;
OPENSSL_ApplinkTable[APPlink_FREAD] = fread;
OPENSSL_ApplinkTable[APPlink_FWRITE] = fwrite;
OPENSSL_ApplinkTable[APPlink_FSETMOD] = app_fsetmod;
OPENSSL_ApplinkTable[APPlink_FEOF] = app_feof;
OPENSSL_ApplinkTable[APPlink_FCLOSE] = fclose;
OPENSSL_ApplinkTable[APPlink_FOPEN] = fopen;
OPENSSL_ApplinkTable[APPlink_FSEEK] = fseek;
OPENSSL_ApplinkTable[APPlink_FTELL] = ftell;
OPENSSL_ApplinkTable[APPlink_FFLUSH] = fflush;
OPENSSL_ApplinkTable[APPlink_
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
..A..H. 73216 2018-07-27 21:14 web_servers\.vs\web_servers\v14\.suo
文件 1265 2018-07-25 23:02 web_servers\bin\googleapis.cer
文件 1098 2018-07-25 22:59 web_servers\bin\googleapis.csr
文件 1679 2018-07-25 23:01 web_servers\bin\googleapis.key
文件 372224 2018-07-27 21:10 web_servers\bin\web_servers.exe
文件 3349 2018-03-16 15:55 web_servers\include\openssl\aes.h
文件 3508 2018-03-16 15:55 web_servers\include\openssl\appli
文件 46411 2018-03-16 15:55 web_servers\include\openssl\asn1.h
文件 32502 2018-03-16 15:55 web_servers\include\openssl\asn1t.h
文件 395 2018-03-16 15:55 web_servers\include\openssl\asn1_mac.h
文件 3292 2018-03-16 15:55 web_servers\include\openssl\async.h
文件 37711 2018-03-16 15:55 web_servers\include\openssl\bio.h
文件 1847 2018-03-16 15:55 web_servers\include\openssl\blowfish.h
文件 24932 2018-03-16 15:55 web_servers\include\openssl\bn.h
文件 2055 2018-03-16 15:55 web_servers\include\openssl\buffer.h
文件 3179 2018-03-16 15:55 web_servers\include\openssl\camellia.h
文件 1674 2018-03-16 15:55 web_servers\include\openssl\cast.h
文件 1064 2018-03-16 15:55 web_servers\include\openssl\cmac.h
文件 26518 2018-03-16 15:55 web_servers\include\openssl\cms.h
文件 2033 2018-03-16 15:55 web_servers\include\openssl\comp.h
文件 8073 2018-03-16 15:55 web_servers\include\openssl\conf.h
文件 1300 2018-03-16 15:55 web_servers\include\openssl\conf_api.h
文件 18019 2018-03-16 15:55 web_servers\include\openssl\crypto.h
文件 18985 2018-03-16 15:55 web_servers\include\openssl\ct.h
文件 7627 2018-03-16 15:55 web_servers\include\openssl\des.h
文件 14661 2018-03-16 15:55 web_servers\include\openssl\dh.h
文件 11773 2018-03-16 15:55 web_servers\include\openssl\dsa.h
文件 1616 2018-03-16 15:55 web_servers\include\openssl\dtls1.h
文件 924 2018-03-16 15:55 web_servers\include\openssl\ebcdic.h
文件 70408 2018-03-16 15:55 web_servers\include\openssl\ec.h
............此处省略88个文件信息
- 上一篇:车辆信息管理系统C++版
- 下一篇:任务书2一元稀疏多项式计算器数据结构报告
相关资源
- 国际象棋的qt源代码
- C++中头文件与源文件的作用详解
- C++多线程网络编程Socket
- VC++ 多线程文件读写操作
- 利用C++哈希表的方法实现电话号码查
- 移木块游戏,可以自编自玩,vc6.0编写
- C++纯文字DOS超小RPG游戏
- VC++MFC小游戏实例教程(实例)+MFC类库
- 连铸温度场计算程序(C++)
- 6自由度机器人运动学正反解C++程序
- Em算法(使用C++编写)
- libstdc++-4.4.7-4.el6.i686.rpm
- VC++实现CMD命令执行与获得返回信息
- 白话C++(全)
- C++标准库第1、2
- 大数类c++大数类
- C++语言编写串口调试助手
- c++素数筛选法
- C++ mqtt 用法
- 商品库存管理系统 C++ MFC
- c++ 多功能计算器
- C++17 In Detail
- 嵌入式QtC++编程课件
- 颜色识别形状识别STM103嵌入式代码
- c++ 邮件多附件群发
- c++ 透明代理(hookproxy)
- mfc 调用redis
- FTP客户端源码(c++)
- c++ 画图(14Qt-XPS)
- c++多边形交并差运算
评论
共有 条评论