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
belle-sip
Commits
c84b3cdd
Commit
c84b3cdd
authored
Mar 28, 2013
by
Sylvain Berfini
🐮
Browse files
Added exports
parent
fa6048d4
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
5 deletions
+5
-5
build/windows/belle-sip/belle-sip.vcxproj
build/windows/belle-sip/belle-sip.vcxproj
+2
-2
include/belle-sip/list.h
include/belle-sip/list.h
+1
-1
include/belle-sip/listeningpoint.h
include/belle-sip/listeningpoint.h
+2
-2
No files found.
build/windows/belle-sip/belle-sip.vcxproj
View file @
c84b3cdd
...
...
@@ -228,8 +228,8 @@
<ClCompile
Include=
"..\..\..\src\transaction.c"
/>
<ClCompile
Include=
"..\..\..\src\transports\stream_channel.c"
/>
<ClCompile
Include=
"..\..\..\src\transports\stream_listeningpoint.c"
/>
<ClCompile
Include=
"..\..\..\src\transports\tls_channel.c"
/>
<ClCompile
Include=
"..\..\..\src\transports\tls_listeningpoint.c"
/>
<ClCompile
Include=
"..\..\..\src\transports\tls_channel
_polarssl
.c"
/>
<ClCompile
Include=
"..\..\..\src\transports\tls_listeningpoint
_polarssl
.c"
/>
<ClCompile
Include=
"..\..\..\src\transports\udp_channel.c"
/>
<ClCompile
Include=
"..\..\..\src\transports\udp_listeningpoint.c"
/>
</ItemGroup>
...
...
include/belle-sip/list.h
View file @
c84b3cdd
...
...
@@ -31,7 +31,7 @@ belle_sip_list_t * belle_sip_list_last_elem(const belle_sip_list_t *l);
BELLESIP_EXPORT
belle_sip_list_t
*
belle_sip_list_free
(
belle_sip_list_t
*
elem
);
belle_sip_list_t
*
belle_sip_list_concat
(
belle_sip_list_t
*
first
,
belle_sip_list_t
*
second
);
belle_sip_list_t
*
belle_sip_list_remove
(
belle_sip_list_t
*
first
,
void
*
data
);
int
belle_sip_list_size
(
const
belle_sip_list_t
*
first
);
BELLESIP_EXPORT
int
belle_sip_list_size
(
const
belle_sip_list_t
*
first
);
void
belle_sip_list_for_each
(
const
belle_sip_list_t
*
list
,
void
(
*
func
)(
void
*
));
BELLESIP_EXPORT
void
belle_sip_list_for_each2
(
const
belle_sip_list_t
*
list
,
void
(
*
func
)(
void
*
,
void
*
),
void
*
user_data
);
belle_sip_list_t
*
belle_sip_list_remove_link
(
belle_sip_list_t
*
list
,
belle_sip_list_t
*
elem
);
...
...
include/belle-sip/listeningpoint.h
View file @
c84b3cdd
...
...
@@ -59,11 +59,11 @@ BELLESIP_EXPORT void belle_sip_listening_point_clean_channels(belle_sip_listenin
BELLESIP_EXPORT
int
belle_sip_listening_point_get_channel_count
(
const
belle_sip_listening_point_t
*
lp
);
BELLESIP_EXPORT
int
belle_sip_listening_point_get_well_known_port
(
const
char
*
transport
);
int
belle_sip_tls_listening_point_set_root_ca
(
belle_sip_tls_listening_point_t
*
s
,
const
char
*
path
);
BELLESIP_EXPORT
int
belle_sip_tls_listening_point_set_root_ca
(
belle_sip_tls_listening_point_t
*
s
,
const
char
*
path
);
#define BELLE_SIP_TLS_LISTENING_POINT_BADCERT_CN_MISMATCH (1)
#define BELLE_SIP_TLS_LISTENING_POINT_BADCERT_ANY_REASON (0xff)
int
belle_sip_tls_listening_point_set_verify_exceptions
(
belle_sip_tls_listening_point_t
*
s
,
int
flags
);
BELLESIP_EXPORT
int
belle_sip_tls_listening_point_set_verify_exceptions
(
belle_sip_tls_listening_point_t
*
s
,
int
flags
);
...
...
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