BACnet.Core.Network.RoutingTable.AddRemoteRoute C# (CSharp) Method

AddRemoteRoute() public method

Adds a new remote route to routing table
public AddRemoteRoute ( ushort network, byte portId, Mac nextHop ) : Route
network ushort The network number of the route
portId byte The port id of the route
nextHop BACnet.Core.Datalink.Mac The next hop mac address
return Route
        public Route AddRemoteRoute(ushort network, byte portId, Mac nextHop)
        {
            int index = _findRoute(network);
            return _upsertRoute(index, new Route(network, portId, nextHop));
        }