Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
libnice
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
cpp-libs
libnice
Commits
07af02cf
Commit
07af02cf
authored
Jan 23, 2014
by
Olivier Crête
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
nice: Add nice_agent_build_io_stream to exported symbols
parent
18e2e3a2
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
9 additions
and
5 deletions
+9
-5
agent/agent.c
agent/agent.c
+1
-0
nice/libnice.sym
nice/libnice.sym
+1
-0
tests/test-build-io-stream.c
tests/test-build-io-stream.c
+7
-5
No files found.
agent/agent.c
View file @
07af02cf
...
@@ -67,6 +67,7 @@
...
@@ -67,6 +67,7 @@
#include "agent.h"
#include "agent.h"
#include "agent-priv.h"
#include "agent-priv.h"
#include "agent-signals-marshal.h"
#include "agent-signals-marshal.h"
#include "iostream.h"
#include "stream.h"
#include "stream.h"
#include "interfaces.h"
#include "interfaces.h"
...
...
nice/libnice.sym
View file @
07af02cf
...
@@ -16,6 +16,7 @@ nice_address_set_port
...
@@ -16,6 +16,7 @@ nice_address_set_port
nice_address_to_string
nice_address_to_string
nice_agent_add_local_address
nice_agent_add_local_address
nice_agent_add_stream
nice_agent_add_stream
nice_agent_build_io_stream
nice_agent_recv
nice_agent_recv
nice_agent_recv_nonblocking
nice_agent_recv_nonblocking
nice_agent_attach_recv
nice_agent_attach_recv
...
...
tests/test-build-io-stream.c
View file @
07af02cf
...
@@ -40,11 +40,13 @@
...
@@ -40,11 +40,13 @@
#include "agent.h"
#include "agent.h"
#include "iostream.h"
static
void
static
void
test_invalid_stream
(
NiceAddress
*
addr
)
test_invalid_stream
(
NiceAddress
*
addr
)
{
{
NiceAgent
*
agent
;
NiceAgent
*
agent
;
Nice
IOStream
*
io_stream
;
G
IOStream
*
io_stream
;
GInputStream
*
input_stream
;
GInputStream
*
input_stream
;
GOutputStream
*
output_stream
;
GOutputStream
*
output_stream
;
uint8_t
data
[
65536
];
uint8_t
data
[
65536
];
...
@@ -81,7 +83,7 @@ test_io_stream_properties (NiceAddress *addr, gboolean add_stream_first)
...
@@ -81,7 +83,7 @@ test_io_stream_properties (NiceAddress *addr, gboolean add_stream_first)
{
{
NiceAgent
*
agent
;
NiceAgent
*
agent
;
guint
stream_id
;
guint
stream_id
;
Nice
IOStream
*
io_stream
;
G
IOStream
*
io_stream
;
GInputStream
*
input_stream
;
GInputStream
*
input_stream
;
GOutputStream
*
output_stream
;
GOutputStream
*
output_stream
;
...
@@ -145,7 +147,7 @@ test_pollable_properties (NiceAddress *addr)
...
@@ -145,7 +147,7 @@ test_pollable_properties (NiceAddress *addr)
{
{
NiceAgent
*
agent
;
NiceAgent
*
agent
;
guint
stream_id
;
guint
stream_id
;
Nice
IOStream
*
io_stream
;
G
IOStream
*
io_stream
;
GInputStream
*
input_stream
;
GInputStream
*
input_stream
;
GOutputStream
*
output_stream
;
GOutputStream
*
output_stream
;
GPollableInputStream
*
pollable_input_stream
;
GPollableInputStream
*
pollable_input_stream
;
...
@@ -315,7 +317,7 @@ test_pollable_cancellation (NiceAddress *addr)
...
@@ -315,7 +317,7 @@ test_pollable_cancellation (NiceAddress *addr)
{
{
NiceAgent
*
agent
;
NiceAgent
*
agent
;
guint
stream_id
;
guint
stream_id
;
Nice
IOStream
*
io_stream
;
G
IOStream
*
io_stream
;
GInputStream
*
input_stream
;
GInputStream
*
input_stream
;
GOutputStream
*
output_stream
;
GOutputStream
*
output_stream
;
GPollableInputStream
*
pollable_input_stream
;
GPollableInputStream
*
pollable_input_stream
;
...
@@ -393,7 +395,7 @@ test_zero_length_reads_writes (NiceAddress *addr)
...
@@ -393,7 +395,7 @@ test_zero_length_reads_writes (NiceAddress *addr)
{
{
NiceAgent
*
agent
;
NiceAgent
*
agent
;
guint
stream_id
;
guint
stream_id
;
Nice
IOStream
*
io_stream
;
G
IOStream
*
io_stream
;
GInputStream
*
input_stream
;
GInputStream
*
input_stream
;
GOutputStream
*
output_stream
;
GOutputStream
*
output_stream
;
GPollableInputStream
*
pollable_input_stream
;
GPollableInputStream
*
pollable_input_stream
;
...
...
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