-
Notifications
You must be signed in to change notification settings - Fork 851
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added Tarantool binary protocol parsing (IPROTO). Protocol info From IANA database: Service Name: tarantool Port Number: 3301 Transport Protocol: tcp/udp Description: Tarantool in-memory computing platform
- Loading branch information
Showing
14 changed files
with
3,752 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
# | ||
# try to find msgpuck. | ||
# | ||
|
||
# Try to find the header | ||
find_path(MSGPUCK_INCLUDE_DIR msgpuck.h) | ||
|
||
# Try to find the library | ||
find_library(MSGPUCK_LIBRARY msgpuck) | ||
|
||
include(FindPackageHandleStandardArgs) | ||
find_package_handle_standard_args(MSGPUCK | ||
DEFAULT_MSG | ||
MSGPUCK_INCLUDE_DIR | ||
MSGPUCK_LIBRARY | ||
) | ||
|
||
mark_as_advanced( | ||
MSGPUCK_INCLUDE_DIR | ||
MSGPUCK_LIBRARY | ||
) | ||
|
||
set(MSGPUCK_INCLUDE_DIRS ${MSGPUCK_INCLUDE_DIR}) | ||
set(MSGPUCK_LIBRARIES ${MSGPUCK_LIBRARY}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.