Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
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-gpu
Commits
93a0a44c
Commit
93a0a44c
authored
May 31, 2005
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Minor clean up
parent
b99ae3e2
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
26 deletions
+12
-26
modules/stream_out/announce.h
modules/stream_out/announce.h
+0
-15
src/misc/getaddrinfo.c
src/misc/getaddrinfo.c
+12
-11
No files found.
modules/stream_out/announce.h
View file @
93a0a44c
...
@@ -25,21 +25,6 @@
...
@@ -25,21 +25,6 @@
* Preamble
* Preamble
*****************************************************************************/
*****************************************************************************/
#if defined( UNDER_CE )
# include <winsock.h>
#elif defined( WIN32 )
# include <winsock2.h>
# include <ws2tcpip.h>
# define close closesocket
#else
# include <netdb.h>
/* hostent ... */
# include <sys/socket.h>
# include <netinet/in.h>
# ifdef HAVE_ARPA_INET_H
# include <arpa/inet.h>
/* inet_ntoa(), inet_aton() */
# endif
#endif
#ifdef HAVE_SLP_H
#ifdef HAVE_SLP_H
# include <slp.h>
# include <slp.h>
#endif
#endif
...
...
src/misc/getaddrinfo.c
View file @
93a0a44c
...
@@ -58,15 +58,16 @@
...
@@ -58,15 +58,16 @@
#include "network.h"
#include "network.h"
#ifdef SYS_BEOS
#ifdef SYS_BEOS
#define NO_ADDRESS NO_DATA
# define NO_ADDRESS NO_DATA
#define PF_INET AF_INET
# define PF_INET AF_INET
#define INADDR_NONE 0xFFFFFFFF
# define INADDR_NONE 0xFFFFFFFF
#define AF_UNSPEC 0
# define AF_UNSPEC 0
# define PF_UNSPEC AF_UNSPEC
#endif
#endif
#define _NI_MASK
(NI_NUMERICHOST|NI_NUMERICSERV|NI_NOFQDN|NI_NAMEREQD|\
#define _NI_MASK (NI_NUMERICHOST|NI_NUMERICSERV|NI_NOFQDN|NI_NAMEREQD|\
NI_DGRAM)
NI_DGRAM)
#
define _AI_MASK (AI_PASSIVE|AI_CANONNAME|AI_NUMERICHOST)
#define _AI_MASK (AI_PASSIVE|AI_CANONNAME|AI_NUMERICHOST)
#ifndef HAVE_GAI_STRERROR
#ifndef HAVE_GAI_STRERROR
...
@@ -559,20 +560,20 @@ int vlc_getaddrinfo( vlc_object_t *p_this, const char *node,
...
@@ -559,20 +560,20 @@ int vlc_getaddrinfo( vlc_object_t *p_this, const char *node,
else
else
memcpy
(
&
hints
,
p_hints
,
sizeof
(
hints
)
);
memcpy
(
&
hints
,
p_hints
,
sizeof
(
hints
)
);
if
(
hints
.
ai_family
==
A
F_UNSPEC
)
if
(
hints
.
ai_family
==
P
F_UNSPEC
)
{
{
vlc_value_t
val
;
vlc_value_t
val
;
var_Create
(
p_this
,
"ipv4"
,
VLC_VAR_BOOL
|
VLC_VAR_DOINHERIT
);
var_Create
(
p_this
,
"ipv4"
,
VLC_VAR_BOOL
|
VLC_VAR_DOINHERIT
);
var_Get
(
p_this
,
"ipv4"
,
&
val
);
var_Get
(
p_this
,
"ipv4"
,
&
val
);
if
(
val
.
b_bool
)
if
(
val
.
b_bool
)
hints
.
ai_family
=
A
F_INET
;
hints
.
ai_family
=
P
F_INET
;
#ifdef
HAVE_INET_PTON
#ifdef
PF_INET6
var_Create
(
p_this
,
"ipv6"
,
VLC_VAR_BOOL
|
VLC_VAR_DOINHERIT
);
var_Create
(
p_this
,
"ipv6"
,
VLC_VAR_BOOL
|
VLC_VAR_DOINHERIT
);
var_Get
(
p_this
,
"ipv6"
,
&
val
);
var_Get
(
p_this
,
"ipv6"
,
&
val
);
if
(
val
.
b_bool
)
if
(
val
.
b_bool
)
hints
.
ai_family
=
A
F_INET6
;
hints
.
ai_family
=
P
F_INET6
;
#endif
#endif
}
}
...
...
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