unofficial mirror of bug-guile@gnu.org 
 help / color / mirror / Atom feed
* bug#29258: web client fails on https
@ 2017-11-11 14:09 Amirouche Boubekki
  2017-11-22  6:28 ` Christopher Allan Webber
  2017-11-22 15:21 ` Ludovic Courtès
  0 siblings, 2 replies; 5+ messages in thread
From: Amirouche Boubekki @ 2017-11-11 14:09 UTC (permalink / raw)
  To: 29258

GNU Guile 2.2.2
Copyright (C) 1995-2017 Free Software Foundation, Inc.

Guile comes with ABSOLUTELY NO WARRANTY; for details type `,show w'.
This program is free software, and you are welcome to redistribute it
under certain conditions; type `,show c' for details.

Enter `,help' for help.
scheme@(guile-user)> (use-modules (web client))
scheme@(guile-user)> (http-get "https://www.gnu.org")
ERROR: In procedure get-bytevector-n:
ERROR: Throw to key `gnutls-error' with args `(#<gnutls-error-enum La 
connexion TLS n’a pas été terminée correctement.> 
read_from_session_record_port)'.

Entering a new prompt.  Type `,bt' for a backtrace or `,q' to continue.
scheme@(guile-user) [1]>

scheme@(guile-user)> (use-modules (gnutls))
scheme@(guile-user)> (gnutls-version)
$1 = "3.5.13"






^ permalink raw reply	[flat|nested] 5+ messages in thread

* bug#29258: web client fails on https
  2017-11-11 14:09 bug#29258: web client fails on https Amirouche Boubekki
@ 2017-11-22  6:28 ` Christopher Allan Webber
  2017-11-22 15:21 ` Ludovic Courtès
  1 sibling, 0 replies; 5+ messages in thread
From: Christopher Allan Webber @ 2017-11-22  6:28 UTC (permalink / raw)
  To: Amirouche Boubekki; +Cc: 29258

Amirouche Boubekki writes:

> GNU Guile 2.2.2
> Copyright (C) 1995-2017 Free Software Foundation, Inc.
>
> Guile comes with ABSOLUTELY NO WARRANTY; for details type `,show w'.
> This program is free software, and you are welcome to redistribute it
> under certain conditions; type `,show c' for details.
>
> Enter `,help' for help.
> scheme@(guile-user)> (use-modules (web client))
> scheme@(guile-user)> (http-get "https://www.gnu.org")
> ERROR: In procedure get-bytevector-n:
> ERROR: Throw to key `gnutls-error' with args `(#<gnutls-error-enum La 
> connexion TLS n’a pas été terminée correctement.> 
> read_from_session_record_port)'.
>
> Entering a new prompt.  Type `,bt' for a backtrace or `,q' to continue.
> scheme@(guile-user) [1]>
>
> scheme@(guile-user)> (use-modules (gnutls))
> scheme@(guile-user)> (gnutls-version)
> $1 = "3.5.13"

This is fixed in git master of guile, if it's the same bug I think it
is.





^ permalink raw reply	[flat|nested] 5+ messages in thread

* bug#29258: web client fails on https
  2017-11-11 14:09 bug#29258: web client fails on https Amirouche Boubekki
  2017-11-22  6:28 ` Christopher Allan Webber
@ 2017-11-22 15:21 ` Ludovic Courtès
  2017-11-22 16:03   ` Amirouche Boubekki
  1 sibling, 1 reply; 5+ messages in thread
From: Ludovic Courtès @ 2017-11-22 15:21 UTC (permalink / raw)
  To: Amirouche Boubekki; +Cc: 29258

Hi Amirouche,

Amirouche Boubekki <amirouche@hypermove.net> skribis:

> GNU Guile 2.2.2
> Copyright (C) 1995-2017 Free Software Foundation, Inc.
>
> Guile comes with ABSOLUTELY NO WARRANTY; for details type `,show w'.
> This program is free software, and you are welcome to redistribute it
> under certain conditions; type `,show c' for details.
>
> Enter `,help' for help.
> scheme@(guile-user)> (use-modules (web client))
> scheme@(guile-user)> (http-get "https://www.gnu.org")
> ERROR: In procedure get-bytevector-n:
> ERROR: Throw to key `gnutls-error' with args `(#<gnutls-error-enum La
> connexion TLS n’a pas été terminée correctement.>
> read_from_session_record_port)'.

I cannot reproduce this in current ‘stable-2.2’.  I believe this was
fixed by commit 0c102b56e98da39b5a3213bdc567a31ad8ef3e73.

Can you confirm that ‘stable-2.2’ works for you?

Thanks,
Ludo’.





^ permalink raw reply	[flat|nested] 5+ messages in thread

* bug#29258: web client fails on https
  2017-11-22 15:21 ` Ludovic Courtès
@ 2017-11-22 16:03   ` Amirouche Boubekki
  2017-11-22 16:50     ` Ludovic Courtès
  0 siblings, 1 reply; 5+ messages in thread
From: Amirouche Boubekki @ 2017-11-22 16:03 UTC (permalink / raw)
  To: ludo; +Cc: bug-guile, 29258

On 2017-11-22 16:21, ludo@gnu.org wrote:
> Hi Amirouche,
> 
> Amirouche Boubekki <amirouche@hypermove.net> skribis:
> 
>> GNU Guile 2.2.2
>> Copyright (C) 1995-2017 Free Software Foundation, Inc.
>> 
>> Guile comes with ABSOLUTELY NO WARRANTY; for details type `,show w'.
>> This program is free software, and you are welcome to redistribute it
>> under certain conditions; type `,show c' for details.
>> 
>> Enter `,help' for help.
>> scheme@(guile-user)> (use-modules (web client))
>> scheme@(guile-user)> (http-get "https://www.gnu.org")
>> ERROR: In procedure get-bytevector-n:
>> ERROR: Throw to key `gnutls-error' with args `(#<gnutls-error-enum La
>> connexion TLS n’a pas été terminée correctement.>
>> read_from_session_record_port)'.
> 
> I cannot reproduce this in current ‘stable-2.2’.  I believe this was
> fixed by commit 0c102b56e98da39b5a3213bdc567a31ad8ef3e73.
> 
> Can you confirm that ‘stable-2.2’ works for you?
> 

Yes.





^ permalink raw reply	[flat|nested] 5+ messages in thread

* bug#29258: web client fails on https
  2017-11-22 16:03   ` Amirouche Boubekki
@ 2017-11-22 16:50     ` Ludovic Courtès
  0 siblings, 0 replies; 5+ messages in thread
From: Ludovic Courtès @ 2017-11-22 16:50 UTC (permalink / raw)
  To: Amirouche Boubekki; +Cc: 29258-done

Amirouche Boubekki <amirouche@hypermove.net> skribis:

> On 2017-11-22 16:21, ludo@gnu.org wrote:
>> Hi Amirouche,
>>
>> Amirouche Boubekki <amirouche@hypermove.net> skribis:
>>
>>> GNU Guile 2.2.2
>>> Copyright (C) 1995-2017 Free Software Foundation, Inc.
>>>
>>> Guile comes with ABSOLUTELY NO WARRANTY; for details type `,show w'.
>>> This program is free software, and you are welcome to redistribute it
>>> under certain conditions; type `,show c' for details.
>>>
>>> Enter `,help' for help.
>>> scheme@(guile-user)> (use-modules (web client))
>>> scheme@(guile-user)> (http-get "https://www.gnu.org")
>>> ERROR: In procedure get-bytevector-n:
>>> ERROR: Throw to key `gnutls-error' with args `(#<gnutls-error-enum La
>>> connexion TLS n’a pas été terminée correctement.>
>>> read_from_session_record_port)'.
>>
>> I cannot reproduce this in current ‘stable-2.2’.  I believe this was
>> fixed by commit 0c102b56e98da39b5a3213bdc567a31ad8ef3e73.
>>
>> Can you confirm that ‘stable-2.2’ works for you?
>>
>
> Yes.

Thanks,
Ludo'.





^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2017-11-22 16:50 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-11-11 14:09 bug#29258: web client fails on https Amirouche Boubekki
2017-11-22  6:28 ` Christopher Allan Webber
2017-11-22 15:21 ` Ludovic Courtès
2017-11-22 16:03   ` Amirouche Boubekki
2017-11-22 16:50     ` Ludovic Courtès

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).