Displaying 20 results from an estimated 69 matches for "haxx".
2019 Jan 29
0
Several tests failing
...oxy CONNECT auth Digest]
../libtool --mode=execute /usr/bin/valgrind --tool=memcheck --quiet --leak-check=yes --suppressions=./valgrind.supp --num-callers=16 --log-file=log/valgrind206 ../src/c url --output log/curl206.out --include --trace-ascii log/trace206 --trace-time http://test.remote.haxx.se.206:6490/path/2060002 --proxy http://127.0.0.1:6490 --proxy-u ser silly:person --proxy-digest --proxytunnel >log/stdout206 2>log/stderr206
2705 CMD (0): ../libtool --mode=execute /usr/bin/valgrind --tool=memcheck --quiet --leak-check=yes --suppressions=./valgrind.supp --num-callers=16...
2007 Jul 25
0
[LLVMdev] svn issues
...m-project/!svn/vcc/default': Could not read
> > > response body: Secure connection truncated (https://llvm.org)
> >
> > What is /svn/llvm-project/!svn/vcc/default ?
>
> I was hoping you'd know the answer to that. :-/
I did find this interesting post:
http://svn.haxx.se/users/archive-2006-10/0413.shtml
"This is by design..." Hmm, not very satisfactory.
And it seems others have encountered these strange URLs as well:
http://svn.haxx.se/users/archive-2007-06/0302.shtml
Here's another relevant thread with interesting notes about compression:
ht...
2007 Jul 25
3
[LLVMdev] svn issues
On Wednesday 25 July 2007 11:06, Reid Spencer wrote:
> Hi David,
>
> On Wed, 2007-07-25 at 10:38 -0500, David A. Greene wrote:
> > I'm getting a lot of errors from svn like this:
> >
> > svn: REPORT request failed on '/svn/llvm-project/!svn/vcc/default'
> > svn: REPORT of '/svn/llvm-project/!svn/vcc/default': Could not read
> > response
2004 Aug 06
2
Compiling Icecast2 on Windows
Its easier to compile it on linux than windows, you need MS Visual studio 6
for windows
then you need to get all the associated libraries for windows, yet even more
work.
Icecast2 specific you need the following
libcurl > http://curl.haxx.se/libcurl/ download >
http://curl.haxx.se/download/curl-7.10.8.tar.gz
libxml,libxlst > take a look over at rpmfind.net for the latest rh9
specific, be sure to grab the src rpms as well.
then you will need to checkout libshout, vorbis, ogg from xiph repository.
compile and install ogg first,...
2014 Nov 01
5
Pregunta (creo que simple) para usar twitteR
Hola Alfonso, buenos días:
Lo he probado pero no me va, eso sí ha cambiado el error, el código utilizado es:
library(ROAuth)library(twitteR)
download.file(url="http://curl.haxx.se/ca/cacert.pem", destfile="cacert.pem")
reqURL <- "https://api.twitter.com/oauth/request_token"accessURL <- "http://api.twitter.com/oauth/access_token"authURL <- "http://api.twitter.com/oauth/authorize"consumerKey <- "Hola_amigo"...
2012 Jul 03
6
Using onlyif
Here''s what I''m using:
exec { "cert-fix":
command => "curl http://curl.haxx.se/ca/cacert.pem -o
/etc/pki/tls/certs/ca-bundle.crt",
onlyif => "test -e /etc/pki/tls/certs/ca-bundle.crt",
}
But it keeps on failing:
> [default] Running Puppet with /tmp/vagrant-puppet/manifests/acid.pp...
> Parameter onlyif failed: ''test -e /etc/pki/tls/certs...
2020 Jan 09
2
Re: [PATCH] Fix lossy conversion of Content-Length
...block/curl.c driver which is where most of this code was derived from,
so I suspect I simply added it "because reasons".
But even more to the point, why on earth does the
CURLINFO_CONTENT_LENGTH_DOWNLOAD API return a double! Well it seems
as if they replaced that API with:
https://curl.haxx.se/libcurl/c/CURLINFO_CONTENT_LENGTH_DOWNLOAD_T.html
which is what we really ought to use instead. This was added in Curl
7.55.0, released 2 and a half years ago, so I think we ought to use
that instead. Adrian could you write a patch to change over to that
API?
Rich.
> > nbdkit_debug...
2004 Aug 06
3
Compiling Icecast2 on RedHat9 or maybe another Linux
...org
Subject: Re: [icecast-dev] Compiling Icecast2 on Windows
Its easier to compile it on linux than windows, you need MS Visual studio 6
for windows
then you need to get all the associated libraries for windows, yet even more
work.
Icecast2 specific you need the following
libcurl > http://curl.haxx.se/libcurl/ download >
http://curl.haxx.se/download/curl-7.10.8.tar.gz
libxml,libxlst > take a look over at rpmfind.net for the latest rh9
specific, be sure to grab the src rpms as well.
then you will need to checkout libshout, vorbis, ogg from xiph repository.
compile and install ogg first,...
2006 Dec 10
1
icecast-2.3.1 fails to compile against curl-7.16.0
Small bug report:
CURLOPT_PASSWDFUNCTION is a depreciated option ref:
http://curl.haxx.se/mail/lib-2003-10/0100.html
http://curl.haxx.se/mail/archive-2003-11/0001.html
They have finally removed it in curl-7.16.0.
Compile error as follows:
source='auth_url.c' object='auth_url.o' libtool=no \
depfile='.deps/auth_url.Po' tmpdepfile='.deps/auth_url....
2009 Dec 12
1
How do I link to custom libs without affecting system libs (LD_LIBRARY_PATH)
...r).
To get around this I would like to download the latest curl version and compile and link to rtorrent without affecting system files.
How can i statically link the latest Curl libs to my rtorrent build? I belive its to do with LD_LIBRARY_PATH but i am not sure howto proceed:
wget http://curl.haxx.se/download/curl-7.19.7.tar.gz
cd curl-7.19.7./configuremakemake install
The above make install would overwrite or upgrade the existing curl, worried about breaking existing system!
Many thanks in advance,
Chris
_________________________________________________________________
View...
2010 Nov 23
0
[R] Catching a RCurl error?
...ns)
>
>
> Thanks,
> Tal
That's a question that also popped up in my work. You can definitely tune
timeouts in the options (e.g. one options of interest in that respect is
CURLOPT_TIMEOUT, which I think is lowercase in the R implementation; there
are others, too; check http://curl.haxx.se/docs/manual.html and
http://curl.haxx.se/libcurl/c/libcurl-tutorial.html).
Generally there's a lot of stuff you can specify but I haven't found a way
yet to use some sort of an "internal error control". Putting a tryCatch() or
try() wrapper around your CURL request is nice an...
2012 Nov 08
1
twitteR return error message
...w(consumerKey=consumerKey,
consumerSecret=consumerSecret,
requestURL=requestURL,
accessURL=accessURL,
authURL=authURL)
download.file(url="http://curl.haxx.se/ca/cacert.pem",
destfile="cacert.pem")
x <- getURL(url="http://curl.haxx.se/ca/cacert.pem", cainfo = "cacert.pem")
twitCred$handshake(cainfo="cacert.pem")
registerTwitterOAuth(twitCred)
me <- getUser('Rbloggers')
#################...
2006 Nov 16
1
curl-7.16.0 breaks compilation of vorbis-tools-1.1.1
Hello,
curl-7.16.0 breaks compilation of vorbis-tools-1.1.1 - please
see http://curl.haxx.se/mail/archive-2006-11/0046.html for details.
According to Daniel Stenberg, CURLOPT_MUTE is deprecated.
Could you please update vorbis-tools code so it won't use
deprecated features of 'curl' ?
Should I file a bug report regarding this issue ?
Thanks,
Sergei.
Applications From S...
2007 Jul 25
1
[LLVMdev] svn issues
...ad
> > > > response body: Secure connection truncated (https://llvm.org)
> > >
> > > What is /svn/llvm-project/!svn/vcc/default ?
> >
> > I was hoping you'd know the answer to that. :-/
>
> I did find this interesting post:
>
> http://svn.haxx.se/users/archive-2006-10/0413.shtml
>
> "This is by design..." Hmm, not very satisfactory.
>
> And it seems others have encountered these strange URLs as well:
>
> http://svn.haxx.se/users/archive-2007-06/0302.shtml
>
> Here's another relevant thread with...
2004 Aug 06
0
Compiling Icecast2 on Windows
...org
Subject: Re: [icecast-dev] Compiling Icecast2 on Windows
Its easier to compile it on linux than windows, you need MS Visual studio 6
for windows
then you need to get all the associated libraries for windows, yet even more
work.
Icecast2 specific you need the following
libcurl > http://curl.haxx.se/libcurl/ download >
http://curl.haxx.se/download/curl-7.10.8.tar.gz
libxml,libxlst > take a look over at rpmfind.net for the latest rh9
specific, be sure to grab the src rpms as well.
then you will need to checkout libshout, vorbis, ogg from xiph repository.
compile and install ogg first,...
2005 Feb 02
2
directory listings
Guten Tag Frits Letteboer,
Am Mittwoch, 2. Februar 2005 um 14:40 schrieben Sie:
FL> Carsten Henkel wrote:
>> hi together,
>>
>> i have
>> <directory>
>> <yp-url-timeout>15</yp-url-timeout>
>> <yp-url>http://dir.xiph.org/cgi-bin/yp-cgi</yp-url>
>> </directory>
>> <directory>
2013 May 18
1
Query related to icecast server version 2.3.2
...some
problem with source client i guess.
Now i just want to know the prerequisites packages mentioned under
documents section in the link and those packages are given below:
" libxml2 - http://xmlsoft.org/downloads.html libxslt - http://xmlsoft.org/XSLT/downloads.html curl - http://curl.haxx.se/download.html (>= version 7.10 required)"
These prerequisites packages how it is related to icecast server. Please do reply asap, it is appreciated.
?
Thanks and Regards
H.DEVI SHREE
BNA Technology Consulting Ltd.
Bangalore.
-------------- next part --------------
An HTML attachment w...
2014 Nov 01
2
Pregunta (creo que simple) para usar twitteR
Hola comunidad, ¿Qué tal?
Tengo una duda que creo que es sencilla, pero me veo algo torpe. Estoy tratando de darme de alta para poder acceder, vía R a la api de Twitter, soy un poco novato en esto y por esto lanzo la pregunta.
Aunque ya me han ayudado y me han pasado alguno link del pasado, aún no consigo dar con la solución que seguro es algo que se me escapa
He usado este código
2004 Aug 06
2
Missing headers in Icecast2
On Sat, 2003-12-06 at 06:12, Macsym wrote:
> Hi Karl,
>
> I just checked in Icecast1 source, the line:
>
> if (client_wants_content_length (con))
> sock_write (con->sock, "Cache-Control: no-cache\r\nPragma:
> no-cache\r\nConnection: close\r\nContent-Length: 54000000\r\n");
>
>
> is located in "client.c". Shouldn't I add this line
2007 Sep 26
1
Some of your Debian packages might need attention
Dear Debian Xen Team,
The following possible problem(s) were detected in the package(s)
you maintain in Debian:
=== xen-unstable:
= This package has not been in testing for 292 days.
= This package has not been able to migrate from unstable
to testing for 292 days.
See <http://bjorn.haxx.se/debian/testing.pl?package=xen-unstable>
This is an automated mail. These mails are sent monthly.
For more information about these mails, refer to
http://wiki.debian.org/qa.debian.org/DdpoByMail
We are sorry if this mail was useless for you. If you think it was
avoidable (that we can detect...