| 1066 | |
| 1067 | |
| 1068 | class EIR_CompleteList32BitServiceUUIDs(EIR_Element): |
| 1069 | name = 'Complete list of 32-bit service UUIDs' |
| 1070 | fields_desc = [ |
| 1071 | # https://www.bluetooth.com/specifications/assigned-numbers |
| 1072 | FieldListField('svc_uuids', None, XLEIntField('uuid', 0), |
| 1073 | length_from=EIR_Element.length_from) |
| 1074 | ] |
| 1075 | |
| 1076 | |
| 1077 | class EIR_IncompleteList32BitServiceUUIDs(EIR_CompleteList32BitServiceUUIDs): |
nothing calls this directly
no test coverage detected