Displaying 4 results from an estimated 4 matches for "parse_url".
Did you mean:
parse_uri
2016 Apr 04
3
hdt error on syslinux 6.0.4-pre1?
Was seeing it I could get any closer with the efi boot using the 6.0.4, and
didn't have any more luck. Did a test with it in bios mode and it works for the
regular kernels, but when I tried the hdt.c32 I get the following error?
Undef symbol FAIL: parse_url
Failed to load COM32 file hdt.c32
Only find urlparce.c in the PXE directory, and no reference to it in any files in
the hdt directory. The other c32 programs all seem to work, just the hdt
doesn't. Know it is just a testing release, but thought I would mention it.
See a lot of talk about i...
2016 Apr 04
0
hdt error on syslinux 6.0.4-pre1?
...via Syslinux wrote:
> Was seeing it I could get any closer with the efi boot using the 6.0.4, and
> didn't have any more luck. Did a test with it in bios mode and it works for the
> regular kernels, but when I tried the hdt.c32 I get the following error?
>
> Undef symbol FAIL: parse_url
> Failed to load COM32 file hdt.c32
>
>
> Only find urlparce.c in the PXE directory, and no reference to it in any files in
> the hdt directory. The other c32 programs all seem to work, just the hdt
> doesn't. Know it is just a testing release, but thought I would mention...
2016 Apr 04
2
hdt error on syslinux 6.0.4-pre1?
...> Was seeing it I could get any closer with the efi boot using the 6.0.4, and
> > didn't have any more luck. Did a test with it in bios mode and it works for the
> > regular kernels, but when I tried the hdt.c32 I get the following error?
> >
> > Undef symbol FAIL: parse_url
> > Failed to load COM32 file hdt.c32
> >
> >
> > Only find urlparce.c in the PXE directory, and no reference to it in any files in
> > the hdt directory. The other c32 programs all seem to work, just the hdt
> > doesn't. Know it is just a testing release...
2004 Sep 10
0
http streaming in the xmms plugin
...;
+ gint len2 = BASE64_LENGTH (len1);
+
+ t1 = g_strdup_printf("%s:%s", user, passwd);
+ t2 = g_malloc0(len2 + 1);
+ base64_encode (t1, t2, len1);
+ res = g_strdup_printf("%s: Basic %s\r\n", header, t2);
+ g_free(t2);
+ g_free(t1);
+
+ return res;
+ }
+
+ static void parse_url(const gchar * url, gchar ** user, gchar ** pass, gchar ** host, int *port, gchar ** filename)
+ {
+ gchar *h, *p, *pt, *f, *temp, *ptr;
+
+ temp = g_strdup(url);
+ ptr = temp;
+
+ if (!strncasecmp("http://", ptr, 7))
+ ptr += 7;
+ h = strchr(ptr, '@');
+ f = strchr(ptr,...