From e5b3484d2723f7c9ecc8eb84c6574888799844e1 Mon Sep 17 00:00:00 2001 From: cyBerta Date: Thu, 21 Sep 2017 00:57:47 +0200 Subject: update ics-openvpn: add new aidl interface definitions --- .../aidl/de/blinkt/openvpn/api/IOpenVPNStatusCallback.aidl | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 app/src/main/aidl/de/blinkt/openvpn/api/IOpenVPNStatusCallback.aidl (limited to 'app/src/main/aidl/de/blinkt/openvpn/api/IOpenVPNStatusCallback.aidl') diff --git a/app/src/main/aidl/de/blinkt/openvpn/api/IOpenVPNStatusCallback.aidl b/app/src/main/aidl/de/blinkt/openvpn/api/IOpenVPNStatusCallback.aidl new file mode 100644 index 00000000..a94b3b44 --- /dev/null +++ b/app/src/main/aidl/de/blinkt/openvpn/api/IOpenVPNStatusCallback.aidl @@ -0,0 +1,13 @@ +package de.blinkt.openvpn.api; + +/** + * Example of a callback interface used by IRemoteService to send + * synchronous notifications back to its clients. Note that this is a + * one-way interface so the server does not block waiting for the client. + */ +interface IOpenVPNStatusCallback { + /** + * Called when the service has a new status for you. + */ + oneway void newStatus(in String uuid, in String state, in String message, in String level); +} -- cgit v1.2.3