diff options
author | Simon McVittie <simon.mcvittie@collabora.co.uk> | 2008-03-06 14:59:23 +0000 |
---|---|---|
committer | Simon McVittie <simon.mcvittie@collabora.co.uk> | 2008-03-06 14:59:23 +0000 |
commit | f3a29ab1eefd2c5bb81b3821044521b384f4e27b (patch) | |
tree | edc90ac2a3f48f70746415045691fc4b0dde5742 /spec/Channel_Interface_Media_Signalling.xml | |
parent | da29ed5d193634b537b2fccc1eface45339eba60 (diff) |
Update spec/ to telepathy-spec 0.17.2
Diffstat (limited to 'spec/Channel_Interface_Media_Signalling.xml')
-rw-r--r-- | spec/Channel_Interface_Media_Signalling.xml | 26 |
1 files changed, 23 insertions, 3 deletions
diff --git a/spec/Channel_Interface_Media_Signalling.xml b/spec/Channel_Interface_Media_Signalling.xml index 6aed7a114..cc7a7a956 100644 --- a/spec/Channel_Interface_Media_Signalling.xml +++ b/spec/Channel_Interface_Media_Signalling.xml @@ -21,20 +21,39 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.</ <interface name="org.freedesktop.Telepathy.Channel.Interface.MediaSignalling"> <tp:requires interface="org.freedesktop.Telepathy.Channel"/> <tp:requires interface="org.freedesktop.Telepathy.Channel.Type.StreamedMedia"/> + + <tp:simple-type name="Media_Session_Type" type="s"> + <tp:docstring>The type of a media session. Currently, the only supported + value is "rtp".</tp:docstring> + </tp:simple-type> + + <tp:struct name="Media_Session_Handler_Info" + array-name="Media_Session_Handler_Info_List"> + <tp:docstring>A struct representing a active session handler.</tp:docstring> + <tp:member type="o" name="Session_Handler"> + <tp:docstring>The object path of the session handler, which is on the + same bus name as the channel.</tp:docstring> + </tp:member> + <tp:member type="s" tp:type="Media_Session_Type" name="Media_Session_Type"> + <tp:docstring>The media session's type</tp:docstring> + </tp:member> + </tp:struct> + <method name="GetSessionHandlers"> - <arg direction="out" type="a(os)"/> + <arg direction="out" type="a(os)" tp:type="Media_Session_Handler_Info[]"/> <tp:docstring> Returns all currently active session handlers on this channel as a list of (session_handler_path, type). </tp:docstring> </method> + <signal name="NewSessionHandler"> - <arg name="session_handler" type="o"> + <arg name="Session_Handler" type="o"> <tp:docstring> Object path of the new MediaSessionHandler object </tp:docstring> </arg> - <arg name="type" type="s"> + <arg name="Session_Type" tp:type="Media_Session_Type" type="s"> <tp:docstring> String indicating type of session, eg "rtp" </tp:docstring> @@ -81,6 +100,7 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.</ server. </tp:docstring> </tp:property> + <tp:docstring> An interface for signalling a channel containing synchronised media sessions which can contain an arbitrary number of streams. The negotiation |