Home | History | Annotate | Download | only in network

Lines Matching full:ssid

357     def ssid(self):
358 """@return string SSID."""
362 @ssid.setter
363 def ssid(self, value):
364 """Sets the ssid for the hostapd.
366 @param value: string ssid name.
418 """@return meaningful suffix for SSID."""
454 dtim_period=None, frag_threshold=None, ssid=None, bssid=None,
475 @param hide_ssid True if we should set up a hidden SSID.
479 @param ssid string up to 32 byte SSID overriding the router default.
534 if ssid and len(ssid) > 32:
535 raise error.TestFail('Tried to specify SSID that was too long.')
537 self._ssid = ssid
572 'dtim_period=%r, frag_threshold=%r, ssid=%r, bssid=%r, '
641 def generate_dict(self, interface, control_interface, ssid):
648 @param ssid: string SSID of the AP.
654 conf['ssid'] = (self._ssid or ssid)