Package com.mattibal.meshnet.Layer3Packet

Examples of com.mattibal.meshnet.Layer3Packet.DataToDevice


  }
 
 
  public void sendDataToDevice(byte[] dataPayload, NetworkTree.Node destNode) throws IOException{
    int destinationAddress = destNode.getAddress();
    DataToDevice packet = new DataToDevice(destinationAddress, dataPayload);
    byte[] packetBytes = packet.getRawBytes().array();
    RootNode firstHop = destNode.getRouteToMyself();
    firstHop.getNetInterface().sendLayer3Packet(packetBytes, firstHop.getMacAddress());
  }
View Full Code Here

TOP

Related Classes of com.mattibal.meshnet.Layer3Packet.DataToDevice

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.