From G.Gerrits:

Minor patch just adding the newer AR7400/INT7400 with dev_id==4 for decoding 
in the Homeplug AV "Get Device/SW Version Confirm (A001)" response.

svn path=/trunk/; revision=46695
This commit is contained in:
Jaap Keuter 2012-12-22 14:28:52 +00:00
parent 40c0a21bee
commit cd376e0ca8
1 changed files with 3 additions and 2 deletions

View File

@ -804,13 +804,14 @@ static const value_string homeplug_av_key_type_vals[] = {
{ 0, NULL }
};
#define HOMEPLUG_AV_DEV_ID_MASK 0x03
#define HOMEPLUG_AV_DEV_ID_MASK 0x07
static const value_string homeplug_av_dev_id_vals[] = {
{ 0x00, "Uknown" },
{ 0x00, "Unknown" },
{ 0x01, "INT6000" },
{ 0x02, "INT6300" },
{ 0x03, "INT6400" },
{ 0x04, "INT7400" },
{ 0, NULL }
};