Art-Net: Add missing ArtSync opcode

Change-Id: I789219b4016507c7590598f4b04dd254abf13f5f
Reviewed-on: https://code.wireshark.org/review/12101
Reviewed-by: Anders Broman <a.broman58@gmail.com>
This commit is contained in:
Ryan Mullen 2015-11-24 10:18:16 -05:00 committed by Anders Broman
parent 5088030826
commit 9b7aaa2699
1 changed files with 2 additions and 0 deletions

View File

@ -72,6 +72,7 @@ void proto_reg_handoff_artnet(void);
#define ARTNET_OP_OUTPUT 0x5000
#define ARTNET_OP_NZS 0x5100
#define ARTNET_OP_SYNC 0x5200
#define ARTNET_OP_ADDRESS 0x6000
@ -118,6 +119,7 @@ static const value_string artnet_opcode_vals[] = {
{ ARTNET_OP_COMMAND, "ArtCommand" },
{ ARTNET_OP_OUTPUT, "ArtDMX" },
{ ARTNET_OP_NZS, "ArtNzs" },
{ ARTNET_OP_SYNC, "ArtSync" },
{ ARTNET_OP_ADDRESS, "ArtAddress" },
{ ARTNET_OP_INPUT, "ArtInput" },
{ ARTNET_OP_TOD_REQUEST, "ArtTodRequest" },