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
810b722d
Commit
810b722d
authored
Mar 06, 2014
by
Olivier Crête
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
iostream: De-gtkdoc the comments, as it's not public API
parent
9d52fa06
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
15 additions
and
15 deletions
+15
-15
agent/inputstream.c
agent/inputstream.c
+5
-5
agent/iostream.c
agent/iostream.c
+5
-5
agent/outputstream.c
agent/outputstream.c
+5
-5
No files found.
agent/inputstream.c
View file @
810b722d
...
@@ -34,7 +34,7 @@
...
@@ -34,7 +34,7 @@
* file under either the MPL or the LGPL.
* file under either the MPL or the LGPL.
*/
*/
/**
/**
*
* SECTION:nice_input_stream
* SECTION:nice_input_stream
* @short_description: #GInputStream implementation for libnice
* @short_description: #GInputStream implementation for libnice
* @see_also: #NiceAgent
* @see_also: #NiceAgent
...
@@ -116,7 +116,7 @@ nice_input_stream_class_init (NiceInputStreamClass *klass)
...
@@ -116,7 +116,7 @@ nice_input_stream_class_init (NiceInputStreamClass *klass)
stream_class
->
read_fn
=
nice_input_stream_read
;
stream_class
->
read_fn
=
nice_input_stream_read
;
/**
/**
*
* NiceInputStream:agent:
* NiceInputStream:agent:
*
*
* The #NiceAgent to wrap with an input stream. This must be an existing
* The #NiceAgent to wrap with an input stream. This must be an existing
...
@@ -135,7 +135,7 @@ nice_input_stream_class_init (NiceInputStreamClass *klass)
...
@@ -135,7 +135,7 @@ nice_input_stream_class_init (NiceInputStreamClass *klass)
NICE_TYPE_AGENT
,
NICE_TYPE_AGENT
,
G_PARAM_CONSTRUCT_ONLY
|
G_PARAM_READWRITE
|
G_PARAM_STATIC_STRINGS
));
G_PARAM_CONSTRUCT_ONLY
|
G_PARAM_READWRITE
|
G_PARAM_STATIC_STRINGS
));
/**
/**
*
* NiceInputStream:stream-id:
* NiceInputStream:stream-id:
*
*
* ID of the stream to use in the #NiceInputStream:agent.
* ID of the stream to use in the #NiceInputStream:agent.
...
@@ -151,7 +151,7 @@ nice_input_stream_class_init (NiceInputStreamClass *klass)
...
@@ -151,7 +151,7 @@ nice_input_stream_class_init (NiceInputStreamClass *klass)
0
,
0
,
G_PARAM_CONSTRUCT_ONLY
|
G_PARAM_READWRITE
|
G_PARAM_STATIC_STRINGS
));
G_PARAM_CONSTRUCT_ONLY
|
G_PARAM_READWRITE
|
G_PARAM_STATIC_STRINGS
));
/**
/**
*
* NiceInputStream:component-id:
* NiceInputStream:component-id:
*
*
* ID of the component to use in the #NiceInputStream:agent.
* ID of the component to use in the #NiceInputStream:agent.
...
@@ -259,7 +259,7 @@ nice_input_stream_init_pollable (GPollableInputStreamInterface *iface)
...
@@ -259,7 +259,7 @@ nice_input_stream_init_pollable (GPollableInputStreamInterface *iface)
iface
->
create_source
=
nice_input_stream_create_source
;
iface
->
create_source
=
nice_input_stream_create_source
;
}
}
/**
/**
*
* nice_input_stream_new:
* nice_input_stream_new:
* @agent: A #NiceAgent
* @agent: A #NiceAgent
* @stream_id: The ID of the agent’s stream to wrap
* @stream_id: The ID of the agent’s stream to wrap
...
...
agent/iostream.c
View file @
810b722d
...
@@ -34,7 +34,7 @@
...
@@ -34,7 +34,7 @@
* file under either the MPL or the LGPL.
* file under either the MPL or the LGPL.
*/
*/
/**
/**
*
* SECTION:nice_io_stream
* SECTION:nice_io_stream
* @short_description: #GIOStream implementation for libnice
* @short_description: #GIOStream implementation for libnice
* @see_also: #NiceAgent
* @see_also: #NiceAgent
...
@@ -110,7 +110,7 @@ nice_io_stream_class_init (NiceIOStreamClass *klass)
...
@@ -110,7 +110,7 @@ nice_io_stream_class_init (NiceIOStreamClass *klass)
stream_class
->
get_input_stream
=
nice_io_stream_get_input_stream
;
stream_class
->
get_input_stream
=
nice_io_stream_get_input_stream
;
stream_class
->
get_output_stream
=
nice_io_stream_get_output_stream
;
stream_class
->
get_output_stream
=
nice_io_stream_get_output_stream
;
/*
*
/*
* NiceIOStream:agent:
* NiceIOStream:agent:
*
*
* The #NiceAgent to wrap with an I/O stream. This must be an existing
* The #NiceAgent to wrap with an I/O stream. This must be an existing
...
@@ -129,7 +129,7 @@ nice_io_stream_class_init (NiceIOStreamClass *klass)
...
@@ -129,7 +129,7 @@ nice_io_stream_class_init (NiceIOStreamClass *klass)
NICE_TYPE_AGENT
,
NICE_TYPE_AGENT
,
G_PARAM_CONSTRUCT_ONLY
|
G_PARAM_READWRITE
|
G_PARAM_STATIC_STRINGS
));
G_PARAM_CONSTRUCT_ONLY
|
G_PARAM_READWRITE
|
G_PARAM_STATIC_STRINGS
));
/*
*
/*
* NiceIOStream:stream-id:
* NiceIOStream:stream-id:
*
*
* ID of the stream to use in the #NiceIOStream:agent.
* ID of the stream to use in the #NiceIOStream:agent.
...
@@ -145,7 +145,7 @@ nice_io_stream_class_init (NiceIOStreamClass *klass)
...
@@ -145,7 +145,7 @@ nice_io_stream_class_init (NiceIOStreamClass *klass)
0
,
0
,
G_PARAM_CONSTRUCT_ONLY
|
G_PARAM_READWRITE
|
G_PARAM_STATIC_STRINGS
));
G_PARAM_CONSTRUCT_ONLY
|
G_PARAM_READWRITE
|
G_PARAM_STATIC_STRINGS
));
/*
*
/*
* NiceIOStream:component-id:
* NiceIOStream:component-id:
*
*
* ID of the component to use in the #NiceIOStream:agent.
* ID of the component to use in the #NiceIOStream:agent.
...
@@ -259,7 +259,7 @@ nice_io_stream_set_property (GObject *object, guint prop_id,
...
@@ -259,7 +259,7 @@ nice_io_stream_set_property (GObject *object, guint prop_id,
}
}
}
}
/**
/**
*
* nice_io_stream_new:
* nice_io_stream_new:
* @agent: A #NiceAgent
* @agent: A #NiceAgent
* @stream_id: The ID of the agent’s stream to wrap
* @stream_id: The ID of the agent’s stream to wrap
...
...
agent/outputstream.c
View file @
810b722d
...
@@ -34,7 +34,7 @@
...
@@ -34,7 +34,7 @@
* file under either the MPL or the LGPL.
* file under either the MPL or the LGPL.
*/
*/
/**
/**
*
* SECTION:nice_output_stream
* SECTION:nice_output_stream
* @short_description: #GOutputStream implementation for libnice
* @short_description: #GOutputStream implementation for libnice
* @see_also: #NiceAgent
* @see_also: #NiceAgent
...
@@ -127,7 +127,7 @@ nice_output_stream_class_init (NiceOutputStreamClass *klass)
...
@@ -127,7 +127,7 @@ nice_output_stream_class_init (NiceOutputStreamClass *klass)
gobject_class
->
get_property
=
nice_output_stream_get_property
;
gobject_class
->
get_property
=
nice_output_stream_get_property
;
gobject_class
->
dispose
=
nice_output_stream_dispose
;
gobject_class
->
dispose
=
nice_output_stream_dispose
;
/**
/**
*
* NiceOutputStream:agent:
* NiceOutputStream:agent:
*
*
* The #NiceAgent to wrap with an output stream. This must be an existing
* The #NiceAgent to wrap with an output stream. This must be an existing
...
@@ -146,7 +146,7 @@ nice_output_stream_class_init (NiceOutputStreamClass *klass)
...
@@ -146,7 +146,7 @@ nice_output_stream_class_init (NiceOutputStreamClass *klass)
NICE_TYPE_AGENT
,
NICE_TYPE_AGENT
,
G_PARAM_CONSTRUCT_ONLY
|
G_PARAM_READWRITE
|
G_PARAM_STATIC_STRINGS
));
G_PARAM_CONSTRUCT_ONLY
|
G_PARAM_READWRITE
|
G_PARAM_STATIC_STRINGS
));
/**
/**
*
* NiceOutputStream:stream-id:
* NiceOutputStream:stream-id:
*
*
* ID of the stream to use in the #NiceOutputStream:agent.
* ID of the stream to use in the #NiceOutputStream:agent.
...
@@ -162,7 +162,7 @@ nice_output_stream_class_init (NiceOutputStreamClass *klass)
...
@@ -162,7 +162,7 @@ nice_output_stream_class_init (NiceOutputStreamClass *klass)
0
,
0
,
G_PARAM_CONSTRUCT_ONLY
|
G_PARAM_READWRITE
|
G_PARAM_STATIC_STRINGS
));
G_PARAM_CONSTRUCT_ONLY
|
G_PARAM_READWRITE
|
G_PARAM_STATIC_STRINGS
));
/**
/**
*
* NiceOutputStream:component-id:
* NiceOutputStream:component-id:
*
*
* ID of the component to use in the #NiceOutputStream:agent.
* ID of the component to use in the #NiceOutputStream:agent.
...
@@ -273,7 +273,7 @@ nice_output_stream_init_pollable (GPollableOutputStreamInterface *iface)
...
@@ -273,7 +273,7 @@ nice_output_stream_init_pollable (GPollableOutputStreamInterface *iface)
iface
->
create_source
=
nice_output_stream_create_source
;
iface
->
create_source
=
nice_output_stream_create_source
;
}
}
/**
/**
*
* nice_output_stream_new:
* nice_output_stream_new:
* @agent: A #NiceAgent
* @agent: A #NiceAgent
* @stream_id: The ID of the agent’s stream to wrap
* @stream_id: The ID of the agent’s stream to wrap
...
...
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