Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
M
mongoose
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
esp
mongoose
Commits
63909b59
Commit
63909b59
authored
Jan 10, 2014
by
Sergey Lyubka
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added __cdecl to SSL decls to make sure correct linkage with OpenSSL which is cdecl
parent
7380c652
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
14 deletions
+14
-14
mongoose.c
mongoose.c
+14
-14
No files found.
mongoose.c
View file @
63909b59
...
...
@@ -126,20 +126,20 @@ typedef struct ssl_ctx_st SSL_CTX;
typedef
struct
ssl_st
SSL
;
typedef
struct
ssl_method_st
SSL_METHOD
;
extern
void
SSL_free
(
SSL
*
);
extern
int
SSL_accept
(
SSL
*
);
extern
int
SSL_connect
(
SSL
*
);
extern
int
SSL_read
(
SSL
*
,
void
*
,
int
);
extern
int
SSL_write
(
SSL
*
,
const
void
*
,
int
);
extern
int
SSL_set_fd
(
SSL
*
,
int
);
extern
SSL
*
SSL_new
(
SSL_CTX
*
);
extern
SSL_CTX
*
SSL_CTX_new
(
SSL_METHOD
*
);
extern
SSL_METHOD
*
SSLv23_server_method
(
void
);
extern
int
SSL_library_init
(
void
);
extern
int
SSL_CTX_use_PrivateKey_file
(
SSL_CTX
*
,
const
char
*
,
int
);
extern
int
SSL_CTX_use_certificate_file
(
SSL_CTX
*
,
const
char
*
,
int
);
extern
int
SSL_CTX_use_certificate_chain_file
(
SSL_CTX
*
,
const
char
*
);
extern
void
SSL_CTX_free
(
SSL_CTX
*
);
extern
void
__cdecl
SSL_free
(
SSL
*
);
extern
int
__cdecl
SSL_accept
(
SSL
*
);
extern
int
__cdecl
SSL_connect
(
SSL
*
);
extern
int
__cdecl
SSL_read
(
SSL
*
,
void
*
,
int
);
extern
int
__cdecl
SSL_write
(
SSL
*
,
const
void
*
,
int
);
extern
int
__cdecl
SSL_set_fd
(
SSL
*
,
int
);
extern
SSL
*
__cdecl
SSL_new
(
SSL_CTX
*
);
extern
SSL_CTX
*
__cdecl
SSL_CTX_new
(
SSL_METHOD
*
);
extern
SSL_METHOD
*
__cdecl
SSLv23_server_method
(
void
);
extern
int
__cdecl
SSL_library_init
(
void
);
extern
int
__cdecl
SSL_CTX_use_PrivateKey_file
(
SSL_CTX
*
,
const
char
*
,
int
);
extern
int
__cdecl
SSL_CTX_use_certificate_file
(
SSL_CTX
*
,
const
char
*
,
int
);
extern
int
__cdecl
SSL_CTX_use_certificate_chain_file
(
SSL_CTX
*
,
const
char
*
);
extern
void
__cdecl
SSL_CTX_free
(
SSL_CTX
*
);
#endif
#endif
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment