search for: http_open

Displaying 6 results from an estimated 6 matches for "http_open".

2013 Mar 28
1
Makefile race condition with parallel make
When attempting to build syslinux in parallel (make -j5), I encountered the following error at the end: rm -f liblpxelinux.a ar cq liblpxelinux.a rawcon.o ./fs/pxe/dhcp_option.o ./fs/pxe/pxe.o ./fs/pxe/tftp.o ./fs/pxe/urlparse.o ./lwip/src/netif/ethernetif.o ./lwip/src/netif/etharp.o ./lwip/src/netif/slipif.o ./lwip/src/netif/ppp/md5.o ./lwip/src/netif/ppp/randm.o ./lwip/src/netif/ppp/chpms.o
2014 Mar 20
3
[LLVMdev] LNT internal server error
Re-poked. - Daniel On Wed, Mar 19, 2014 at 12:04 PM, Tobias Grosser <tobias at grosser.es> wrote: > On 03/11/2014 12:41 PM, Tobias Grosser wrote: > >> Hi Chris, hi Daniel, >> >> I see again internal server errors when visiting llvm.org/perf. I >> remember you have been restarting the service several times, but it >> seems it is happening again. Did
2001 Apr 08
1
Compiling vorbis-tools on FreeBSD
...et.h:445: warning: data definition has no type or storage class /usr/include/sys/socket.h:446: syntax error before `sendmsg' /usr/include/sys/socket.h:446: warning: data definition has no type or storage class /usr/include/sys/socket.h:447: syntax error before `off_t' ogg123.c: In function `http_open': ogg123.c:452: structure has no member named `sin_family' ogg123.c:453: structure has no member named `sin_port' gmake[1]: *** [ogg123.o] Error 1 gmake[1]: Leaving directory `/home/waynep/src/vorbis-tools-1.0beta4/ogg123' gmake: *** [all-recursive] Error 1 I'm guessing my dlma...
2001 Mar 10
0
patch to add device-option to ogg123 rc file
...ices_write(void *ptr, size_t size, devices_t * d); void usage(void); int add_option(ao_option_t ** op_h, const char *optstring); -int get_default_device(void); +int get_configs(ao_option_t ** op_h); void play_file(ogg123_options_t opt); int get_tcp_socket(void); /* Will be going soon. */ FILE *http_open(char *server, int port, char *path); /* ditto */ diff -u vorbis-tools-1.0beta4/ogg123/ogg123rc-example vorbis-tools-1.0beta4-modified/ogg123/ogg123rc-example --- vorbis-tools-1.0beta4/ogg123/ogg123rc-example Mon Dec 25 13:24:25 2000 +++ vorbis-tools-1.0beta4-modified/ogg123/ogg123rc-example Sat Mar...
2002 Oct 05
2
ogg123 remote interface
...@@ if (myarg->cancel_flag || sig_request.cancel) return -1; - pstats_arg = new_print_statistics_arg(stat_format, + pstats_arg = new_print_statistics_arg(myarg->stat_format, source->transport->statistics(source), NULL); @@ -167,7 +167,7 @@ } -data_source_t* http_open (char *source_string, ogg123_options_t *ogg123_opts) +data_source_t* http_open (char *source_string, ogg123_options_t *ogg123_opts, stat_format_t *stat_format) { data_source_t *source; http_private_t *private; @@ -198,6 +198,7 @@ private->stats.bytes_read = 0; private->stats....
2015 Jun 03
5
[PATCH 0/1] EFI PXE DHCP/proxyDHCP issues fix
...syslinux/firmware.h> #include <syslinux/pxe_api.h> #include "efi.h" #include "net.h" #include "fs/pxe/pxe.h" ++ extern struct syslinux_ipinfo IPInfo; const struct url_scheme url_schemes[] = { { "tftp", tftp_open, 0 }, { "http", http_open, O_DIRECTORY }, { "ftp", ftp_open, O_DIRECTORY }, { NULL, NULL, 0 }, }; ? void net_parse_dhcp(void) { EFI_PXE_BASE_CODE_MODE *mode; EFI_PXE_BASE_CODE *bc; EFI_PXE_BASE_CODE_DHCPV4_PACKET* pkt_v4; unsigned int pkt_len = sizeof(EFI_PXE_BASE_CODE_PACKET); E...