/* * Copyright (c) Facebook, Inc. and its affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. * */ #pragma once #include namespace quic { class QuicReusePortUDPSocketFactory : public QuicUDPSocketFactory { public: ~QuicReusePortUDPSocketFactory() override {} QuicReusePortUDPSocketFactory() {} std::unique_ptr make(folly::EventBase* evb, int) override { auto sock = std::make_unique(evb); sock->setReusePort(true); sock->setReuseAddr(false); return sock; } }; } // namespace quic