2025-01-26 12:09:56 +01:00
|
|
|
mod method_login_ex;
|
|
|
|
|
|
2025-02-01 17:31:13 +01:00
|
|
|
use log::{error};
|
2025-01-26 23:21:35 +01:00
|
|
|
use crate::define_protocol;
|
2025-02-01 17:31:13 +01:00
|
|
|
use crate::protocols::auth::method_login_ex::{ login_ex_raw_params};
|
2025-01-26 12:09:56 +01:00
|
|
|
use crate::rmc::message::RMCMessage;
|
2025-02-01 17:31:13 +01:00
|
|
|
use crate::rmc::response::{ErrorCode, RMCResponse};
|
2025-01-26 12:09:56 +01:00
|
|
|
|
|
|
|
|
|
2025-01-26 23:21:35 +01:00
|
|
|
define_protocol!{
|
|
|
|
|
10 => {
|
|
|
|
|
0x02 => login_ex_raw_params
|
|
|
|
|
}
|
2025-01-26 12:09:56 +01:00
|
|
|
}
|