class Falcon::Service::Server

def stop(...)

Close the bound endpoint.
def stop(...)
	if @bound_endpoint
		@bound_endpoint.close
		@bound_endpoint = nil
	end
	
	@endpoint = nil
	
	super
end