Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
L
libplist
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
1
Issues
1
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
pwn
libplist
Commits
31323f08
Commit
31323f08
authored
Aug 17, 2008
by
Jonathan Beck
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
uses new instead of get in API when actually allocating something.
parent
07ef95d5
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
libiphone.h
include/libiphone/libiphone.h
+3
-3
No files found.
include/libiphone/libiphone.h
View file @
31323f08
...
@@ -50,7 +50,7 @@ void iph_free_device ( iph_device_t device );
...
@@ -50,7 +50,7 @@ void iph_free_device ( iph_device_t device );
//lockdownd related functions
//lockdownd related functions
int
iph_lckd_
get
_client
(
iph_device_t
device
,
iph_lckd_client_t
*
client
);
int
iph_lckd_
new
_client
(
iph_device_t
device
,
iph_lckd_client_t
*
client
);
void
iph_lckd_free_client
(
iph_lckd_client_t
client
);
void
iph_lckd_free_client
(
iph_lckd_client_t
client
);
int
iph_lckd_start_service
(
iph_lckd_client_t
client
,
const
char
*
service
);
int
iph_lckd_start_service
(
iph_lckd_client_t
client
,
const
char
*
service
);
...
@@ -59,7 +59,7 @@ int iph_lckd_send ( iph_lckd_client_t client, char *raw_data, uint32_t length );
...
@@ -59,7 +59,7 @@ int iph_lckd_send ( iph_lckd_client_t client, char *raw_data, uint32_t length );
//usbmux related functions
//usbmux related functions
int
iph_mux_
get
_client
(
iph_device_t
device
,
uint16_t
src_port
,
uint16_t
dst_port
,
iph_umux_client_t
*
client
);
int
iph_mux_
new
_client
(
iph_device_t
device
,
uint16_t
src_port
,
uint16_t
dst_port
,
iph_umux_client_t
*
client
);
void
iph_mux_free_client
(
iph_umux_client_t
client
);
void
iph_mux_free_client
(
iph_umux_client_t
client
);
int
iph_mux_send
(
iph_umux_client_t
client
,
const
char
*
data
,
uint32_t
datalen
);
int
iph_mux_send
(
iph_umux_client_t
client
,
const
char
*
data
,
uint32_t
datalen
);
...
@@ -67,7 +67,7 @@ int iph_mux_recv ( iph_umux_client_t client, char *data, uint32_t datalen );
...
@@ -67,7 +67,7 @@ int iph_mux_recv ( iph_umux_client_t client, char *data, uint32_t datalen );
//afc related functions
//afc related functions
int
iph_afc_
get
_client
(
iph_device_t
device
,
int
src_port
,
int
dst_port
,
iph_afc_client_t
*
client
);
int
iph_afc_
new
_client
(
iph_device_t
device
,
int
src_port
,
int
dst_port
,
iph_afc_client_t
*
client
);
void
iph_afc_free_client
(
iph_afc_client_t
client
);
void
iph_afc_free_client
(
iph_afc_client_t
client
);
char
**
iph_afc_get_devinfo
(
iph_afc_client_t
client
);
char
**
iph_afc_get_devinfo
(
iph_afc_client_t
client
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment