Re: [Chicken-users] libcurl?

2005-09-28 Thread Kon Lovett
Hi, I just finished updating crypt.scm for cryptlib 3.2.2! Not tested! And some interface chgs, a few procs now rqr a length arg. Best Wishes, Kon On Sep 28, 2005, at 6:22 PM, Thomas Chust wrote: Am 28.09.2005, 17:48 Uhr, schrieb Thomas Chust <[EMAIL PROTECTED]>: [...] on a sidenote, there

Re: [Chicken-users] libcurl?

2005-09-28 Thread Alex Shinn
At Wed, 28 Sep 2005 17:26:24 -, Thomas Chust wrote: > > [...] But instead of binding to libcurl wouldn't it be nicer to > program some convenient interface to OpenSSL instead I've been wanting this for a while, not just for HTTPS but for Yahoo Domain key support for the Hato mail server (righ

Re: [Chicken-users] libcurl?

2005-09-28 Thread Thomas Chust
Am 28.09.2005, 17:48 Uhr, schrieb Thomas Chust <[EMAIL PROTECTED]>: [...] on a sidenote, there is also the crypt egg for CHICKEN, which I wrote ages ago. It is able to provide SSL support and should be usable together with the http egg by providing custom ports generated with crypt to the

[Chicken-users] Problem w/ my egg

2005-09-28 Thread Kon Lovett
Hi, Attached is an egg that is giving me trouble. In the transcripts below: 1) The "Warning: library unit `stack' compiled in dynamic mode" msg; why? The .setup states '-s' in the compile stmt. 2) What unbound variable? I'm doing something wrong, but cannot see it. Best Wishes, Kon - Usin

Re: [Chicken-users] libcurl?

2005-09-28 Thread Graham Fawcett
On 9/28/05, Thomas Chust <[EMAIL PROTECTED]> wrote: > > on a sidenote, there is also the crypt egg for CHICKEN, which I wrote ages > ago. It is able to provide SSL support and should be usable together with > the http egg by providing custom ports generated with crypt to the http > methods. Ah, th

Re: [Chicken-users] wishlist: numbers egg (random) support

2005-09-28 Thread felix winkelmann
That shouldn't be too hard - GMP provides all the neccessary things. I'll give it a try. cheers, felix On 9/28/05, Daishi Kato <[EMAIL PROTECTED]> wrote: > ...not knowing how diffiult it is. > Daishi > > > ___ > Chicken-users mailing list > Chicken-use

Re: [Chicken-users] libcurl?

2005-09-28 Thread Thomas Chust
Am 28.09.2005, 16:17 Uhr, schrieb Graham Fawcett <[EMAIL PROTECTED]>: Hi folks, I'd like to be able to fetch data from an HTTPS url. I don't see this capability within the existing Chicken eggs. A libcurl binding for chicken would probably be the most expedient route. [...] Hello, on a sid

Re: [Chicken-users] libcurl?

2005-09-28 Thread Thomas Chust
Am 28.09.2005, 16:17 Uhr, schrieb Graham Fawcett <[EMAIL PROTECTED]>: Hi folks, I'd like to be able to fetch data from an HTTPS url. I don't see this capability within the existing Chicken eggs. A libcurl binding for chicken would probably be the most expedient route. [...] Hello, I'm sorry

[Chicken-users] libcurl?

2005-09-28 Thread Graham Fawcett
Hi folks, I'd like to be able to fetch data from an HTTPS url. I don't see this capability within the existing Chicken eggs. A libcurl binding for chicken would probably be the most expedient route. So, does anyone have a libcurl binding? :-) I see there's a binding for Bigloo [1] that could be p

Re: [Chicken-users] MinGW build

2005-09-28 Thread Graham Fawcett
On 9/27/05, Patrick Brannan <[EMAIL PROTECTED]> wrote: > I'm trying to build chicken 2.2 with mingw and am having a small problem. It > looks like it is trying to build posix.c and is having some difficulty. > Should posix.c even be built on windows? Any suggestions would be > appreciated. > > Pri

[Chicken-users] wishlist: numbers egg (random) support

2005-09-28 Thread Daishi Kato
...not knowing how diffiult it is. Daishi ___ Chicken-users mailing list Chicken-users@nongnu.org http://lists.nongnu.org/mailman/listinfo/chicken-users

Re: [Chicken-users] Tcp bug report

2005-09-28 Thread felix winkelmann
On 9/28/05, Reed Sheridan <[EMAIL PROTECTED]> wrote: > Hi, > > The ports returned by tcp-accept don't handle broken pipes. > > Server: > (define l (tcp-listen 3000)) > (define-values (si so) (tcp-accept l)) > > Client: > (define-values (i o) (tcp-connect "localhost" 3000)) > (close-input-port i) >