-
Notifications
You must be signed in to change notification settings - Fork 3k
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
Cellular: add method to set authentication type to CellularContext #10694
Conversation
375e3a2
to
d61eeb4
Compare
Force pushed fix for unit test Valgrind run |
* | ||
* @param type enum AuthenticationType | ||
*/ | ||
virtual void set_authentication_type(AuthenticationType type); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
virtual not needed..?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
removed virtual
Authentication type must be able to set. It was hard coded to CHAP. Added unit tests for CellularContext to be able to add test for new function.
d61eeb4
to
8922eeb
Compare
@jarvte, thank you for your changes. |
@AnttiKauppila waiting for your review |
CI started. |
Test run: FAILEDSummary: 1 of 11 test jobs failed Failed test jobs:
|
Looks like a license failure in CI, will restart. |
CI restarted |
Test run: SUCCESSSummary: 11 of 11 test jobs passed |
Description
Authentication type must be able to set. It was hard coded to CHAP.
Added unit tests for CellularContext to be able to add test for new function.
Fix for issue: #10551
Pull request type
Reviewers
@AriParkkila
Release Notes
Add new method virtual void set_authentication_type(AuthenticationType type) to CellularContext so application can set the correct authentication type.