You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
simplesshd/src/org/galexander/sshd/SimpleSSHDService.java

44 lines
916 B

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