File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -154,8 +154,8 @@ const char* ffDetectWifi(FFlist* result)
154154        }
155155
156156        item -> conn .signalQuality  =  connInfo -> wlanAssociationAttributes .wlanSignalQuality ;
157-         item -> conn .rxRate  =  connInfo -> wlanAssociationAttributes .ulRxRate ;
158-         item -> conn .txRate  =  connInfo -> wlanAssociationAttributes .ulTxRate ;
157+         item -> conn .rxRate  =  connInfo -> wlanAssociationAttributes .ulRxRate  /  1000. ;
158+         item -> conn .txRate  =  connInfo -> wlanAssociationAttributes .ulTxRate  /  1000. ;
159159
160160        if (connInfo -> wlanSecurityAttributes .bSecurityEnabled )
161161        {
@@ -192,7 +192,7 @@ const char* ffDetectWifi(FFlist* result)
192192                    ffStrbufAppendS (& item -> conn .security , "OWE" );
193193                    break ;
194194                case  11  /* DOT11_AUTH_ALGO_WPA3_ENT */ :
195-                     ffStrbufAppendS (& item -> conn .security , "OWE -ENT" );
195+                     ffStrbufAppendS (& item -> conn .security , "WPA3 -ENT" );
196196                    break ;
197197                default :
198198                    ffStrbufAppendF (& item -> conn .security , "Unknown (%u)" , (unsigned )connInfo -> wlanSecurityAttributes .dot11AuthAlgorithm );
 
 
   
 
     
   
   
          
    
    
     
    
      
     
     
    You can’t perform that action at this time.
  
 
    
  
    
      
        
     
       
      
     
   
 
    
    
  
 
  
 
     
    
0 commit comments