DefaultInterfaceController.h 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. /* vim: set expandtab ts=4 sw=4: */
  2. /*
  3. * You may redistribute this program and/or modify it under the terms of
  4. * the GNU General Public License as published by the Free Software Foundation,
  5. * either version 3 of the License, or (at your option) any later version.
  6. *
  7. * This program is distributed in the hope that it will be useful,
  8. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  9. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  10. * GNU General Public License for more details.
  11. *
  12. * You should have received a copy of the GNU General Public License
  13. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  14. */
  15. #ifndef DefaultInterfaceController_H
  16. #define DefaultInterfaceController_H
  17. #include "crypto/CryptoAuth.h"
  18. #include "dht/dhtcore/RouterModule.h"
  19. #include "dht/dhtcore/RumorMill.h"
  20. #include "interface/Interface.h"
  21. #include "memory/Allocator.h"
  22. #include "switch/SwitchCore.h"
  23. #include "net/SwitchPinger.h"
  24. #include "interface/InterfaceController.h"
  25. #include "util/log/Log.h"
  26. #include "util/Linker.h"
  27. Linker_require("net/DefaultInterfaceController.c")
  28. struct InterfaceController* DefaultInterfaceController_new(struct CryptoAuth* ca,
  29. struct SwitchCore* switchCore,
  30. struct RouterModule* routerModule,
  31. struct RumorMill* rumorMill,
  32. struct Log* logger,
  33. struct EventBase* eventBase,
  34. struct SwitchPinger* switchPinger,
  35. struct Random* rand,
  36. struct Allocator* allocator);
  37. #endif