我有以下两种模式。我通过套接字发送数据;在接收时有什么方法可以确定发送的是哪一个?
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";