Sample code for 30+ languages & platforms
Android™

Send a Wake-on-LAN Packet with a SecureOn Password

See more Socket/SSL/TLS Examples

Demonstrates Socket.SendWakeOnLan2, which sends a Wake-on-LAN magic packet that includes a SecureOn password.

Background. The password is a hexadecimal string representing four or six bytes and should come from a secure source. This is otherwise the same as SendWakeOnLan.

Chilkat Android™ Downloads

Android™
// Important: Don't forget to include the call to System.loadLibrary
// as shown at the bottom of this code sample.
package com.test;

import android.app.Activity;
import com.chilkatsoft.*;

import android.widget.TextView;
import android.os.Bundle;

public class SimpleActivity extends Activity {

  private static final String TAG = "Chilkat";

  // Called when the activity is first created.
  @Override
  public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);

    boolean success = false;

    CkSocket socket = new CkSocket();

    //  Send a Wake-on-LAN magic packet that includes a SecureOn password.  The password is a hexadecimal
    //  string representing four or six bytes, and should come from a secure source rather than being
    //  hard-coded.
    String secureOnPassword = "AABBCCDDEEFF";
    success = socket.SendWakeOnLan2("000102030405",9,"255.255.255.255",secureOnPassword);
    if (success == false) {
        Log.i(TAG, socket.lastErrorText());
        return;
        }

    Log.i(TAG, "Wake-on-LAN packet sent.");

  }

  static {
      System.loadLibrary("chilkat");

      // Note: If the incorrect library name is passed to System.loadLibrary,
      // then you will see the following error message at application startup:
      //"The application <your-application-name> has stopped unexpectedly. Please try again."
  }
}