Home | History | Annotate | Download | only in network

Lines Matching refs:ssid

13 FRAME_FIELD_WLAN_MGMT_SSID = 'wlan_mgt.ssid'
20 PYSHARK_BROADCAST_SSID = 'SSID: '
29 def __init__(self, frametime, bit_rate, mcs_index, ssid):
33 self._ssid = ssid
60 def ssid(self):
62 The SSID of the frame, as a string.
64 The value may be None, if the frame does not have an SSID.
150 # Get the SSID for any probe requests
154 ssid = _fetch_frame_field_value(frame, FRAME_FIELD_WLAN_MGMT_SSID)
155 # Since the SSID name is a variable length field, there seems to be
156 # a bug in the pyshark parsing, it returns 'SSID: ' instead of ''
157 # for broadcast SSID's.
158 if ssid == PYSHARK_BROADCAST_SSID:
159 ssid = BROADCAST_SSID
161 ssid = None
163 frames.append(Frame(frametime, rate, mcs_index, ssid))
192 [frame.ssid for frame in frames if frame.ssid is not None])