~ubuntu-branches/ubuntu/wily/libimobiledevice/wily

« back to all changes in this revision

Viewing changes to cython/house_arrest.pxi

  • Committer: Package Import Robot
  • Author(s): Timo Jyrinki, Matthias Niess, Timo Jyrinki
  • Date: 2014-03-14 08:44:15 UTC
  • mfrom: (1.1.10)
  • Revision ID: package-import@ubuntu.com-20140314084415-twglhjx6bqzmir8v
Tags: 1.1.5+git20140313.bafe6a9e-0ubuntu1
[ Matthias Niess ]
* Replace a duplicate 'backup' util man page with the one for 'crashreport'

[ Timo Jyrinki ]
* New upstream snapshot. (LP: #1207812)
* Drop patches include in the upstream snapshot:
  - debian/patches/CVE-2013-2142.patch
  - debian/patches/git_explicitly_cast_ssl_enabled.patch
* Drop the python patch, new upstream method seems to work:
  - debian/patches/09_use_python_config.patch
* Refreshed remaining patches:
  - debian/patches/01-libs.private.patch
  - debian/patches/02-fix-link-errors.patch
* Drop libimobiledevice-doc, the git does not include html documentation
* Updated libimobiledevice4.symbols 
* Add missing man page for the 'idevicename' util

Show diffs side-by-side

added added

removed removed

Lines of Context:
48
48
    cdef inline BaseError _error(self, int16_t ret):
49
49
        return HouseArrestError(ret)
50
50
 
51
 
    cdef send_request(self, plist.Node message):
 
51
    cpdef send_request(self, plist.Node message):
52
52
        self.handle_error(house_arrest_send_request(self._c_client, message._c_node))
53
53
 
54
 
    cdef send_command(self, bytes command, bytes appid):
 
54
    cpdef send_command(self, bytes command, bytes appid):
55
55
        self.handle_error(house_arrest_send_command(self._c_client, command, appid))
56
56
 
57
57
    cpdef plist.Node get_result(self):