RtcConnection
包含连接信息的类。
C++
struct RtcConnection {
const char* channelId;
uid_t localUid;
RtcConnection() : RtcConnection(NULL, 0) {}
RtcConnection(const char* channel_id, uid_t local_uid)
: channelId(channel_id), localUid(local_uid) {}
};
channelId
频道名。
localUid
本地用户 ID。