Revert "Listen on ipv6" (#5461)

This commit is contained in:
Yuriy Glukhov
2017-03-01 16:03:10 +02:00
committed by Andreas Rumpf
parent 3be87669fa
commit 28a7c874b7

View File

@@ -31,7 +31,7 @@
##
## waitFor server.serve(Port(8080), cb)
import tables, asyncnet, asyncdispatch, parseutils, uri, strutils, nativesockets
import tables, asyncnet, asyncdispatch, parseutils, uri, strutils
import httpcore
export httpcore except parseHeader
@@ -241,7 +241,7 @@ proc serve*(server: AsyncHttpServer, port: Port,
## specified address and port.
##
## When a request is made by a client the specified callback will be called.
server.socket = newAsyncSocket(AF_INET6)
server.socket = newAsyncSocket()
if server.reuseAddr:
server.socket.setSockOpt(OptReuseAddr, true)
if server.reusePort: