summaryrefslogtreecommitdiffstats
path: root/cython/notification_proxy.pxi
diff options
context:
space:
mode:
Diffstat (limited to 'cython/notification_proxy.pxi')
-rw-r--r--cython/notification_proxy.pxi9
1 files changed, 2 insertions, 7 deletions
diff --git a/cython/notification_proxy.pxi b/cython/notification_proxy.pxi
index d5f2d25..cc25f2d 100644
--- a/cython/notification_proxy.pxi
+++ b/cython/notification_proxy.pxi
@@ -31,18 +31,13 @@ cdef class NotificationProxyError(BaseError):
31 BaseError.__init__(self, *args, **kwargs) 31 BaseError.__init__(self, *args, **kwargs)
32 32
33cdef class NotificationProxy(Base): 33cdef class NotificationProxy(Base):
34 __service_name__ = "com.apple.mobile.notification_proxy"
34 cdef np_client_t _c_client 35 cdef np_client_t _c_client
35 36
36 def __cinit__(self, iDevice device not None, LockdownClient lockdown=None, *args, **kwargs): 37 def __cinit__(self, iDevice device not None, int port, *args, **kwargs):
37 cdef: 38 cdef:
38 iDevice dev = device 39 iDevice dev = device
39 LockdownClient lckd
40 np_error_t err 40 np_error_t err
41 if lockdown is None:
42 lckd = LockdownClient(dev)
43 else:
44 lckd = lockdown
45 port = lckd.start_service("com.apple.mobile.notification_proxy")
46 err = np_client_new(dev._c_dev, port, &self._c_client) 41 err = np_client_new(dev._c_dev, port, &self._c_client)
47 self.handle_error(err) 42 self.handle_error(err)
48 43