ardupilot/libraries/AP_HAL/utility/Socket_native.cpp

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

12 lines
257 B
C++
Raw Normal View History

/*
variant of SocketAPM using native sockets (not via lwip)
*/
#include "Socket_native.h"
#if AP_SOCKET_NATIVE_ENABLED
#undef AP_NETWORKING_BACKEND_PPP
#define IN_SOCKET_NATIVE_CPP
#define SOCKET_CLASS_NAME SocketAPM_native
#include "Socket.cpp"
#endif