Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Icecast-Server
Project overview
Project overview
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
102
Issues
102
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Container Registry
Wiki
Wiki
External Wiki
External Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
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