Closed jlshuman1961 closed 2 years ago
I found a shortcoming with the code I submitted in the Pull Request on made on Wednesday. How can I submit some changes to the Pull Request? Or do I need to make a new branch and submit a whole new Pull Request and just close the previous Pull Request?
I found a shortcoming with the code I submitted in the Pull Request on made on Wednesday. How can I submit some changes to the Pull Request? Or do I need to make a new branch and submit a whole new Pull Request and just close the previous Pull Request?
You can simply commit your changes to your own repository and branch (https://github.com/jlshuman1961/packetnet/tree/IGMPv3-support) and it will be updated here automatically.
Thanks, PhyxionNL, I made 5 more commits to fix the shortcoming that I mentioned. Please let me know if did correctly, or not.
Made changes as requested.
Made changes as requested.
Made changes as requested.
Build fails.
I forgot to add using statements for my previous code submission. Added those in.
I don't know what to do about this build error. Something about not installing winpcap. Did I break something to make that happen?
I don't know what to do about this build error. Something about not installing winpcap. Did I break something to make that happen?
No, Windows fails at the moment due to https://github.com/dotpcap/packetnet/issues/150. Doesn't matter for this PR. It looks good now, I'll format the documents and merge it.
How long will it be before we can see this IGMPv3 support in an official release of PacketDotNet?
I just noticed that there are still two properties that may need setters in them. This is in the IgmpV3MembershipQueryPacket.cs file. The properties are MaxResponseTime (a calculated value based on MaxResponseCode) and QueriersQueryInterval (a calculated value based on QueriersQueryIntervalCode). Or, I need to make MaxResponseCode and QueriersQueryIntervalCode public, so that the user can set those bytes directly. This is an oversight on my part because it is code that I would not normally use. What do you want me to do about this?
If you can add setters to these properties, that'd be great. You can submit a follow up PR. Please start fresh from master branch here.
Added support for IGMP version 3 messages.