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
143a48bd
Commit
143a48bd
authored
Aug 11, 2008
by
Jonathan Beck
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
use non anonymous structs so we can use opaque type on them
parent
bbc6306a
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
4 deletions
+4
-4
libiphone.h
include/libiphone/libiphone.h
+2
-2
iphone.h
src/iphone.h
+1
-1
lockdown.h
src/lockdown.h
+1
-1
No files found.
include/libiphone/libiphone.h
View file @
143a48bd
...
...
@@ -30,8 +30,8 @@ extern "C" {
typedef
struct
iPhone
*
iPhone_t
;
typedef
struct
lockdownd_client
*
lockdownd_client_t
;
typedef
struct
iPhone
_s
*
iPhone_t
;
typedef
struct
lockdownd_client
_s
*
lockdownd_client_t
;
void
free_iPhone
(
iPhone_t
victim
);
...
...
src/iphone.h
View file @
143a48bd
...
...
@@ -33,7 +33,7 @@
#define BULKIN 0x85
#define BULKOUT 0x04
typedef
struct
{
typedef
struct
iPhone_s
{
char
*
buffer
;
struct
usb_dev_handle
*
device
;
struct
usb_device
*
__device
;
...
...
src/lockdown.h
View file @
143a48bd
...
...
@@ -32,7 +32,7 @@
typedef
struct
{
typedef
struct
lockdownd_client_s
{
usbmux_connection
*
connection
;
gnutls_session_t
*
ssl_session
;
int
in_SSL
;
...
...
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