mirror of
http://galexander.org/git/simplesshd.git
synced 2024-11-27 09:48:08 +00:00
now it compiles...
This commit is contained in:
parent
643a5aff23
commit
720007ae32
@ -12,6 +12,6 @@
|
||||
</intent-filter>
|
||||
</activity>
|
||||
<service android:name="SimpleSSHDService"
|
||||
android:label="SimpleSSHDService">
|
||||
android:label="SimpleSSHDService" />
|
||||
</application>
|
||||
</manifest>
|
||||
|
@ -1,13 +1,15 @@
|
||||
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)) {
|
||||
(!intent.getBooleanExtra("stop", false))) {
|
||||
if (is_started()) {
|
||||
stop_sshd();
|
||||
}
|
||||
@ -18,13 +20,16 @@ public class SimpleSSHDService extends Service {
|
||||
return START_NOT_STICKY;
|
||||
}
|
||||
}
|
||||
public IBinder onBind(Intent intent) {
|
||||
return null;
|
||||
}
|
||||
|
||||
public boolean is_started() {
|
||||
return (sshd_pid != 0);
|
||||
}
|
||||
|
||||
private native void start_sshd(void);
|
||||
private native void stop_sshd(void);
|
||||
private native void start_sshd();
|
||||
private native void stop_sshd();
|
||||
static {
|
||||
System.loadLibrary("simplesshd-jni");
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user