/* * Copyright (c) 2011 Remko Tronçon * Licensed under the GNU General Public License v3. * See Documentation/Licenses/GPLv3.txt for more information. */ #pragma once #include namespace Swift { class EventLoop; class NullNATTraverser : public NATTraverser { public: NullNATTraverser(EventLoop* eventLoop); boost::shared_ptr createGetPublicIPRequest(); boost::shared_ptr createForwardPortRequest(int localPort, int publicPort); boost::shared_ptr createRemovePortForwardingRequest(int localPort, int publicPort); private: EventLoop* eventLoop; }; }