search for: url_

Displaying 8 results from an estimated 8 matches for "url_".

Did you mean: url
2005 May 25
1
[PATCH] Fix wrong use of g_strconcat
...the wrong use of g_strconcat. It must be a typo of g_strdup_printf. Also fixed the printf format, too. Takashi --- src/plugin_xmms/http.c-dist 2005-05-25 16:14:03.000000000 +0200 +++ src/plugin_xmms/http.c 2005-05-25 16:17:30.000000000 +0200 @@ -484,7 +484,7 @@ static int http_connect (gchar *url_, gb flac_cfg.stream.use_udp_channel ? udpspace : ""); if (offset && !head) { gchar *temp_dead = temp; - temp = g_strconcat ("%sRange: %ll-\r\n", temp, offset); + temp = g_strdup_printf("%sRange: %llu-\r\n", temp, offset);...
2003 Jul 01
2
hide files
Hi. i am using the hide files and hide dot files options, but the files are still visiable on my WinXP clients. Yes, I have the option set on the XP clients to show all files for security reasons. But can't samba just hide this file for everybody / every setting? thanks daniel
2004 Sep 10
0
http streaming in the xmms plugin
...;= 0) + return -1; + if (buf[i] == '\n') + break; + if (buf[i] != '\r') + i++; + } + } + if (!going) + return -1; + buf[i] = '\0'; + return i; + } + + /* returns the file descriptor of the socket, or -1 on error */ + static int http_connect (gchar *url_, gboolean head, guint64 offset) + { + gchar line[1024], *user, *pass, *host, *filename, + *status, *url, *temp, *file; + gchar *chost; + gint cnt, error, err_len, port, cport; + gboolean redirect; + int udp_sock = 0; + fd_set set; + struct hostent *hp; + struct sockaddr_in address; +...
2017 Jan 13
0
[PATCH 1/4] Do not override CFLAGS, as CFLAGS is a user flag.
.../plugin_xmms/http.c @@ -61,8 +61,6 @@ static gint icy_metaint = 0; extern InputPlugin flac_ip; -#undef DEBUG_UDP - /* Static udp channel functions */ static int udp_establish_listener (gint *sock); static int udp_check_for_data(gint sock); @@ -573,7 +571,7 @@ static int http_connect (gchar *url_, gboolean head, guint64 offset) if (!strncmp(line, "icy-metaint:", 12)) icy_metaint = atoi(line + 12); if (!strncmp(line, "x-audiocast-udpport:", 20)) { -#ifdef DEBUG_UDP +#ifndef NDEBUG fprintf (stderr, "Server wants udp messages on port %...
2017 Jan 15
0
[PATCH 1/2] Do not override CFLAGS, as CFLAGS is a user flag.
.../plugin_xmms/http.c @@ -61,8 +61,6 @@ static gint icy_metaint = 0; extern InputPlugin flac_ip; -#undef DEBUG_UDP - /* Static udp channel functions */ static int udp_establish_listener (gint *sock); static int udp_check_for_data(gint sock); @@ -573,7 +571,7 @@ static int http_connect (gchar *url_, gboolean head, guint64 offset) if (!strncmp(line, "icy-metaint:", 12)) icy_metaint = atoi(line + 12); if (!strncmp(line, "x-audiocast-udpport:", 20)) { -#ifdef DEBUG_UDP +#ifndef NDEBUG fprintf (stderr, "Server wants udp messages on port %...
2020 Feb 04
0
Always Be Conferencing v16e - pure AEL-based dial plan solution
...lboxes)=${boxes_}); Originate(Local/${pngnpbx_abc_id}@pngnpbx-abc-troll,exten,pngnpbx-abc-vmdrop,${pngnpbx_abc_id},1,1); return; } /* PUBLIC */ /* The "gps" macro is optional; if used it should be entered immediately after "init". */ macro pngnpbx-abc-gps(lat_,lon_,elv_,url_) { &pngnpbx-abc-polo(${pngnpbx_abc_id}); if( ${LEN(${lat_})} == 0 ) { Set(lat_=${abcdlat}); } if( ${LEN(${lon_})} == 0 ) { Set(lon_=${abcdlon}); } if( ${LEN(${elv_})} == 0 ) { Set(elv_=${abcdelv}); } if( ${LEN(${lat_})} > 0 ) {...
2017 Jan 15
4
Updated CFLAGS patches and make test compilation conditional
Hi Erik, I've found a middleground for the problem of setting default CFLAGS. I've gone back to setting them if {C,CXX,CPP,LD}FLAGS are unset at the onset of the configure script (i.e., the user hasn't specified anything) and then proceed to set them to the defaults as before. This has been suggested before: https://lists.gnu.org/archive/html/autoconf/2006-04/msg00022.html In
2017 Jan 13
9
Upstreaming Gentoo patches
Dear FLAC devs, I would like to get some of our patches merged into master. Most of them deal with adhering to GNU conventions, respectively not overriding flags/variables that are up to the user to set. For instance, honoring $(htmldir) is important, as we have installation paths for the documentation that differ from what is currently coded in the various Makefile.am's. Regards David