You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
539 B
13 lines
539 B
// |
|
// Created by Admin on 11.06.2021. |
|
// |
|
|
|
#ifndef TTGO_T_BEAM_LORA_APRS_WIFI_CLIENTS_H |
|
#define TTGO_T_BEAM_LORA_APRS_WIFI_CLIENTS_H |
|
#include <WiFiClient.h> |
|
#include <WiFiServer.h> |
|
|
|
typedef void (*f_connectedClientCallback_t) (WiFiClient *, int, const String *); |
|
void iterateWifiClients(f_connectedClientCallback_t callback, const String *data, WiFiClient * wifiClients[], int maxWifiClients); |
|
void check_for_new_clients(WiFiServer *wiFiServer, WiFiClient * wifiClients[], int maxWifiClients); |
|
#endif //TTGO_T_BEAM_LORA_APRS_WIFI_CLIENTS_H
|
|
|