summaryrefslogtreecommitdiff
path: root/src/network/connection.h
diff options
context:
space:
mode:
authorLars Hofhansl <larsh@apache.org>2018-07-14 11:38:52 -0700
committerLars Hofhansl <larsh@apache.org>2018-07-14 11:41:05 -0700
commitca8ec46843da054e656d2f63b23d0b1695c023da (patch)
tree647f3c3eb9b73287a2b93af96858d5b120fc6e79 /src/network/connection.h
parentb38c121856965665f5e17b64100873a4bb97bf58 (diff)
downloadminetest-ca8ec46843da054e656d2f63b23d0b1695c023da.tar.gz
minetest-ca8ec46843da054e656d2f63b23d0b1695c023da.tar.bz2
minetest-ca8ec46843da054e656d2f63b23d0b1695c023da.zip
Remove legacy client handling code.
Diffstat (limited to 'src/network/connection.h')
-rw-r--r--src/network/connection.h25
1 files changed, 3 insertions, 22 deletions
diff --git a/src/network/connection.h b/src/network/connection.h
index f65540c8c..f9cd3e6ca 100644
--- a/src/network/connection.h
+++ b/src/network/connection.h
@@ -176,7 +176,6 @@ controltype and data description:
#define CONTROLTYPE_SET_PEER_ID 1
#define CONTROLTYPE_PING 2
#define CONTROLTYPE_DISCO 3
-#define CONTROLTYPE_ENABLE_BIG_SEND_WINDOW 4
/*
ORIGINAL: This is a plain packet with no control and no error
@@ -316,8 +315,7 @@ enum ConnectionCommandType{
CONNCMD_SEND,
CONNCMD_SEND_TO_ALL,
CONCMD_ACK,
- CONCMD_CREATE_PEER,
- CONCMD_DISABLE_LEGACY
+ CONCMD_CREATE_PEER
};
struct ConnectionCommand
@@ -384,16 +382,6 @@ struct ConnectionCommand
reliable = true;
raw = true;
}
-
- void disableLegacy(session_t peer_id_, const SharedBuffer<u8> &data_)
- {
- type = CONCMD_DISABLE_LEGACY;
- peer_id = peer_id_;
- data = data_;
- channelnum = 0;
- reliable = true;
- raw = true;
- }
};
/* maximum window size to use, 0xFFFF is theoretical maximum don't think about
@@ -442,7 +430,7 @@ public:
void UpdateBytesLost(unsigned int bytes);
void UpdateBytesReceived(unsigned int bytes);
- void UpdateTimers(float dtime, bool legacy_peer);
+ void UpdateTimers(float dtime);
const float getCurrentDownloadRateKB()
{ MutexAutoLock lock(m_internal_mutex); return cur_kbps; };
@@ -480,7 +468,7 @@ private:
unsigned int current_packet_loss = 0;
unsigned int current_packet_too_late = 0;
- unsigned int current_packet_successfull = 0;
+ unsigned int current_packet_successful = 0;
float packet_loss_counter = 0.0f;
unsigned int current_bytes_transfered = 0;
@@ -659,11 +647,6 @@ public:
bool getAddress(MTProtocols type, Address& toset);
- void setNonLegacyPeer();
-
- bool getLegacyPeer()
- { return m_legacy_peer; }
-
u16 getNextSplitSequenceNumber(u8 channel);
void setNextSplitSequenceNumber(u8 channel, u16 seqnum);
@@ -698,8 +681,6 @@ private:
bool processReliableSendCommand(
ConnectionCommand &c,
unsigned int max_packet_size);
-
- bool m_legacy_peer = true;
};
/*