Skip to content

Commit

Permalink
Update the test demo.
Browse files Browse the repository at this point in the history
  • Loading branch information
MouriNaruto committed Nov 8, 2024
1 parent 5b3f2cb commit aa60aa0
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions Mile.Cirno/Mile.Cirno.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -64,8 +64,10 @@ void Test()
Request.ProtocolVersion = "9P2000.L";
Mile::Cirno::VersionResponse Response = Instance->Version(Request);
std::printf(
"[INFO] Response.ProtocolVersion = %s\n",
Response.ProtocolVersion.c_str());
"[INFO] Response.ProtocolVersion = %s\n"
"[INFO] Response.MaximumMessageSize = %u\n",
Response.ProtocolVersion.c_str(),
Response.MaximumMessageSize);
}

std::uint32_t FileId = Instance->AllocateFileId();
Expand Down

0 comments on commit aa60aa0

Please sign in to comment.