Resolved more code where we didn't need to define separate BAC_ROUTING functionality, since the npdu_encode_pdu() will do the right thing if our source address is for the gateway (root device), because src->net and/or src->len will be 0.

For the important Device_Object_Instance_Number(), will redirect to the Routed_Device_Object_Instance_Number() function if this is a routing build.
This leaves only the Who-Is and Who-Has handlers to be dealt with.
This commit is contained in:
tbrennan3
2010-11-24 22:04:02 +00:00
parent 22c14fccad
commit a595bdb4b5
12 changed files with 30 additions and 100 deletions
-8
View File
@@ -83,11 +83,7 @@ void handler_who_has(
Device_Valid_Object_Name(object_name, &object_type,
&object_instance);
if (found)
#if BAC_ROUTING
Send_I_Have(Routed_Device_Object_Instance_Number(),
#else
Send_I_Have(Device_Object_Instance_Number(),
#endif
(BACNET_OBJECT_TYPE) object_type, object_instance,
object_name);
} else {
@@ -96,11 +92,7 @@ void handler_who_has(
Device_Valid_Object_Id(data.object.identifier.type,
data.object.identifier.instance);
if (object_name)
#if BAC_ROUTING
Send_I_Have(Routed_Device_Object_Instance_Number(),
#else
Send_I_Have(Device_Object_Instance_Number(),
#endif
(BACNET_OBJECT_TYPE) data.object.identifier.type,
data.object.identifier.instance, object_name);
}