Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-1.1
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc-1.1
Commits
2e49a0b3
Commit
2e49a0b3
authored
Dec 15, 2009
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Move vlc_inet_pton, vlc_inet_ntop and vlc_poll to vlc_fixups.h
parent
6ada759b
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
30 additions
and
28 deletions
+30
-28
include/vlc_fixups.h
include/vlc_fixups.h
+30
-0
include/vlc_network.h
include/vlc_network.h
+0
-28
No files found.
include/vlc_fixups.h
View file @
2e49a0b3
...
...
@@ -209,4 +209,34 @@ typedef void (*__free_fn_t) (void *__nodep);
void
tdestroy
(
void
*
vroot
,
__free_fn_t
freefct
);
#endif
/* Socket stuff */
#ifndef HAVE_INET_PTON
# define inet_pton vlc_inet_pton
#endif
#ifndef HAVE_INET_NTOP
# define inet_ntop vlc_inet_ntop
#endif
#ifndef HAVE_POLL
enum
{
POLLIN
=
1
,
POLLOUT
=
2
,
POLLPRI
=
4
,
POLLERR
=
8
,
// unsupported stub
POLLHUP
=
16
,
// unsupported stub
POLLNVAL
=
32
// unsupported stub
};
struct
pollfd
{
int
fd
;
unsigned
events
;
unsigned
revents
;
};
# define poll(a, b, c) vlc_poll(a, b, c)
#endif
#endif
/* !LIBVLC_FIXUPS_H */
include/vlc_network.h
View file @
2e49a0b3
...
...
@@ -151,37 +151,9 @@ VLC_EXPORT( ssize_t, net_Printf, ( vlc_object_t *p_this, int fd, const v_socket_
VLC_EXPORT
(
ssize_t
,
__net_vaPrintf
,
(
vlc_object_t
*
p_this
,
int
fd
,
const
v_socket_t
*
,
const
char
*
psz_fmt
,
va_list
args
)
);
/* Don't go to an extra call layer if we have the symbol */
#ifndef HAVE_INET_PTON
#define inet_pton vlc_inet_pton
#endif
#ifndef HAVE_INET_NTOP
#define inet_ntop vlc_inet_ntop
#endif
VLC_EXPORT
(
int
,
vlc_inet_pton
,
(
int
af
,
const
char
*
src
,
void
*
dst
)
);
VLC_EXPORT
(
const
char
*
,
vlc_inet_ntop
,
(
int
af
,
const
void
*
src
,
char
*
dst
,
socklen_t
cnt
)
);
#ifndef HAVE_POLL
enum
{
POLLIN
=
1
,
POLLOUT
=
2
,
POLLPRI
=
4
,
POLLERR
=
8
,
// unsupported stub
POLLHUP
=
16
,
// unsupported stub
POLLNVAL
=
32
// unsupported stub
};
struct
pollfd
{
int
fd
;
int
events
;
int
revents
;
};
# define poll(a, b, c) vlc_poll(a, b, c)
#endif
struct
pollfd
;
VLC_EXPORT
(
int
,
vlc_poll
,
(
struct
pollfd
*
fds
,
unsigned
nfds
,
int
timeout
));
...
...
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