UDPInterface_pvt.h 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  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 UDPInterface_pvt_H
  16. #define UDPInterface_pvt_H
  17. #include "util/events/EventBase.h"
  18. #include "interface/addressable/AddrInterface.h"
  19. #include "interface/MultiInterface.h"
  20. #include "interface/UDPInterface.h"
  21. #include "interface/InterfaceController.h"
  22. #include "memory/Allocator.h"
  23. #include "util/Identity.h"
  24. #include "util/log/Log.h"
  25. #include "util/platform/Socket.h"
  26. #include "util/events/Event.h"
  27. #define UDPInterface_MAX_PACKET_SIZE 8192
  28. #define UDPInterface_PADDING 512
  29. struct UDPInterface_pvt
  30. {
  31. struct UDPInterface pub;
  32. struct AddrInterface* udpBase;
  33. struct Log* logger;
  34. struct InterfaceController* ic;
  35. struct MultiInterface* multiIface;
  36. struct Allocator* alloc;
  37. uint8_t messageBuff[UDPInterface_PADDING + UDPInterface_MAX_PACKET_SIZE];
  38. Identity
  39. };
  40. #endif