package org.galexander.sshd; import android.app.Service; import android.content.Intent; import android.os.IBinder; public class SimpleSSHDService extends Service { public int sshd_pid = 0; public int onStartCommand(Intent intent, int flags, int startId) { if ((intent == null) || (!intent.getBooleanExtra("stop", false))) { if (is_started()) { stop_sshd(); } start_sshd(); return START_STICKY; } else { stop_sshd(); return START_NOT_STICKY; } } public IBinder onBind(Intent intent) { return null; } public boolean is_started() { return (sshd_pid != 0); } private native void start_sshd(); private native void stop_sshd(); static { System.loadLibrary("simplesshd-jni"); } }