mirror of
https://github.com/Kelsidavis/WoWee.git
synced 2026-03-22 23:30:14 +00:00
Add authenticator opcode support + auth_probe tool
This commit is contained in:
parent
fd468ce793
commit
6a44f02e0c
8 changed files with 188 additions and 15 deletions
|
|
@ -425,6 +425,25 @@ set_target_properties(dbc_to_csv PROPERTIES
|
|||
RUNTIME_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/bin
|
||||
)
|
||||
|
||||
# ---- Tool: auth_probe (LOGON_CHALLENGE probe) ----
|
||||
add_executable(auth_probe
|
||||
tools/auth_probe/main.cpp
|
||||
src/auth/auth_packets.cpp
|
||||
src/auth/auth_opcodes.cpp
|
||||
src/auth/crypto.cpp
|
||||
src/network/packet.cpp
|
||||
src/network/socket.cpp
|
||||
src/network/tcp_socket.cpp
|
||||
src/core/logger.cpp
|
||||
)
|
||||
target_include_directories(auth_probe PRIVATE
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/include
|
||||
)
|
||||
target_link_libraries(auth_probe PRIVATE Threads::Threads OpenSSL::Crypto)
|
||||
set_target_properties(auth_probe PROPERTIES
|
||||
RUNTIME_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/bin
|
||||
)
|
||||
|
||||
# ---- Tool: blp_convert (BLP ↔ PNG) ----
|
||||
add_executable(blp_convert
|
||||
tools/blp_convert/main.cpp
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue