Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There are multiple implementations of a UUID-like field, and some places where we don't use this at all (but could!). This pull request merges them, and brings it into a new
scapy.field.UUIDField
.This impacts
s.l.bluetooth
,s.l.dhcp6
,s.c.dce_rpc
,s.c.opc_da
ands.c.pnio_rpc
.s.l.bluetooth.BTUUIDField
ands.c.dce_rpc.UUIDField
intos.fields.UUIDField
s.c.dce_rpc.RandUUID
tos.volatile
RandUUID
, and adds testsUUIDField
tests that don't useEndiannessField
froms/c/dce_rpc.uts
tot/regression.uts
dhcp6
: MigratesDUID_UUID.uuid
toUUIDField
, and adds tests (tested only with regression tests, based on my reading of the RFC)opc_da
: Migrate fromPUUID
toUUIDField
, removesPUUID
(tested only with regression tests)pnio_rpc
: Fix regressions fromdce_rpc
changes (tested only with regression tests)re
module stomping int/regression.uts
Tests still pass on py2.7 and 3.7 (skipping root/netaccess tests)