ardupilot/libraries/AP_HAL/utility/Socket.h
Andrew Tridgell cbb3e27519 AP_HAL: added SocketAPM_native
this is a varient of SocketAPM that always uses native sockets
(ie. doesn't go via AP_Networking lwip)
2024-01-03 12:14:47 +11:00

15 lines
226 B
C

/*
variant of SocketAPM using either lwip or native sockets
*/
#pragma once
#include <AP_HAL/AP_HAL.h>
#ifndef SOCKET_CLASS_NAME
#define SOCKET_CLASS_NAME SocketAPM
#endif
#include "Socket.hpp"
#undef SOCKET_CLASS_NAME