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
a09bcae3
Commit
a09bcae3
authored
Dec 22, 2007
by
Pierre d'Herbemont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
services_discovery/sap.: Don't wakeup more than needed.
parent
107b78a9
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
23 additions
and
2 deletions
+23
-2
modules/services_discovery/sap.c
modules/services_discovery/sap.c
+23
-2
No files found.
modules/services_discovery/sap.c
View file @
a09bcae3
...
@@ -277,6 +277,11 @@ struct demux_sys_t
...
@@ -277,6 +277,11 @@ struct demux_sys_t
static
int
Decompress
(
const
unsigned
char
*
psz_src
,
unsigned
char
**
_dst
,
int
i_len
);
static
int
Decompress
(
const
unsigned
char
*
psz_src
,
unsigned
char
**
_dst
,
int
i_len
);
static
void
FreeSDP
(
sdp_t
*
p_sdp
);
static
void
FreeSDP
(
sdp_t
*
p_sdp
);
static
inline
int
min
(
int
a
,
int
b
)
{
return
a
>
b
?
b
:
a
;
}
/*****************************************************************************
/*****************************************************************************
* Open: initialize and create stuff
* Open: initialize and create stuff
*****************************************************************************/
*****************************************************************************/
...
@@ -459,6 +464,7 @@ static void Run( services_discovery_t *p_sd )
...
@@ -459,6 +464,7 @@ static void Run( services_discovery_t *p_sd )
{
{
char
*
psz_addr
;
char
*
psz_addr
;
int
i
;
int
i
;
int
timeout
=
-
1
;
/* Braindead Winsock DNS resolver will get stuck over 2 seconds per failed
/* Braindead Winsock DNS resolver will get stuck over 2 seconds per failed
* DNS queries, even if the DNS server returns an error with milliseconds.
* DNS queries, even if the DNS server returns an error with milliseconds.
...
@@ -549,8 +555,7 @@ static void Run( services_discovery_t *p_sd )
...
@@ -549,8 +555,7 @@ static void Run( services_discovery_t *p_sd )
ufd
[
i
].
revents
=
0
;
ufd
[
i
].
revents
=
0
;
}
}
/* FIXME FIXME FIXME: short arbitrary timer */
if
(
poll
(
ufd
,
n
,
timeout
)
>
0
)
if
(
poll
(
ufd
,
n
,
500
)
>
0
)
{
{
for
(
unsigned
i
=
0
;
i
<
n
;
i
++
)
for
(
unsigned
i
=
0
;
i
<
n
;
i
++
)
{
{
...
@@ -575,6 +580,10 @@ static void Run( services_discovery_t *p_sd )
...
@@ -575,6 +580,10 @@ static void Run( services_discovery_t *p_sd )
mtime_t
now
=
mdate
();
mtime_t
now
=
mdate
();
/* A 1 hour timeout correspong to the RFC Implicit timeout.
* This timeout is tuned in the following loop. */
timeout
=
1000
*
60
*
60
;
/* Check for items that need deletion */
/* Check for items that need deletion */
for
(
i
=
0
;
i
<
p_sd
->
p_sys
->
i_announces
;
i
++
)
for
(
i
=
0
;
i
<
p_sd
->
p_sys
->
i_announces
;
i
++
)
{
{
...
@@ -590,8 +599,20 @@ static void Run( services_discovery_t *p_sd )
...
@@ -590,8 +599,20 @@ static void Run( services_discovery_t *p_sd )
{
{
RemoveAnnounce
(
p_sd
,
p_announce
);
RemoveAnnounce
(
p_sd
,
p_announce
);
}
}
else
{
/* Compute next timeout */
if
(
p_announce
->
i_period_trust
>
5
)
timeout
=
min
((
3
*
p_announce
->
i_period
-
i_last_period
)
/
1000
,
timeout
);
timeout
=
min
((
i_timeout
-
i_last_period
)
/
1000
,
timeout
);
}
}
}
}
if
(
!
p_sd
->
p_sys
->
i_announces
)
timeout
=
-
1
;
/* We can safely poll indefinitly. */
else
if
(
timeout
<
200
)
timeout
=
200
;
/* Don't wakeup too fast. */
}
}
}
/**********************************************************************
/**********************************************************************
...
...
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