AIDL: STA: Indicate EHT connection and bandwidth capabilities

Indicate EHT capability of the current connection determined from
association request and response frames to framework. Also, parse EHT
capabilities and operation IEs of association request and response
frames to get bandwidth capability of the current connection and
indicate the same to framework.

Bug: 254955620
Test: Manual - STA connect to AP
Change-Id: I8c4a6925867a3125e971ebace76f0be4f5b3449a
diff --git a/wpa_supplicant/events.c b/wpa_supplicant/events.c
index 43c9344..aa01245 100644
--- a/wpa_supplicant/events.c
+++ b/wpa_supplicant/events.c
@@ -3076,7 +3076,8 @@
 				get_supported_channel_width(&req_elems);
 			enum chan_width ap_operation_chan_width =
 				get_operation_channel_width(&resp_elems);
-			if (wpa_s->connection_vht || wpa_s->connection_he) {
+			if (wpa_s->connection_vht || wpa_s->connection_he ||
+			    wpa_s->connection_eht) {
 				wpa_s->connection_channel_bandwidth =
 					get_sta_operation_chan_width(ap_operation_chan_width,
 					sta_supported_chan_width);