Accepts an incoming connection

Property definitions

websocket $ WebsocketServer :: accept
	# Accepts an incoming connection
	fun accept: WebsocketConnection
	do
		assert not listener.closed

		var client = listener.accept
		assert client != null

		return new WebsocketConnection(client)
	end
lib/websocket/websocket.nit:44,2--53,4