ardupilot/libraries/AP_HAL_Linux/TCPServerDevice.h

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

31 lines
811 B
C
Raw Normal View History

#pragma once
2015-06-19 10:58:40 -03:00
2023-12-25 22:21:11 -04:00
#include <AP_HAL/utility/Socket_native.h>
2015-06-19 10:58:40 -03:00
#include "SerialDevice.h"
2023-12-25 22:21:11 -04:00
#ifndef AP_SOCKET_NATIVE_ENABLED
#error "need native"
#endif
2015-06-19 10:58:40 -03:00
2015-07-08 14:27:21 -03:00
class TCPServerDevice: public SerialDevice {
2015-06-19 10:58:40 -03:00
public:
TCPServerDevice(const char *ip, uint16_t port, bool wait);
2015-07-08 14:27:21 -03:00
virtual ~TCPServerDevice();
2015-06-19 10:58:40 -03:00
virtual bool open() override;
virtual bool close() override;
virtual void set_blocking(bool blocking) override;
virtual void set_speed(uint32_t speed) override;
virtual ssize_t write(const uint8_t *buf, uint16_t n) override;
virtual ssize_t read(uint8_t *buf, uint16_t n) override;
2015-06-19 10:58:40 -03:00
private:
2023-12-25 22:41:12 -04:00
SocketAPM_native listener{false};
SocketAPM_native *sock = nullptr;
2015-06-19 10:58:40 -03:00
const char *_ip;
uint16_t _port;
bool _wait;
bool _blocking = false;
uint32_t _last_bind_warning = 0;
2015-06-19 10:58:40 -03:00
};