Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 22 additions & 2 deletions dissector/messages.md
Original file line number Diff line number Diff line change
Expand Up @@ -354,7 +354,7 @@ Message have zero to two payloads.
</PtzControl>
</body>
```

- **Notes** : The known movement commands are `"left"`, `"right"`, `"up"`, `"down"`, `"leftUp"`,
`"leftDown"`, `"rightUp"`, `"rightDown"` and `"stop"` although the diagonal movement
does not seem to work.
Expand Down Expand Up @@ -394,7 +394,7 @@ Message have zero to two payloads.
</PtzPreset>
</body>
```

- **Notes** : The known values for command are `"setPos"` and `"toPos"`

- Camera
Expand Down Expand Up @@ -1655,13 +1655,33 @@ Message have zero to two payloads.

- Payload

If no SD Card:

```xml
<?xml version="1.0" encoding="UTF-8" ?>
<body>
<HddInfoList version="1.1" />
</body>
```

If there is a SD Card

```xml
<?xml version="1.0" encoding="UTF-8" ?>
<body>
<HddInfoList version="1.1">
<HddInfo>
<number>0</number>
<capacity>30</capacity>
<format>1</format>
<mount>1</mount>
<remainSize>29</remainSize>
<remainSizeM>551</remainSizeM>
</HddInfo>
</HddInfoList>
</body>
```

- 104: `<SystemGeneral>`

- Client
Expand Down