-
Notifications
You must be signed in to change notification settings - Fork 792
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Stop using boost::asio::ip::udp::endpoint (#4585)
We are not using UDP anymore so there is no need to be referring to boost::asio::ip::udp::endpoint.
- Loading branch information
Showing
6 changed files
with
6 additions
and
50 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,10 +1,9 @@ | ||
#pragma once | ||
|
||
#include <nano/boost/asio/ip/tcp.hpp> | ||
#include <nano/boost/asio/ip/udp.hpp> | ||
|
||
namespace nano | ||
{ | ||
using endpoint = boost::asio::ip::udp::endpoint; | ||
using tcp_endpoint = boost::asio::ip::tcp::endpoint; | ||
using endpoint = boost::asio::ip::tcp::endpoint; | ||
using tcp_endpoint = endpoint; | ||
} |
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
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