diff options
| author | 2008-02-13 18:22:19 +0000 | |
|---|---|---|
| committer | 2008-02-13 18:22:19 +0000 | |
| commit | bfaf7e3b27981a5144faba6d17c6e29fac735dbb (patch) | |
| tree | bdec845abe8e5fcf617657f1e2473aed1a8fdec6 /src/socket.cpp | |
| parent | This doesn't need to be inside the loop. There is only one IP for (potentiall... (diff) | |
Commit patch from danieldg that makes a ton of stuff const-safe for latest warn-happy trigger-happy gcc4 (thanks)
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@8922 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/socket.cpp')
| -rw-r--r-- | src/socket.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/socket.cpp b/src/socket.cpp index b9e22c949..81f2a6f27 100644 --- a/src/socket.cpp +++ b/src/socket.cpp @@ -309,7 +309,7 @@ bool irc::sockets::MatchCIDR(const char* address, const char* cidr_mask, bool ma * It can only bind to IP addresses, if you wish to bind to hostnames * you should first resolve them using class 'Resolver'. */ -bool InspIRCd::BindSocket(int sockfd, int port, char* addr, bool dolisten) +bool InspIRCd::BindSocket(int sockfd, int port, const char* addr, bool dolisten) { /* We allocate 2 of these, because sockaddr_in6 is larger than sockaddr (ugh, hax) */ sockaddr* servaddr = new sockaddr[2]; @@ -318,7 +318,7 @@ bool InspIRCd::BindSocket(int sockfd, int port, char* addr, bool dolisten) int ret, size; if (*addr == '*') - *addr = 0; + addr = ""; #ifdef IPV6 if (*addr) |
