add mod_rss

git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1551 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
Anthony Minessale
2006-06-06 23:07:37 +00:00
parent cd3e5e83c2
commit 9a43ccab24
12 changed files with 425 additions and 52 deletions
+7
View File
@@ -362,6 +362,13 @@ SWITCH_DECLARE(switch_size_t) switch_channel_dequeue_dtmf(switch_channel_t *chan
*/
SWITCH_DECLARE(const char *) switch_channel_state_name(switch_channel_state_t state);
/*!
\brief Render the enum of the provided state name
\param name the name of the state
\return the enum value (numeric)
*/
SWITCH_DECLARE(switch_channel_state_t) switch_channel_name_state(char *name);
/*!
\brief Add information about a given channel to an event object
\param channel channel to add information about
+3 -1
View File
@@ -231,6 +231,7 @@ typedef enum {
SWITCH_STATUS_BREAK - A non-fatal break of an operation
SWITCH_STATUS_SOCKERR - A socket error
SWITCH_STATUS_MORE_DATA - Need More Data
SWITCH_STATUS_NOTFOUND - Not Found
</pre>
*/
typedef enum {
@@ -247,7 +248,8 @@ typedef enum {
SWITCH_STATUS_INUSE,
SWITCH_STATUS_BREAK,
SWITCH_STATUS_SOCKERR,
SWITCH_STATUS_MORE_DATA
SWITCH_STATUS_MORE_DATA,
SWITCH_STATUS_NOTFOUND
} switch_status_t;