Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
BC
public
external
sofia-sip
Commits
4a85c69c
Commit
4a85c69c
authored
Nov 28, 2008
by
Tiago Katcipis katcipis AT inf DOT ufcs DOT br
Browse files
tport_type_tls.c: add missing access() for Win32
darcs-hash:20081128145931-5c5fb-4d5fbbf2b48b37795b60f64cb478236e6cfbe071.gz
parent
532334ce
Changes
1
Hide whitespace changes
Inline
Side-by-side
libsofia-sip-ua/tport/tport_type_tls.c
View file @
4a85c69c
...
...
@@ -48,6 +48,19 @@
#include <string.h>
#include <sofia-sip/string0.h>
#if HAVE_FUNC
#elif HAVE_FUNCTION
#define __func__ __FUNCTION__
#else
static
char
const
__func__
[]
=
"tport_type_tls"
;
#endif
#if HAVE_WIN32
#include <io.h>
#define access(_filename, _mode) _access(_filename, _mode)
#define R_OK (04)
#endif
/* ---------------------------------------------------------------------- */
/* TLS */
...
...
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