mirror of
https://github.com/sle118/squeezelite-esp32.git
synced 2026-05-19 03:35:32 +01:00
applied platformio structure
This commit is contained in:
45
lib/spotify/cspot/include/PlainConnection.h
Normal file
45
lib/spotify/cspot/include/PlainConnection.h
Normal file
@@ -0,0 +1,45 @@
|
||||
#ifndef PLAINCONNECTION_H
|
||||
#define PLAINCONNECTION_H
|
||||
#ifdef _WIN32
|
||||
#include <winsock2.h>
|
||||
#include <ws2tcpip.h>
|
||||
|
||||
#include "win32shim.h"
|
||||
#else
|
||||
#include <unistd.h> // for size_t
|
||||
#endif
|
||||
#include <cstdint> // for uint8_t
|
||||
#include <functional> // for function
|
||||
#include <string> // for string
|
||||
#include <vector> // for vector
|
||||
|
||||
typedef std::function<bool()> timeoutCallback;
|
||||
|
||||
namespace cspot {
|
||||
class PlainConnection {
|
||||
public:
|
||||
PlainConnection();
|
||||
~PlainConnection();
|
||||
|
||||
/**
|
||||
* @brief Connect to the given AP address
|
||||
*
|
||||
* @param apAddress The AP url to connect to
|
||||
*/
|
||||
void connect(const std::string& apAddress);
|
||||
void close();
|
||||
|
||||
timeoutCallback timeoutHandler;
|
||||
std::vector<uint8_t> sendPrefixPacket(const std::vector<uint8_t>& prefix,
|
||||
const std::vector<uint8_t>& data);
|
||||
std::vector<uint8_t> recvPacket();
|
||||
|
||||
void readBlock(const uint8_t* dst, size_t size);
|
||||
size_t writeBlock(const std::vector<uint8_t>& data);
|
||||
|
||||
private:
|
||||
int apSock;
|
||||
};
|
||||
} // namespace cspot
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user