/* * Copyright 2004 The WebRTC Project Authors. All rights reserved. * * Use of this source code is governed by a BSD-style license * that can be found in the LICENSE file in the root of the source * tree. An additional intellectual property rights grant can be found * in the file PATENTS. All contributing project authors may * be found in the AUTHORS file in the root of the source tree. */ #ifndef RTC_BASE_NAT_SOCKET_FACTORY_H_ #define RTC_BASE_NAT_SOCKET_FACTORY_H_ #include <stddef.h> #include <cstdint> #include <map> #include <memory> #include <set> #include "api/array_view.h" #include "rtc_base/buffer.h" #include "rtc_base/nat_server.h" #include "rtc_base/nat_types.h" #include "rtc_base/socket.h" #include "rtc_base/socket_address.h" #include "rtc_base/socket_factory.h" #include "rtc_base/socket_server.h" #include "rtc_base/thread.h" namespace rtc { const size_t kNATEncodedIPv4AddressSize = …; const size_t kNATEncodedIPv6AddressSize = …; // Used by the NAT socket implementation. class NATInternalSocketFactory { … }; // Creates sockets that will send all traffic through a NAT, using an existing // NATServer instance running at nat_addr. The actual data is sent using sockets // from a socket factory, given to the constructor. class NATSocketFactory : public SocketFactory, public NATInternalSocketFactory { … }; // Creates sockets that will send traffic through a NAT depending on what // address they bind to. This can be used to simulate a client on a NAT sending // to a client that is not behind a NAT. // Note that the internal addresses of clients must be unique. This is because // there is only one socketserver per thread, and the Bind() address is used to // figure out which NAT (if any) the socket should talk to. // // Example with 3 NATs (2 cascaded), and 3 clients. // ss->AddTranslator("1.2.3.4", "192.168.0.1", NAT_ADDR_RESTRICTED); // ss->AddTranslator("99.99.99.99", "10.0.0.1", NAT_SYMMETRIC)-> // AddTranslator("10.0.0.2", "192.168.1.1", NAT_OPEN_CONE); // ss->GetTranslator("1.2.3.4")->AddClient("1.2.3.4", "192.168.0.2"); // ss->GetTranslator("99.99.99.99")->AddClient("10.0.0.3"); // ss->GetTranslator("99.99.99.99")->GetTranslator("10.0.0.2")-> // AddClient("192.168.1.2"); class NATSocketServer : public SocketServer, public NATInternalSocketFactory { … }; // Free-standing NAT helper functions. size_t PackAddressForNAT(char* buf, size_t buf_size, const SocketAddress& remote_addr); size_t UnpackAddressFromNAT(rtc::ArrayView<const uint8_t> buf, SocketAddress* remote_addr); } // namespace rtc #endif // RTC_BASE_NAT_SOCKET_FACTORY_H_