-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[PW_SID:804365] [1/6] ie: Move AKM suite converter from netdev #269
base: workflow
Are you sure you want to change the base?
Conversation
This is taken care of by the individual cache items and if none exist, tar fails.
It is more logical to host this function inside ie.c than netdev.c. Particularly since ie_rsn_cipher_suite_to_cipher is already present in ie.c.
vendor_ies stored in handshake_state are already added as part of netdev_populate_common_ies(), which is already invoked by netdev_build_cmd_connect(). Normally vendor_ies is NULL for OWE connections, so no IEs are duplicated as a result.
In netdev_retry_owe, if l_gen_family_send fails, the connect_cmd is never freed or reset. Fix that. While here, use a stack variable instead of netdev member, since the use of such a member is unnecessary and confusing.
Fetch PR Make Distcheck Build - Configure Make Check Make Check w/Valgrind Incremental Build with patches |
Fetch PR GitLint Make Distcheck Build - Configure Make Check Make Check w/Valgrind Incremental Build with patches Autotest Runner Output:
Clang Build |
48509c4
to
6787d1d
Compare
935d6cc
to
1efe833
Compare
a6b078e
to
1c88fa1
Compare
9299531
to
a52506c
Compare
61cb7e5
to
ede3c3a
Compare
8991f76
to
ca0eb77
Compare
aada677
to
1163d8b
Compare
cd38a46
to
a84ea46
Compare
9ef1a07
to
b2ed861
Compare
0375753
to
7e9a794
Compare
d961fcd
to
bd89ecb
Compare
It is more logical to host this function inside ie.c than netdev.c.
Particularly since ie_rsn_cipher_suite_to_cipher is already present in
ie.c.
src/ie.c | 46 ++++++++++++++++++++++++++++++++++++++++++++++
src/ie.h | 2 ++
src/netdev.c | 47 +----------------------------------------------
3 files changed, 49 insertions(+), 46 deletions(-)