[Mplayer-cvslog] CVS: main/libmpdemux network.c,1.67,1.68
Bertrand Baudet
bertrand at mplayerhq.hu
Sat Jan 4 12:52:39 CET 2003
Update of /cvsroot/mplayer/main/libmpdemux
In directory mail:/var/tmp.root/cvs-serv28189
Modified Files:
network.c
Log Message:
Added the ICY 403 "Service Forbiden" error message.
Index: network.c
===================================================================
RCS file: /cvsroot/mplayer/main/libmpdemux/network.c,v
retrieving revision 1.67
retrieving revision 1.68
diff -u -r1.67 -r1.68
--- network.c 26 Dec 2002 17:25:22 -0000 1.67
+++ network.c 4 Jan 2003 11:52:17 -0000 1.68
@@ -547,6 +547,9 @@
case 401: // Service Unavailable
mp_msg(MSGT_NETWORK,MSGL_ERR,"Error: ICY-Server return service unavailable, skipping!\n");
return -1;
+ case 403: // Service Forbidden
+ mp_msg(MSGT_NETWORK,MSGL_ERR,"Error: ICY-Server return 'Service Forbidden'\n");
+ return -1;
case 404: // Resource Not Found
mp_msg(MSGT_NETWORK,MSGL_ERR,"Error: ICY-Server couldn't find requested stream, skipping!\n");
return -1;
More information about the MPlayer-cvslog
mailing list