Commit 07af02cf authored by Olivier Crête's avatar Olivier Crête

nice: Add nice_agent_build_io_stream to exported symbols

parent 18e2e3a2
...@@ -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"
......
...@@ -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
......
...@@ -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;
NiceIOStream *io_stream; GIOStream *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;
NiceIOStream *io_stream; GIOStream *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;
NiceIOStream *io_stream; GIOStream *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;
NiceIOStream *io_stream; GIOStream *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;
NiceIOStream *io_stream; GIOStream *io_stream;
GInputStream *input_stream; GInputStream *input_stream;
GOutputStream *output_stream; GOutputStream *output_stream;
GPollableInputStream *pollable_input_stream; GPollableInputStream *pollable_input_stream;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment