mirror of https://github.com/ArduPilot/ardupilot
12 lines
257 B
C++
12 lines
257 B
C++
|
/*
|
||
|
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
|