-
-
Notifications
You must be signed in to change notification settings - Fork 248
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
dhcp protocol update #1254
base: master
Are you sure you want to change the base?
dhcp protocol update #1254
Conversation
add an async dhcp client Bug-Url: #1250
@etene moved the branch and created a new PR for that. |
@etene I will not diverge the code on the branch without letting you know, so you can safely use |
022d4eb
to
4b855c8
Compare
'message_type': DHCPDISCOVER, | ||
'parameter_list': [1, 3, 6, 12, 15, 28], | ||
'message_type': MessageType.DISCOVER, | ||
'parameter_list': [1, 3, 6, 12, 15, 28], # FIXME |
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.
In some coming PRs I have to change to parameter values from the enums
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.
I could do it but i'm starting to think maybe the parameter list should be left empty at this level by default, since there are already default parameters set at the client & cli levels, and one might very well want to send DHCP messages without parameters for testing purposes.
Bug-Url: #1250