Skip to content

Commit

Permalink
dissector: Deindent ConfigFileInfo
Browse files Browse the repository at this point in the history
It seemed to be a child of AbilitySupport, which is not the case
  • Loading branch information
ecksun committed Jan 27, 2025
1 parent c335359 commit 1518ab2
Showing 1 changed file with 45 additions and 45 deletions.
90 changes: 45 additions & 45 deletions dissector/messages.md
Original file line number Diff line number Diff line change
Expand Up @@ -1273,71 +1273,71 @@ Message have zero to two payloads.
cameras only have weak encryption that is easily broken since the
decryption key is fixed and well-known.
- 67: `<ConfigFileInfo> (FW Upgrade)`
- 67: `<ConfigFileInfo> (FW Upgrade)`
- Client
- Client
- Header
- Header
| Magic | Message ID | Message Length | Encryption Offset | Status Code | Message Class | Payload Offset |
| ----------- | ----------- | -------------- | ----------------- | ----------- | ------------- | -------------- |
| 0a bc de f0 | 00 00 00 43 | 00 00 01 00 | 00 00 00 00 | 00 00 | 64 14 | 00 00 00 00 |
| Magic | Message ID | Message Length | Encryption Offset | Status Code | Message Class | Payload Offset |
| ----------- | ----------- | -------------- | ----------------- | ----------- | ------------- | -------------- |
| 0a bc de f0 | 00 00 00 43 | 00 00 01 00 | 00 00 00 00 | 00 00 | 64 14 | 00 00 00 00 |
- Extension
- Extension
```xml
<?xml version="1.0" encoding="UTF-8" ?>
<body>
<ConfigFileInfo version="1.1">
<fileName>FIRMWAREFILE.pak</fileName>
<fileSize>SIZE_IN_BYTES</fileSize>
<updateParameter>0</updateParameter>
</ConfigFileInfo>
</body>
```
```xml
<?xml version="1.0" encoding="UTF-8" ?>
<body>
<ConfigFileInfo version="1.1">
<fileName>FIRMWAREFILE.pak</fileName>
<fileSize>SIZE_IN_BYTES</fileSize>
<updateParameter>0</updateParameter>
</ConfigFileInfo>
</body>
```
- **Notes:** updateParameter refers to updating the settings. If 1 it will restore factory settings. If 0 it will keep current.
- **Notes:** updateParameter refers to updating the settings. If 1 it will restore factory settings. If 0 it will keep current.
- Camera
- Camera
- Header
- Header
| Magic | Message ID | Message Length | Encryption Offset | Status Code | Message Class | Payload Offset |
| ----------- | ----------- | -------------- | ----------------- | ----------- | ------------- | -------------- |
| 0a bc de f0 | 00 00 00 43 | 00 00 00 00 | 00 00 00 00 | c8 00 | 00 00 | 00 00 00 00 |
| Magic | Message ID | Message Length | Encryption Offset | Status Code | Message Class | Payload Offset |
| ----------- | ----------- | -------------- | ----------------- | ----------- | ------------- | -------------- |
| 0a bc de f0 | 00 00 00 43 | 00 00 00 00 | 00 00 00 00 | c8 00 | 00 00 | 00 00 00 00 |
- Client
- Client
- Header
- Header
| Magic | Message ID | Message Length | Encryption Offset | Status Code | Message Class | Payload Offset |
| ----------- | ----------- | -------------- | ----------------- | ----------- | ------------- | -------------- |
| 0a bc de f0 | 00 00 00 43 | 00 00 94 58 | 00 00 00 00 | 00 00 | 64 14 | 00 00 00 6a |
| Magic | Message ID | Message Length | Encryption Offset | Status Code | Message Class | Payload Offset |
| ----------- | ----------- | -------------- | ----------------- | ----------- | ------------- | -------------- |
| 0a bc de f0 | 00 00 00 43 | 00 00 94 58 | 00 00 00 00 | 00 00 | 64 14 | 00 00 00 6a |
- Extension
- Extension
```xml
<?xml version="1.0" encoding="UTF-8" ?>
<Extension version="1.1">
<binaryData>1</binaryData>
</Extension>
```
```xml
<?xml version="1.0" encoding="UTF-8" ?>
<Extension version="1.1">
<binaryData>1</binaryData>
</Extension>
```
- Payload
- Payload
This contains binary data of the file but stops once the message size reaches
38000 bytes and continues in another packet. There does not appear to
be a checksum or hash and this part contains only the raw bytes of the file.
This contains binary data of the file but stops once the message size reaches
38000 bytes and continues in another packet. There does not appear to
be a checksum or hash and this part contains only the raw bytes of the file.
- Camera
- Camera
- Header
- Header
| Magic | Message ID | Message Length | Encryption Offset | Status Code | Message Class | Payload Offset |
| ----------- | ----------- | -------------- | ----------------- | ----------- | ------------- | -------------- |
| 0a bc de f0 | 00 00 00 43 | 00 00 00 00 | 00 00 00 00 | c8 00 | 00 00 | 00 00 00 00 |
| Magic | Message ID | Message Length | Encryption Offset | Status Code | Message Class | Payload Offset |
| ----------- | ----------- | -------------- | ----------------- | ----------- | ------------- | -------------- |
| 0a bc de f0 | 00 00 00 43 | 00 00 00 00 | 00 00 00 00 | c8 00 | 00 00 | 00 00 00 00 |
- **Notes:** Last two messages repeat until all data is sent
- **Notes:** Last two messages repeat until all data is sent
- 76: `<Ip>`
Expand Down

0 comments on commit 1518ab2

Please sign in to comment.