コード例 #1
0
ファイル: Session.cpp プロジェクト: 54k/MultiversePlatform
void ResponseFilter::Write(MessageBuffer &buf) const {
	buf.WriteByte(RESPONSE);   // filter_type = RESPONSE
	buf.WriteString(topic);
}
コード例 #2
0
ファイル: Session.cpp プロジェクト: 54k/MultiversePlatform
void TopicFilter::Write(MessageBuffer &buf) const {
	buf.WriteByte(TOPIC);   // filter_type = TOPIC
	buf.WriteString(topic);
}