资源简介
利用curl开源库以及openssl官方发布的编译好的lib、dll、h文件,通过cmake对curl源码处理,在vs2017x64下编译通过,并且应用在自己的AiBaidu的测试项目中
代码片段和文件信息
/*
* 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[
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2019-09-29 07:50 curl\
文件 107327 2019-09-27 17:28 curl\curl.h
文件 3039 2019-09-27 17:28 curl\curlver.h
文件 3643 2019-09-27 17:28 curl\easy.h
文件 2074 2019-09-27 17:28 curl\mprintf.h
文件 16723 2019-09-27 17:28 curl\multi.h
目录 0 2019-09-27 17:28 curl\openssl\
文件 572 2019-09-27 17:28 curl\openssl\__DECC_INCLUDE_EPILOGUE.H
文件 647 2019-09-27 17:28 curl\openssl\__DECC_INCLUDE_PROLOGUE.H
文件 3441 2019-09-27 17:28 curl\openssl\aes.h
文件 3646 2019-09-27 17:28 curl\openssl\appli
文件 34513 2019-09-27 17:28 curl\openssl\asn1.h
文件 405 2019-09-27 17:28 curl\openssl\asn1_mac.h
文件 14855 2019-09-27 17:28 curl\openssl\asn1err.h
文件 33885 2019-09-27 17:28 curl\openssl\asn1t.h
文件 2474 2019-09-27 17:28 curl\openssl\async.h
文件 1368 2019-09-27 17:28 curl\openssl\asyncerr.h
文件 35668 2019-09-27 17:28 curl\openssl\bio.h
文件 6524 2019-09-27 17:28 curl\openssl\bioerr.h
文件 1908 2019-09-27 17:28 curl\openssl\blowfish.h
文件 22674 2019-09-27 17:28 curl\openssl\bn.h
文件 5007 2019-09-27 17:28 curl\openssl\bnerr.h
文件 1658 2019-09-27 17:28 curl\openssl\buffer.h
文件 854 2019-09-27 17:28 curl\openssl\buffererr.h
文件 3262 2019-09-27 17:28 curl\openssl\camellia.h
文件 1727 2019-09-27 17:28 curl\openssl\cast.h
文件 1105 2019-09-27 17:28 curl\openssl\cmac.h
文件 16718 2019-09-27 17:28 curl\openssl\cms.h
文件 11362 2019-09-27 17:28 curl\openssl\cmserr.h
文件 1381 2019-09-27 17:28 curl\openssl\comp.h
文件 1256 2019-09-27 17:28 curl\openssl\comperr.h
............此处省略97个文件信息
- 上一篇:联想BIOS去白名单工具.zip
- 下一篇:SnapGene3.2.1.zip
相关资源
- cmake-3.11.1-win64-x64.msi
- ActivePerl 5.26.0.2600 x86 x64支持32位系统安
- fbx20132_converter_win_x64
- DiskGeniusv4.7.2-x64.7z
- cmake-3.11.1-win64-x64
- Win64OpenSSL-1_0_1e.exe
- 最新的OPENSSL1.1.0编译好的
- heroku-x64.exe
- OPC UA Client SDK 包含WIN32&x64;库及测试程
- Intel x86 & x64 汇编指令集共七卷
- pandoc 2.2.3.2 x86 x64
- DiskGenius4.9.1-X64.rar
- ios openssl静态库 (libssl.a和libcrypto.a)
- DiskGeniusX86X64.rar
- 最新版windows node-v12.18.3-x64.msi
- SlickEdit Pro 2016 V21 WIN与LINUX x64 破解
- DiskGeniusV4.7.2_x32_x64(完美破解版).
- jdk-8u241-windows-x64 .zip
- IDA_Pro_v7.0_and_Hex-Rays_Decompiler_(ARMx64
- jdk-7u60-windows-x64.exe
- jdk-13_windows-x64_bin.exe
- instantclient-basic-windows.x64-11.2.0.4.0
- jdk-8u231-macosx-x64.dmg JDK8最新官方SDK
- 最新版windows jdk-8u271-windows-x64.exe
- instantclient_19_3_windows_x64_19.3.zip
- UltraEdit_V24.10.0.32_X64
- vsCode-win32-x64.zip压缩包
- tor-browser-linux64-7.0.9_zh-CN.tar.xz
- jdk1.6.0_26_x64
- OpenCV-2.4.1_build&tbb;_vs_(x64)05/08/10三种
评论
共有 条评论