diff options
| author | Cory Fields <[email protected]> | 2016-05-31 13:51:11 -0400 |
|---|---|---|
| committer | Cory Fields <[email protected]> | 2016-07-31 13:24:07 -0400 |
| commit | f96c7c4d91f3c09d26658bc9c15aa561689fa2d4 (patch) | |
| tree | 4fc6bff63eff752e4791ae3fb64de77b427afeee /src/netbase.h | |
| parent | net: Split resolving out of CNetAddr (diff) | |
| download | discoin-f96c7c4d91f3c09d26658bc9c15aa561689fa2d4.tar.xz discoin-f96c7c4d91f3c09d26658bc9c15aa561689fa2d4.zip | |
net: Split resolving out of CService
Diffstat (limited to 'src/netbase.h')
| -rw-r--r-- | src/netbase.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/netbase.h b/src/netbase.h index 0deca02ca..97b96f69c 100644 --- a/src/netbase.h +++ b/src/netbase.h @@ -152,10 +152,6 @@ class CService : public CNetAddr CService(const CNetAddr& ip, unsigned short port); CService(const struct in_addr& ipv4Addr, unsigned short port); CService(const struct sockaddr_in& addr); - explicit CService(const char *pszIpPort, int portDefault); - explicit CService(const char *pszIpPort); - explicit CService(const std::string& strIpPort, int portDefault); - explicit CService(const std::string& strIpPort); void Init(); void SetPort(unsigned short portIn); unsigned short GetPort() const; |