@@ -23,11 +23,6 @@ extern "C" {
23
23
#define SIGNALING_CHANNEL_TYPE_UNKNOWN_STR (PCHAR) "UNKOWN"
24
24
#define SIGNALING_CHANNEL_TYPE_SINGLE_MASTER_STR (PCHAR) "SINGLE_MASTER"
25
25
26
- // Signaling channel role type string
27
- #define SIGNALING_CHANNEL_ROLE_TYPE_UNKNOWN_STR (PCHAR) "UNKOWN"
28
- #define SIGNALING_CHANNEL_ROLE_TYPE_MASTER_STR (PCHAR) "MASTER"
29
- #define SIGNALING_CHANNEL_ROLE_TYPE_VIEWER_STR (PCHAR) "VIEWER"
30
-
31
26
// Min and max for the message TTL value
32
27
#define MIN_SIGNALING_MESSAGE_TTL_VALUE (5 * HUNDREDS_OF_NANOS_IN_A_SECOND)
33
28
#define MAX_SIGNALING_MESSAGE_TTL_VALUE (120 * HUNDREDS_OF_NANOS_IN_A_SECOND)
@@ -86,25 +81,6 @@ SIGNALING_CHANNEL_TYPE getChannelTypeFromString(PCHAR, UINT32);
86
81
*/
87
82
PCHAR getStringFromChannelType (SIGNALING_CHANNEL_TYPE );
88
83
89
- /**
90
- * Returns the signaling channel Role from a string
91
- *
92
- * @param - PCHAR - IN - String representation of the channel role
93
- * @param - UINT32 - IN - String length
94
- *
95
- * @return - Signaling channel type
96
- */
97
- SIGNALING_CHANNEL_ROLE_TYPE getChannelRoleTypeFromString (PCHAR , UINT32 );
98
-
99
- /**
100
- * Returns the signaling channel role type string
101
- *
102
- * @param - SIGNALING_CHANNEL_TYPE - IN - Signaling channel type
103
- *
104
- * @return - Signaling channel type string
105
- */
106
- PCHAR getStringFromChannelRoleType (SIGNALING_CHANNEL_ROLE_TYPE );
107
-
108
84
/**
109
85
* Determines whether or not the channel arn is valid
110
86
* If VALID it extracts the channel name
0 commit comments