Package com.mattibal.meshnet.Layer3Packet

Examples of com.mattibal.meshnet.Layer3Packet.DataToBase


  public synchronized void onFrameReceived(ByteBuffer frame, ILayer2 srcInterface, int srcMacAddress){

    try {
      Layer3Packet packet = Layer3Packet.buildFromByteArray(frame);
      if(packet instanceof DataToBase){
        DataToBase dataToBase = (DataToBase) packet;
        // verify hmac? (now it doesn't have hmac)
        onDataToBase(dataToBase);
      } else if(packet instanceof BeaconChildResponse){
        BeaconChildResponse beaconChildResponse = (BeaconChildResponse) packet;
        System.out.println("ricevuto BeaconChildResponse childNonce:"+beaconChildResponse.getChildNonce());
View Full Code Here

TOP

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

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.