You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Stream vtable interface used by WLAN supplicant to access SSL certificates
84
-
* for WPA Enterprise authentication.
85
-
*
86
-
* @ingroup wlan
87
-
*/
88
-
structcbWLAN_Stream_s {
89
-
cb_int32 (*read)(constcbWLAN_Stream*stream, void*buf, cb_uint32count); /**< Read function pointer, place count bytes in buf. */
90
-
cb_int32 (*write)(constcbWLAN_Stream*stream, void*buf, cb_uint32count); /**< Read function pointer, place count bytes in buf. */
91
-
void (*rewind)(constcbWLAN_Stream*stream); /**< Rewind function pointer, rewind stream internal iterator to the beginning. Mandatory for all streams. */
92
-
void (*setPosition)(constcbWLAN_Stream*stream, cbWLAN_StreamPositionposition); /**< Set absolute position. */
93
-
cbWLAN_StreamPosition (*getPosition)(constcbWLAN_Stream*stream); /**< Get current position. */
94
-
cb_uint32 (*getSize)(constcbWLAN_Stream*stream); /**< GetSize function pointer, return total size of stream contents. */
cbWLAN_CipherSuitersnCiphers; /**< Bit field indicating which ciphers that shall be displayed in RSN information elements. If 0 no RSN information elements is added to beacons and probe responses. */
204
-
cbWLAN_CipherSuitewpaCiphers; /**< Bit field indicating which ciphers that shall be displayed in WPA information elements. If 0 no WPA information elements is added to beacons and probe responses. */
205
-
cbWLAN_WPAPSKpsk; /**< WPA pre-shared key*/
185
+
cbWLAN_CipherSuitersnCiphers; /**< Bit field indicating which ciphers that shall be displayed in RSN information elements. If 0 no RSN information elements is added to beacons and probe responses. */
186
+
cbWLAN_CipherSuitewpaCiphers; /**< Bit field indicating which ciphers that shall be displayed in WPA information elements. If 0 no WPA information elements is added to beacons and probe responses. */
187
+
cbWLAN_WPAPSKpsk; /**< WPA pre-shared key*/
188
+
cb_uint32gtkRekeyInterval; /**< Group rekey interval in seconds */
206
189
} cbWLAN_WPAPSKApParameters;
207
190
208
191
@@ -286,8 +269,11 @@ typedef enum {
286
269
cbWLAN_IOCTL_GET_DTIM_ENABLE, //!< Get DTIM enable 0, disable 1 enable
287
270
cbWLAN_IOCTL_SET_SLEEP_TIMEOUT, //!< Set enter power save entry delay (in ms). Power save mode will be entered only if there no activity during this delay
288
271
cbWLAN_IOCTL_GET_SLEEP_TIMEOUT, //!< Get enter power save entry delay (in ms). Power save mode will be entered only if there no activity during this delay
289
-
290
272
cbWLAN_IOCTL_LAST,
273
+
cbWLAN_IOCTL_SET_GSETTING=1000, //!< Pipe to @ref cbWM_gSet.
274
+
cbWLAN_IOCTL_SET_TSETTING=2000, //!< Pipe to @ref cbWM_tSet.
275
+
cbWLAN_IOCTL_GET_GSETTING=3000, //!< Pipe to @ref cbWM_gGet.
276
+
cbWLAN_IOCTL_GET_TSETTING=4000, //!< Pipe to @ref cbWM_tGet.
0 commit comments