Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Icecast-Server
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
93
Issues
93
List
Boards
Labels
Service Desk
Milestones
Merge Requests
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
External Wiki
External Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Xiph.Org
Icecast-Server
Commits
f7e64956
Commit
f7e64956
authored
May 02, 2008
by
Karl Heyes
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix busy retry bug on failure from previous patch
svn path=/icecast/trunk/icecast/; revision=14824
parent
cbb7643b
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
src/yp.c
src/yp.c
+4
-4
No files found.
src/yp.c
View file @
f7e64956
...
...
@@ -303,7 +303,7 @@ static int send_to_yp (const char *cmd, ypdata_t *yp, char *post)
if
(
curlcode
)
{
yp
->
process
=
do_yp_add
;
yp
->
next_update
+=
1200
;
yp
->
next_update
=
now
+
1200
;
ERROR2
(
"connection to %s failed with
\"
%s
\"
"
,
server
->
url
,
server
->
curl_error
);
return
-
2
;
}
...
...
@@ -314,7 +314,7 @@ static int send_to_yp (const char *cmd, ypdata_t *yp, char *post)
if
(
yp
->
process
==
do_yp_add
)
{
ERROR3
(
"YP %s on %s failed: %s"
,
cmd
,
server
->
url
,
yp
->
error_msg
);
yp
->
next_update
+=
7200
;
yp
->
next_update
=
now
+
7200
;
}
if
(
yp
->
process
==
do_yp_touch
)
{
...
...
@@ -325,9 +325,9 @@ static int send_to_yp (const char *cmd, ypdata_t *yp, char *post)
* cases as a firewall block or incorrect listenurl.
*/
if
(
yp
->
touch_interval
<
1200
)
yp
->
next_update
+=
1200
;
yp
->
next_update
=
now
+
1200
;
else
yp
->
next_update
+=
yp
->
touch_interval
;
yp
->
next_update
=
now
+
yp
->
touch_interval
;
INFO3
(
"YP %s on %s failed: %s"
,
cmd
,
server
->
url
,
yp
->
error_msg
);
}
yp
->
process
=
do_yp_add
;
...
...
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