[svn-commits] dlee: branch dlee/ari-url-shuffle r391762 - /team/dlee/ari-url-shuffle/res/st...

SVN commits to the Digium repositories svn-commits at lists.digium.com
Thu Jun 13 21:46:22 CDT 2013


Author: dlee
Date: Thu Jun 13 21:46:20 2013
New Revision: 391762

URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=391762
Log:
Dotting i's and crossing t's.

Modified:
    team/dlee/ari-url-shuffle/res/stasis_http/resource_asterisk.h
    team/dlee/ari-url-shuffle/res/stasis_http/resource_bridges.h
    team/dlee/ari-url-shuffle/res/stasis_http/resource_channels.h
    team/dlee/ari-url-shuffle/res/stasis_http/resource_endpoints.h
    team/dlee/ari-url-shuffle/res/stasis_http/resource_events.h
    team/dlee/ari-url-shuffle/res/stasis_http/resource_playback.h
    team/dlee/ari-url-shuffle/res/stasis_http/resource_recordings.h
    team/dlee/ari-url-shuffle/res/stasis_http/resource_sounds.h

Modified: team/dlee/ari-url-shuffle/res/stasis_http/resource_asterisk.h
URL: http://svnview.digium.com/svn/asterisk/team/dlee/ari-url-shuffle/res/stasis_http/resource_asterisk.h?view=diff&rev=391762&r1=391761&r2=391762
==============================================================================
--- team/dlee/ari-url-shuffle/res/stasis_http/resource_asterisk.h (original)
+++ team/dlee/ari-url-shuffle/res/stasis_http/resource_asterisk.h Thu Jun 13 21:46:20 2013
@@ -47,9 +47,9 @@
 /*!
  * \brief Gets Asterisk system information.
  *
- * \param headers HTTP headers
- * \param args Swagger parameters
- * \param[out] response HTTP response
+ * \param headers HTTP headers.
+ * \param args Swagger parameters.
+ * \param[out] response HTTP response.
  */
 void stasis_http_get_asterisk_info(struct ast_variable *headers, struct ast_get_asterisk_info_args *args, struct stasis_http_response *response);
 

Modified: team/dlee/ari-url-shuffle/res/stasis_http/resource_bridges.h
URL: http://svnview.digium.com/svn/asterisk/team/dlee/ari-url-shuffle/res/stasis_http/resource_bridges.h?view=diff&rev=391762&r1=391761&r2=391762
==============================================================================
--- team/dlee/ari-url-shuffle/res/stasis_http/resource_bridges.h (original)
+++ team/dlee/ari-url-shuffle/res/stasis_http/resource_bridges.h Thu Jun 13 21:46:20 2013
@@ -45,9 +45,9 @@
 /*!
  * \brief List active bridges.
  *
- * \param headers HTTP headers
- * \param args Swagger parameters
- * \param[out] response HTTP response
+ * \param headers HTTP headers.
+ * \param args Swagger parameters.
+ * \param[out] response HTTP response.
  */
 void stasis_http_get_bridges(struct ast_variable *headers, struct ast_get_bridges_args *args, struct stasis_http_response *response);
 /*! \brief Argument struct for stasis_http_new_bridge() */
@@ -60,9 +60,9 @@
  *
  * This bridge persists until it has been shut down, or Asterisk has been shut down.
  *
- * \param headers HTTP headers
- * \param args Swagger parameters
- * \param[out] response HTTP response
+ * \param headers HTTP headers.
+ * \param args Swagger parameters.
+ * \param[out] response HTTP response.
  */
 void stasis_http_new_bridge(struct ast_variable *headers, struct ast_new_bridge_args *args, struct stasis_http_response *response);
 /*! \brief Argument struct for stasis_http_get_bridge() */
@@ -73,9 +73,9 @@
 /*!
  * \brief Get bridge details.
  *
- * \param headers HTTP headers
- * \param args Swagger parameters
- * \param[out] response HTTP response
+ * \param headers HTTP headers.
+ * \param args Swagger parameters.
+ * \param[out] response HTTP response.
  */
 void stasis_http_get_bridge(struct ast_variable *headers, struct ast_get_bridge_args *args, struct stasis_http_response *response);
 /*! \brief Argument struct for stasis_http_delete_bridge() */
@@ -88,9 +88,9 @@
  *
  * If any channels are in this bridge, they will be removed and resume whatever they were doing beforehand.
  *
- * \param headers HTTP headers
- * \param args Swagger parameters
- * \param[out] response HTTP response
+ * \param headers HTTP headers.
+ * \param args Swagger parameters.
+ * \param[out] response HTTP response.
  */
 void stasis_http_delete_bridge(struct ast_variable *headers, struct ast_delete_bridge_args *args, struct stasis_http_response *response);
 /*! \brief Argument struct for stasis_http_add_channel_to_bridge() */
@@ -103,9 +103,9 @@
 /*!
  * \brief Add a channel to a bridge.
  *
- * \param headers HTTP headers
- * \param args Swagger parameters
- * \param[out] response HTTP response
+ * \param headers HTTP headers.
+ * \param args Swagger parameters.
+ * \param[out] response HTTP response.
  */
 void stasis_http_add_channel_to_bridge(struct ast_variable *headers, struct ast_add_channel_to_bridge_args *args, struct stasis_http_response *response);
 /*! \brief Argument struct for stasis_http_remove_channel_from_bridge() */
@@ -118,9 +118,9 @@
 /*!
  * \brief Remove a channel from a bridge.
  *
- * \param headers HTTP headers
- * \param args Swagger parameters
- * \param[out] response HTTP response
+ * \param headers HTTP headers.
+ * \param args Swagger parameters.
+ * \param[out] response HTTP response.
  */
 void stasis_http_remove_channel_from_bridge(struct ast_variable *headers, struct ast_remove_channel_from_bridge_args *args, struct stasis_http_response *response);
 /*! \brief Argument struct for stasis_http_record_bridge() */
@@ -145,9 +145,9 @@
  *
  * This records the mixed audio from all channels participating in this bridge.
  *
- * \param headers HTTP headers
- * \param args Swagger parameters
- * \param[out] response HTTP response
+ * \param headers HTTP headers.
+ * \param args Swagger parameters.
+ * \param[out] response HTTP response.
  */
 void stasis_http_record_bridge(struct ast_variable *headers, struct ast_record_bridge_args *args, struct stasis_http_response *response);
 

Modified: team/dlee/ari-url-shuffle/res/stasis_http/resource_channels.h
URL: http://svnview.digium.com/svn/asterisk/team/dlee/ari-url-shuffle/res/stasis_http/resource_channels.h?view=diff&rev=391762&r1=391761&r2=391762
==============================================================================
--- team/dlee/ari-url-shuffle/res/stasis_http/resource_channels.h (original)
+++ team/dlee/ari-url-shuffle/res/stasis_http/resource_channels.h Thu Jun 13 21:46:20 2013
@@ -45,9 +45,9 @@
 /*!
  * \brief List active channels.
  *
- * \param headers HTTP headers
- * \param args Swagger parameters
- * \param[out] response HTTP response
+ * \param headers HTTP headers.
+ * \param args Swagger parameters.
+ * \param[out] response HTTP response.
  */
 void stasis_http_get_channels(struct ast_variable *headers, struct ast_get_channels_args *args, struct stasis_http_response *response);
 /*! \brief Argument struct for stasis_http_originate() */
@@ -70,9 +70,9 @@
 /*!
  * \brief Create a new channel (originate).
  *
- * \param headers HTTP headers
- * \param args Swagger parameters
- * \param[out] response HTTP response
+ * \param headers HTTP headers.
+ * \param args Swagger parameters.
+ * \param[out] response HTTP response.
  */
 void stasis_http_originate(struct ast_variable *headers, struct ast_originate_args *args, struct stasis_http_response *response);
 /*! \brief Argument struct for stasis_http_get_channel() */
@@ -83,9 +83,9 @@
 /*!
  * \brief Channel details.
  *
- * \param headers HTTP headers
- * \param args Swagger parameters
- * \param[out] response HTTP response
+ * \param headers HTTP headers.
+ * \param args Swagger parameters.
+ * \param[out] response HTTP response.
  */
 void stasis_http_get_channel(struct ast_variable *headers, struct ast_get_channel_args *args, struct stasis_http_response *response);
 /*! \brief Argument struct for stasis_http_delete_channel() */
@@ -96,9 +96,9 @@
 /*!
  * \brief Delete (i.e. hangup) a channel.
  *
- * \param headers HTTP headers
- * \param args Swagger parameters
- * \param[out] response HTTP response
+ * \param headers HTTP headers.
+ * \param args Swagger parameters.
+ * \param[out] response HTTP response.
  */
 void stasis_http_delete_channel(struct ast_variable *headers, struct ast_delete_channel_args *args, struct stasis_http_response *response);
 /*! \brief Argument struct for stasis_http_dial() */
@@ -115,9 +115,9 @@
 /*!
  * \brief Create a new channel (originate) and bridge to this channel.
  *
- * \param headers HTTP headers
- * \param args Swagger parameters
- * \param[out] response HTTP response
+ * \param headers HTTP headers.
+ * \param args Swagger parameters.
+ * \param[out] response HTTP response.
  */
 void stasis_http_dial(struct ast_variable *headers, struct ast_dial_args *args, struct stasis_http_response *response);
 /*! \brief Argument struct for stasis_http_continue_in_dialplan() */
@@ -128,9 +128,9 @@
 /*!
  * \brief Exit application; continue execution in the dialplan.
  *
- * \param headers HTTP headers
- * \param args Swagger parameters
- * \param[out] response HTTP response
+ * \param headers HTTP headers.
+ * \param args Swagger parameters.
+ * \param[out] response HTTP response.
  */
 void stasis_http_continue_in_dialplan(struct ast_variable *headers, struct ast_continue_in_dialplan_args *args, struct stasis_http_response *response);
 /*! \brief Argument struct for stasis_http_answer_channel() */
@@ -141,9 +141,9 @@
 /*!
  * \brief Answer a channel.
  *
- * \param headers HTTP headers
- * \param args Swagger parameters
- * \param[out] response HTTP response
+ * \param headers HTTP headers.
+ * \param args Swagger parameters.
+ * \param[out] response HTTP response.
  */
 void stasis_http_answer_channel(struct ast_variable *headers, struct ast_answer_channel_args *args, struct stasis_http_response *response);
 /*! \brief Argument struct for stasis_http_mute_channel() */
@@ -156,9 +156,9 @@
 /*!
  * \brief Mute a channel.
  *
- * \param headers HTTP headers
- * \param args Swagger parameters
- * \param[out] response HTTP response
+ * \param headers HTTP headers.
+ * \param args Swagger parameters.
+ * \param[out] response HTTP response.
  */
 void stasis_http_mute_channel(struct ast_variable *headers, struct ast_mute_channel_args *args, struct stasis_http_response *response);
 /*! \brief Argument struct for stasis_http_unmute_channel() */
@@ -171,9 +171,9 @@
 /*!
  * \brief Unmute a channel.
  *
- * \param headers HTTP headers
- * \param args Swagger parameters
- * \param[out] response HTTP response
+ * \param headers HTTP headers.
+ * \param args Swagger parameters.
+ * \param[out] response HTTP response.
  */
 void stasis_http_unmute_channel(struct ast_variable *headers, struct ast_unmute_channel_args *args, struct stasis_http_response *response);
 /*! \brief Argument struct for stasis_http_hold_channel() */
@@ -184,9 +184,9 @@
 /*!
  * \brief Hold a channel.
  *
- * \param headers HTTP headers
- * \param args Swagger parameters
- * \param[out] response HTTP response
+ * \param headers HTTP headers.
+ * \param args Swagger parameters.
+ * \param[out] response HTTP response.
  */
 void stasis_http_hold_channel(struct ast_variable *headers, struct ast_hold_channel_args *args, struct stasis_http_response *response);
 /*! \brief Argument struct for stasis_http_unhold_channel() */
@@ -197,9 +197,9 @@
 /*!
  * \brief Remove a channel from hold.
  *
- * \param headers HTTP headers
- * \param args Swagger parameters
- * \param[out] response HTTP response
+ * \param headers HTTP headers.
+ * \param args Swagger parameters.
+ * \param[out] response HTTP response.
  */
 void stasis_http_unhold_channel(struct ast_variable *headers, struct ast_unhold_channel_args *args, struct stasis_http_response *response);
 /*! \brief Argument struct for stasis_http_play_on_channel() */
@@ -220,9 +220,9 @@
  *
  * The media URI may be any of a number of URI's. You may use http: and https: URI's, as well as sound: and recording: URI's. This operation creates a playback resource that can be used to control the playback of media (pause, rewind, fast forward, etc.)
  *
- * \param headers HTTP headers
- * \param args Swagger parameters
- * \param[out] response HTTP response
+ * \param headers HTTP headers.
+ * \param args Swagger parameters.
+ * \param[out] response HTTP response.
  */
 void stasis_http_play_on_channel(struct ast_variable *headers, struct ast_play_on_channel_args *args, struct stasis_http_response *response);
 /*! \brief Argument struct for stasis_http_record_channel() */
@@ -249,9 +249,9 @@
  *
  * Record audio from a channel. Note that this will not capture audio sent to the channel. The bridge itself has a record feature if that's what you want.
  *
- * \param headers HTTP headers
- * \param args Swagger parameters
- * \param[out] response HTTP response
+ * \param headers HTTP headers.
+ * \param args Swagger parameters.
+ * \param[out] response HTTP response.
  */
 void stasis_http_record_channel(struct ast_variable *headers, struct ast_record_channel_args *args, struct stasis_http_response *response);
 

Modified: team/dlee/ari-url-shuffle/res/stasis_http/resource_endpoints.h
URL: http://svnview.digium.com/svn/asterisk/team/dlee/ari-url-shuffle/res/stasis_http/resource_endpoints.h?view=diff&rev=391762&r1=391761&r2=391762
==============================================================================
--- team/dlee/ari-url-shuffle/res/stasis_http/resource_endpoints.h (original)
+++ team/dlee/ari-url-shuffle/res/stasis_http/resource_endpoints.h Thu Jun 13 21:46:20 2013
@@ -45,9 +45,9 @@
 /*!
  * \brief List all endoints.
  *
- * \param headers HTTP headers
- * \param args Swagger parameters
- * \param[out] response HTTP response
+ * \param headers HTTP headers.
+ * \param args Swagger parameters.
+ * \param[out] response HTTP response.
  */
 void stasis_http_get_endpoints(struct ast_variable *headers, struct ast_get_endpoints_args *args, struct stasis_http_response *response);
 /*! \brief Argument struct for stasis_http_get_endpoints_by_tech() */
@@ -58,9 +58,9 @@
 /*!
  * \brief List available endoints for a given endpoint technology.
  *
- * \param headers HTTP headers
- * \param args Swagger parameters
- * \param[out] response HTTP response
+ * \param headers HTTP headers.
+ * \param args Swagger parameters.
+ * \param[out] response HTTP response.
  */
 void stasis_http_get_endpoints_by_tech(struct ast_variable *headers, struct ast_get_endpoints_by_tech_args *args, struct stasis_http_response *response);
 /*! \brief Argument struct for stasis_http_get_endpoint() */
@@ -73,9 +73,9 @@
 /*!
  * \brief Details for an endpoint.
  *
- * \param headers HTTP headers
- * \param args Swagger parameters
- * \param[out] response HTTP response
+ * \param headers HTTP headers.
+ * \param args Swagger parameters.
+ * \param[out] response HTTP response.
  */
 void stasis_http_get_endpoint(struct ast_variable *headers, struct ast_get_endpoint_args *args, struct stasis_http_response *response);
 

Modified: team/dlee/ari-url-shuffle/res/stasis_http/resource_events.h
URL: http://svnview.digium.com/svn/asterisk/team/dlee/ari-url-shuffle/res/stasis_http/resource_events.h?view=diff&rev=391762&r1=391761&r2=391762
==============================================================================
--- team/dlee/ari-url-shuffle/res/stasis_http/resource_events.h (original)
+++ team/dlee/ari-url-shuffle/res/stasis_http/resource_events.h Thu Jun 13 21:46:20 2013
@@ -47,8 +47,9 @@
 /*!
  * \brief WebSocket connection for events.
  *
- * \param headers HTTP headers
- * \param args Swagger parameters
+ * \param session ARI WebSocket.
+ * \param headers HTTP headers.
+ * \param args Swagger parameters.
  */
 void ari_websocket_event_websocket(struct ari_websocket_session *session, struct ast_variable *headers, struct ast_event_websocket_args *args);
 

Modified: team/dlee/ari-url-shuffle/res/stasis_http/resource_playback.h
URL: http://svnview.digium.com/svn/asterisk/team/dlee/ari-url-shuffle/res/stasis_http/resource_playback.h?view=diff&rev=391762&r1=391761&r2=391762
==============================================================================
--- team/dlee/ari-url-shuffle/res/stasis_http/resource_playback.h (original)
+++ team/dlee/ari-url-shuffle/res/stasis_http/resource_playback.h Thu Jun 13 21:46:20 2013
@@ -47,9 +47,9 @@
 /*!
  * \brief Get a playback's details.
  *
- * \param headers HTTP headers
- * \param args Swagger parameters
- * \param[out] response HTTP response
+ * \param headers HTTP headers.
+ * \param args Swagger parameters.
+ * \param[out] response HTTP response.
  */
 void stasis_http_get_playback(struct ast_variable *headers, struct ast_get_playback_args *args, struct stasis_http_response *response);
 /*! \brief Argument struct for stasis_http_stop_playback() */
@@ -60,9 +60,9 @@
 /*!
  * \brief Stop a playback.
  *
- * \param headers HTTP headers
- * \param args Swagger parameters
- * \param[out] response HTTP response
+ * \param headers HTTP headers.
+ * \param args Swagger parameters.
+ * \param[out] response HTTP response.
  */
 void stasis_http_stop_playback(struct ast_variable *headers, struct ast_stop_playback_args *args, struct stasis_http_response *response);
 /*! \brief Argument struct for stasis_http_control_playback() */
@@ -75,9 +75,9 @@
 /*!
  * \brief Get a playback's details.
  *
- * \param headers HTTP headers
- * \param args Swagger parameters
- * \param[out] response HTTP response
+ * \param headers HTTP headers.
+ * \param args Swagger parameters.
+ * \param[out] response HTTP response.
  */
 void stasis_http_control_playback(struct ast_variable *headers, struct ast_control_playback_args *args, struct stasis_http_response *response);
 

Modified: team/dlee/ari-url-shuffle/res/stasis_http/resource_recordings.h
URL: http://svnview.digium.com/svn/asterisk/team/dlee/ari-url-shuffle/res/stasis_http/resource_recordings.h?view=diff&rev=391762&r1=391761&r2=391762
==============================================================================
--- team/dlee/ari-url-shuffle/res/stasis_http/resource_recordings.h (original)
+++ team/dlee/ari-url-shuffle/res/stasis_http/resource_recordings.h Thu Jun 13 21:46:20 2013
@@ -45,9 +45,9 @@
 /*!
  * \brief List all recordings.
  *
- * \param headers HTTP headers
- * \param args Swagger parameters
- * \param[out] response HTTP response
+ * \param headers HTTP headers.
+ * \param args Swagger parameters.
+ * \param[out] response HTTP response.
  */
 void stasis_http_get_recordings(struct ast_variable *headers, struct ast_get_recordings_args *args, struct stasis_http_response *response);
 /*! \brief Argument struct for stasis_http_get_stored_recordings() */
@@ -56,9 +56,9 @@
 /*!
  * \brief List recordings that are complete.
  *
- * \param headers HTTP headers
- * \param args Swagger parameters
- * \param[out] response HTTP response
+ * \param headers HTTP headers.
+ * \param args Swagger parameters.
+ * \param[out] response HTTP response.
  */
 void stasis_http_get_stored_recordings(struct ast_variable *headers, struct ast_get_stored_recordings_args *args, struct stasis_http_response *response);
 /*! \brief Argument struct for stasis_http_get_stored_recording() */
@@ -69,9 +69,9 @@
 /*!
  * \brief Get a stored recording's details.
  *
- * \param headers HTTP headers
- * \param args Swagger parameters
- * \param[out] response HTTP response
+ * \param headers HTTP headers.
+ * \param args Swagger parameters.
+ * \param[out] response HTTP response.
  */
 void stasis_http_get_stored_recording(struct ast_variable *headers, struct ast_get_stored_recording_args *args, struct stasis_http_response *response);
 /*! \brief Argument struct for stasis_http_delete_stored_recording() */
@@ -82,9 +82,9 @@
 /*!
  * \brief Delete a stored recording.
  *
- * \param headers HTTP headers
- * \param args Swagger parameters
- * \param[out] response HTTP response
+ * \param headers HTTP headers.
+ * \param args Swagger parameters.
+ * \param[out] response HTTP response.
  */
 void stasis_http_delete_stored_recording(struct ast_variable *headers, struct ast_delete_stored_recording_args *args, struct stasis_http_response *response);
 /*! \brief Argument struct for stasis_http_get_live_recordings() */
@@ -93,9 +93,9 @@
 /*!
  * \brief List libe recordings.
  *
- * \param headers HTTP headers
- * \param args Swagger parameters
- * \param[out] response HTTP response
+ * \param headers HTTP headers.
+ * \param args Swagger parameters.
+ * \param[out] response HTTP response.
  */
 void stasis_http_get_live_recordings(struct ast_variable *headers, struct ast_get_live_recordings_args *args, struct stasis_http_response *response);
 /*! \brief Argument struct for stasis_http_get_live_recording() */
@@ -106,9 +106,9 @@
 /*!
  * \brief List live recordings.
  *
- * \param headers HTTP headers
- * \param args Swagger parameters
- * \param[out] response HTTP response
+ * \param headers HTTP headers.
+ * \param args Swagger parameters.
+ * \param[out] response HTTP response.
  */
 void stasis_http_get_live_recording(struct ast_variable *headers, struct ast_get_live_recording_args *args, struct stasis_http_response *response);
 /*! \brief Argument struct for stasis_http_cancel_recording() */
@@ -119,9 +119,9 @@
 /*!
  * \brief Stop a live recording and discard it.
  *
- * \param headers HTTP headers
- * \param args Swagger parameters
- * \param[out] response HTTP response
+ * \param headers HTTP headers.
+ * \param args Swagger parameters.
+ * \param[out] response HTTP response.
  */
 void stasis_http_cancel_recording(struct ast_variable *headers, struct ast_cancel_recording_args *args, struct stasis_http_response *response);
 /*! \brief Argument struct for stasis_http_stop_recording() */
@@ -132,9 +132,9 @@
 /*!
  * \brief Stop a live recording and store it.
  *
- * \param headers HTTP headers
- * \param args Swagger parameters
- * \param[out] response HTTP response
+ * \param headers HTTP headers.
+ * \param args Swagger parameters.
+ * \param[out] response HTTP response.
  */
 void stasis_http_stop_recording(struct ast_variable *headers, struct ast_stop_recording_args *args, struct stasis_http_response *response);
 /*! \brief Argument struct for stasis_http_pause_recording() */
@@ -145,9 +145,9 @@
 /*!
  * \brief Pause a live recording.
  *
- * \param headers HTTP headers
- * \param args Swagger parameters
- * \param[out] response HTTP response
+ * \param headers HTTP headers.
+ * \param args Swagger parameters.
+ * \param[out] response HTTP response.
  */
 void stasis_http_pause_recording(struct ast_variable *headers, struct ast_pause_recording_args *args, struct stasis_http_response *response);
 /*! \brief Argument struct for stasis_http_unpause_recording() */
@@ -158,9 +158,9 @@
 /*!
  * \brief Unpause a live recording.
  *
- * \param headers HTTP headers
- * \param args Swagger parameters
- * \param[out] response HTTP response
+ * \param headers HTTP headers.
+ * \param args Swagger parameters.
+ * \param[out] response HTTP response.
  */
 void stasis_http_unpause_recording(struct ast_variable *headers, struct ast_unpause_recording_args *args, struct stasis_http_response *response);
 /*! \brief Argument struct for stasis_http_mute_recording() */
@@ -171,9 +171,9 @@
 /*!
  * \brief Mute a live recording.
  *
- * \param headers HTTP headers
- * \param args Swagger parameters
- * \param[out] response HTTP response
+ * \param headers HTTP headers.
+ * \param args Swagger parameters.
+ * \param[out] response HTTP response.
  */
 void stasis_http_mute_recording(struct ast_variable *headers, struct ast_mute_recording_args *args, struct stasis_http_response *response);
 /*! \brief Argument struct for stasis_http_unmute_recording() */
@@ -184,9 +184,9 @@
 /*!
  * \brief Unmute a live recording.
  *
- * \param headers HTTP headers
- * \param args Swagger parameters
- * \param[out] response HTTP response
+ * \param headers HTTP headers.
+ * \param args Swagger parameters.
+ * \param[out] response HTTP response.
  */
 void stasis_http_unmute_recording(struct ast_variable *headers, struct ast_unmute_recording_args *args, struct stasis_http_response *response);
 

Modified: team/dlee/ari-url-shuffle/res/stasis_http/resource_sounds.h
URL: http://svnview.digium.com/svn/asterisk/team/dlee/ari-url-shuffle/res/stasis_http/resource_sounds.h?view=diff&rev=391762&r1=391761&r2=391762
==============================================================================
--- team/dlee/ari-url-shuffle/res/stasis_http/resource_sounds.h (original)
+++ team/dlee/ari-url-shuffle/res/stasis_http/resource_sounds.h Thu Jun 13 21:46:20 2013
@@ -47,9 +47,9 @@
 /*!
  * \brief List all sounds.
  *
- * \param headers HTTP headers
- * \param args Swagger parameters
- * \param[out] response HTTP response
+ * \param headers HTTP headers.
+ * \param args Swagger parameters.
+ * \param[out] response HTTP response.
  */
 void stasis_http_get_sounds(struct ast_variable *headers, struct ast_get_sounds_args *args, struct stasis_http_response *response);
 /*! \brief Argument struct for stasis_http_get_stored_sound() */
@@ -60,9 +60,9 @@
 /*!
  * \brief Get a sound's details.
  *
- * \param headers HTTP headers
- * \param args Swagger parameters
- * \param[out] response HTTP response
+ * \param headers HTTP headers.
+ * \param args Swagger parameters.
+ * \param[out] response HTTP response.
  */
 void stasis_http_get_stored_sound(struct ast_variable *headers, struct ast_get_stored_sound_args *args, struct stasis_http_response *response);
 




More information about the svn-commits mailing list