1
0
mirror of https://github.com/ShaYmez/xlxd.git synced 2026-06-04 22:54:37 -04:00
This commit is contained in:
phl0
2017-11-06 12:56:27 +01:00
parent a961a39b50
commit 8482f85478
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -95,7 +95,7 @@ bool CCodecStream::Init(uint16 uiPort)
m_bStopThread = false;
// create server's IP
m_Ip = g_Reflector.GetTrasncoderIp();
m_Ip = g_Reflector.GetTranscoderIp();
m_uiPort = uiPort;
// create our socket
+1 -1
View File
@@ -60,7 +60,7 @@ public:
void SetListenIp(const CIp &ip) { m_Ip = ip; }
void SetTranscoderIp(const CIp &ip) { m_AmbedIp = ip; }
const CIp &GetListenIp(void) const { return m_Ip; }
const CIp &GetTrasncoderIp(void) const { return m_AmbedIp; }
const CIp &GetTranscoderIp(void) const { return m_AmbedIp; }
// operation
bool Start(void);
+1 -1
View File
@@ -94,7 +94,7 @@ bool CTranscoder::Init(void)
m_bStopThread = false;
// create server's IP
m_Ip = g_Reflector.GetTrasncoderIp();
m_Ip = g_Reflector.GetTranscoderIp();
// create our socket
ok = m_Socket.Open(TRANSCODER_PORT);