mirror of https://github.com/SeanOMik/libki.git
net: Make Participant::on_packet_available protected
Technically we don't want derived classes to be able to call this, but it's needed for the Python side to be able to override it.
This commit is contained in:
parent
59aa21b4b6
commit
eeb5b5c14b
|
@ -60,6 +60,7 @@ namespace net
|
|||
void process_data(const char *data, size_t size);
|
||||
|
||||
virtual void send_packet_data(const char *data, const size_t size) = 0;
|
||||
virtual void on_packet_available() {};
|
||||
virtual void close() = 0;
|
||||
private:
|
||||
ParticipantType m_type;
|
||||
|
@ -69,8 +70,6 @@ namespace net
|
|||
uint16_t m_start_signal;
|
||||
uint16_t m_incoming_packet_size;
|
||||
uint8_t m_shift;
|
||||
|
||||
virtual void on_packet_available() {};
|
||||
};
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue