This commit is contained in:
aozhiwei 2022-12-19 11:50:12 +08:00
parent 57109ef8ca
commit e7b7f28115
3 changed files with 7 additions and 7 deletions

View File

@ -63,8 +63,8 @@ public:
(
{
socket_handle,
url,
querystr,
a8::XValue(url).GetString(),
a8::XValue(querystr).GetString(),
saddr
}
));

View File

@ -83,10 +83,10 @@ void HandlerMgr::Init()
IM_ExecGM,
[] (const a8::Args& args)
{
int socket_handle = 0;
std::string url;
std::string query_str;
unsigned long saddr = 0;
int socket_handle = args.Get<int>(0);
std::string url = args.Get<std::string>(1);
std::string query_str = args.Get<std::string>(2);
unsigned long saddr = args.Get<unsigned long>(3);
});
}

2
third_party/a8 vendored

@ -1 +1 @@
Subproject commit e7c788386d78c403f36ecf31ce860a73f4ce8f64
Subproject commit 1b97bf5bcc050e9720e436ba7f1cac957f3a19f9