/ firmware / src / networking / wifi_internal.h
wifi_internal.h
 1  #pragma once
 2  #include <networking/wifi.h>
 3  
 4  #include <Preferences.h>
 5  
 6  namespace networking::wifi::internal {
 7  
 8  extern bool mdns_started;
 9  extern bool ap_active;
10  extern const char wifi_ssid_slot[33];
11  extern const char wifi_pass_slot[65];
12  
13  bool openPreferences(bool readonly, Preferences *prefs);
14  void configureMdnsServices(const char *hostname);
15  
16  }
17