[Mplayer-cvslog] CVS: main/libmpdemux network.c,1.86,1.87
Alex Beregszaszi
alex at mplayerhq.hu
Wed Oct 22 19:54:36 CEST 2003
Update of /cvsroot/mplayer/main/libmpdemux
In directory mail:/var/tmp.root/cvs-serv3154/libmpdemux
Modified Files:
network.c
Log Message:
User settable http user-agent. Patch by Per Wigren
Index: network.c
===================================================================
RCS file: /cvsroot/mplayer/main/libmpdemux/network.c,v
retrieving revision 1.86
retrieving revision 1.87
diff -u -r1.86 -r1.87
--- network.c 22 Oct 2003 17:36:47 -0000 1.86
+++ network.c 22 Oct 2003 17:54:32 -0000 1.87
@@ -47,10 +47,12 @@
int asf_streaming_start( stream_t *stream, int *demuxer_type );
int rtsp_streaming_start( stream_t *stream );
-/* Variables for the command line option -user, -passwd & -bandwidth */
+/* Variables for the command line option -user, -passwd, -bandwidth
+ and -user-agent */
char *network_username=NULL;
char *network_password=NULL;
int network_bandwidth=0;
+char *network_useragent=NULL;
/* IPv6 options */
int network_prefer_ipv4 = 0;
@@ -426,7 +428,7 @@
http_send_request( URL_t *url ) {
HTTP_header_t *http_hdr;
URL_t *server_url;
- char str[80];
+ char str[256];
int fd;
int ret;
int proxy = 0; // Boolean
@@ -441,9 +443,15 @@
server_url = url;
http_set_uri( http_hdr, server_url->file );
}
- snprintf(str, 80, "Host: %s", server_url->hostname );
+ snprintf(str, 256, "Host: %s", server_url->hostname );
http_set_field( http_hdr, str);
- http_set_field( http_hdr, "User-Agent: MPlayer/"VERSION);
+ if (network_useragent)
+ {
+ snprintf(str, 256, "User-Agent: %s", network_useragent);
+ http_set_field(http_hdr, str);
+ }
+ else
+ http_set_field( http_hdr, "User-Agent: MPlayer/"VERSION);
http_set_field( http_hdr, "Connection: closed");
http_add_basic_authentication( http_hdr, url->username, url->password );
if( http_build_request( http_hdr )==NULL ) {
More information about the MPlayer-cvslog
mailing list