OSDN Git Service

Wificond: Offload HAL calling code formatting fixes
[android-x86/system-connectivity-wificond.git] / ap_interface_impl.h
index 891a255..69561b0 100644 (file)
@@ -59,6 +59,8 @@ class ApInterfaceImpl {
       wifi_system::HostapdManager::EncryptionType encryption_type,
       const std::vector<uint8_t>& passphrase);
   std::string GetInterfaceName() { return interface_name_; }
+  int GetNumberOfAssociatedStations() const;
+  void Dump(std::stringstream* ss) const;
 
  private:
   const std::string interface_name_;
@@ -68,6 +70,9 @@ class ApInterfaceImpl {
   wifi_system::HostapdManager* const hostapd_manager_;
   const android::sp<ApInterfaceBinder> binder_;
 
+  // Number of associated stations.
+  int number_of_associated_stations_;
+
   void OnStationEvent(StationEvent event,
                       const std::vector<uint8_t>& mac_address);