次の2つのスキーマがあります。ソケット経由でデータを送信します。受信時に、どちらが送信されたかを判断する方法はありますか?
namespace Objects;
table Login {
email:string;
password:string;
}
root_type Login;
file_identifier "LOGN";
namespace Objects;
table Register{
email:string;
password:string;
}
root_type Register;
file_identifier "REGR";