Update FCSNetwork.cpp
FCS OPTIONS
This commit is contained in:
parent
4a4e046763
commit
3ed3bbdfe0
1 changed files with 5 additions and 4 deletions
|
@ -194,14 +194,14 @@ void CFCSNetwork::clock(unsigned int ms)
|
||||||
LogMessage("Linked to %s", m_print.c_str());
|
LogMessage("Linked to %s", m_print.c_str());
|
||||||
m_state = FCS_LINKED;
|
m_state = FCS_LINKED;
|
||||||
writeInfo();
|
writeInfo();
|
||||||
writeOptions();
|
writeOptions(m_print);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (length == 10 && m_state == FCS_LINKING) {
|
if (length == 10 && m_state == FCS_LINKING) {
|
||||||
LogMessage("Linked to %s", m_print.c_str());
|
LogMessage("Linked to %s", m_print.c_str());
|
||||||
m_state = FCS_LINKED;
|
m_state = FCS_LINKED;
|
||||||
writeInfo();
|
writeInfo();
|
||||||
writeOptions();
|
writeOptions(m_print);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (length == 7 || length == 10 || length == 130) {
|
if (length == 7 || length == 10 || length == 130) {
|
||||||
|
@ -279,7 +279,7 @@ void CFCSNetwork::writePing()
|
||||||
m_socket.write(m_ping, 25U, m_address, FCS_PORT);
|
m_socket.write(m_ping, 25U, m_address, FCS_PORT);
|
||||||
}
|
}
|
||||||
|
|
||||||
void CFCSNetwork::writeOptions()
|
void CFCSNetwork::writeOptions(const std::string& reflector)
|
||||||
{
|
{
|
||||||
if (m_state != FCS_LINKED)
|
if (m_state != FCS_LINKED)
|
||||||
return;
|
return;
|
||||||
|
@ -288,7 +288,8 @@ void CFCSNetwork::writeOptions()
|
||||||
return;
|
return;
|
||||||
|
|
||||||
::memset(m_options + 14U, 0x20U, 36U);
|
::memset(m_options + 14U, 0x20U, 36U);
|
||||||
::memcpy(m_options + 14U, m_opt.c_str(), m_opt.size());
|
::memcpy(m_options + 4U, (reflector.substr(0,6)+reflector.substr(7,2)).c_str(), 8U);
|
||||||
|
::memcpy(m_options + 12U, m_opt.c_str(), m_opt.size());
|
||||||
|
|
||||||
if (m_debug)
|
if (m_debug)
|
||||||
CUtils::dump(1U, "FCS Network Options Sent", m_options, 50U);
|
CUtils::dump(1U, "FCS Network Options Sent", m_options, 50U);
|
||||||
|
|
Loading…
Add table
Reference in a new issue