fix misspelling

This commit is contained in:
Eric House 2013-06-24 07:05:09 -07:00
parent bc6922cb8b
commit d4cf37d2ef
2 changed files with 3 additions and 3 deletions

View file

@ -102,7 +102,7 @@ CookieRef::ReInit( const char* cookie, const char* connName, CookieID cid,
} else {
m_delayMicros = 0;
}
RelayConfigs::GetConfigs()->GetValueFor( "HEARTBEAT", &m_heatbeat );
RelayConfigs::GetConfigs()->GetValueFor( "HEARTBEAT", &m_heartbeat );
logf( XW_LOGINFO, "initing cref for cookie %s, connName %s",
m_cookie.c_str(), m_connName.c_str() );

View file

@ -104,7 +104,7 @@ class CookieRef {
const char* Cookie() const { return m_cookie.c_str(); }
const char* ConnName() { return m_connName.c_str(); }
int GetHeartbeat() { return m_heatbeat; }
int GetHeartbeat() { return m_heartbeat; }
const AddrInfo* SocketForHost( HostID dest );
HostID HostForSocket( const AddrInfo* addr );
@ -275,7 +275,7 @@ class CookieRef {
pthread_rwlock_t m_socketsRWLock;
vector<HostRec> m_sockets;
int m_heatbeat; /* might change per carrier or something. */
int m_heartbeat; /* might change per carrier or something. */
string m_cookie; /* cookie used for initial connections */
string m_connName; /* globally unique name */
CookieID m_cid; /* Unique among current games on this server */