Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/ConnectionManager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@ namespace eipScanner {
FORWARD_CLOSE = 0x4E
};

ConnectionManager::ConnectionManager()
: ConnectionManager(std::make_shared<MessageRouter>()){
ConnectionManager::ConnectionManager(bool use_8_bit_path_segments)
: ConnectionManager(std::make_shared<MessageRouter>(use_8_bit_path_segments)){
}

ConnectionManager::ConnectionManager(const MessageRouter::SPtr& messageRouter)
Expand Down
2 changes: 1 addition & 1 deletion src/ConnectionManager.h
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ namespace eipScanner {
/**
* @brief Default constructor
*/
ConnectionManager();
ConnectionManager(bool use_8_bit_path_segments=false);

/**
* @note used fot testing
Expand Down