summaryrefslogtreecommitdiff
path: root/chromium/net/quic/platform/impl/quic_port_utils_impl.cc
blob: 4209b73e3f3d8d80fddf9a6d48b2d1f7280967b0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Copyright (c) 2019 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "net/quic/platform/impl/quic_port_utils_impl.h"

#include "net/third_party/quiche/src/quic/core/crypto/quic_random.h"

namespace quic {

int QuicPickServerPortForTestsOrDieImpl() {
  return 0;  // Let the OS find an unused port.
}

void QuicRecyclePortImpl(int port) {}

}  // namespace quic