unofficial mirror of guix-devel@gnu.org 
 help / color / mirror / code / Atom feed
* Maintaining GNU Jami package for Guix
@ 2019-10-18 18:56 Jan
  2019-10-18 19:28 ` Marius Bakke
                   ` (4 more replies)
  0 siblings, 5 replies; 40+ messages in thread
From: Jan @ 2019-10-18 18:56 UTC (permalink / raw)
  To: guix-devel

Hi all,
It seems Jami package is outdated and unmaintained, so I would like to
become a maintainer of the package.
I know the basics of Guile Scheme and Guix System, I'm more or
less familiar with how Jami works and what are its dependencies, but I
don't know much about development, git or build systems.
What are the things I need to learn to be able to start packaging?


Jan Wielkiewicz 

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

* Re: Maintaining GNU Jami package for Guix
  2019-10-18 18:56 Maintaining GNU Jami package for Guix Jan
@ 2019-10-18 19:28 ` Marius Bakke
  2019-10-19  9:02   ` Pierre Neidhardt
  2019-10-27 18:13 ` Jan Wielkiewicz
                   ` (3 subsequent siblings)
  4 siblings, 1 reply; 40+ messages in thread
From: Marius Bakke @ 2019-10-18 19:28 UTC (permalink / raw)
  To: Jan, guix-devel

[-- Attachment #1: Type: text/plain, Size: 1911 bytes --]

Hello Jan,

Jan <tona_kosmicznego_smiecia@interia.pl> writes:

> Hi all,
> It seems Jami package is outdated and unmaintained, so I would like to
> become a maintainer of the package.
> I know the basics of Guile Scheme and Guix System, I'm more or
> less familiar with how Jami works and what are its dependencies, but I
> don't know much about development, git or build systems.
> What are the things I need to learn to be able to start packaging?

Thank you for your interest in maintaining Jami!

You will need to learn the basics of git in order to make commits and
send patches.  You should also read this section of the manual:

https://guix.gnu.org/manual/en/guix.html#Building-from-Git

A typical workflow would go along these lines:

First time setup:
$ git clone https://git.savannah.gnu.org/git/guix.git
$ cd guix
$ guix environment guix
[env] $ ./bootstrap
[env] $ ./configure --localstatedir=/var
[env] $ make -j4 # adjust for number of cores on your machine

That will build the latest version of Guix locally.  Now you can use the
'./pre-inst-env' script to run guix operations from this directory.  You
should repeat the 'make' step when you have pulled or made other
changes, to pre-compile the Scheme modules.

Making changes to the repository:
$ ./pre-inst-env guix edit jami
$ [...hacking away...]
$ ./pre-inst-env guix build jami
(investigate build failures, repeat until it works)

Once you are happy with your changes, you should commit them and send a
patch to guix-patches@gnu.org:

$ git add -p
(press y on the hunks you wish to stage)
$ git commit # commit the staged changes
$ git send-email --to guix-patches@gnu.org -1 HEAD

Alternatively you can create a patch file with 'git format-patch -1
HEAD' and use your favourite mail user agent to send it.

Please don't hesitate to ask for help here or on the #guix IRC channel
if you get stuck on anything :-)

Hope this helps,
Marius

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 487 bytes --]

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

* Re: Maintaining GNU Jami package for Guix
  2019-10-18 19:28 ` Marius Bakke
@ 2019-10-19  9:02   ` Pierre Neidhardt
  2019-10-19 20:38     ` Jan Wielkiewicz
  0 siblings, 1 reply; 40+ messages in thread
From: Pierre Neidhardt @ 2019-10-19  9:02 UTC (permalink / raw)
  To: Marius Bakke, Jan, guix-devel

[-- Attachment #1: Type: text/plain, Size: 647 bytes --]

Hi Jan,

glad you are interested in picking this one up! :)
I'm the last packager of Jami, so I might be able to help.

After a quick glance, here is the situation it seems:

Jami used to depend on their own fork of pjproject (as packaged in
Guix).
However it seems that recent versions have dropped the fork to use upstream
instead.  _This needs to be confirmed._
If this is the case, switching the pjproject input to use upstream
should work when updating Jami.

The rest should be mostly straightforward stuff.  Don't hesitate to come
back to me if you need more help.

Cheers!

-- 
Pierre Neidhardt
https://ambrevar.xyz/

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 487 bytes --]

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

* Re: Maintaining GNU Jami package for Guix
  2019-10-19  9:02   ` Pierre Neidhardt
@ 2019-10-19 20:38     ` Jan Wielkiewicz
  2019-10-19 20:52       ` Ricardo Wurmus
  2019-10-20 11:48       ` Pierre Neidhardt
  0 siblings, 2 replies; 40+ messages in thread
From: Jan Wielkiewicz @ 2019-10-19 20:38 UTC (permalink / raw)
  To: Pierre Neidhardt; +Cc: guix-devel

Hello,

Dnia 2019-10-19, o godz. 11:02:35
Pierre Neidhardt <mail@ambrevar.xyz> napisał(a):

> Hi Jan,
> 
> glad you are interested in picking this one up! :)
> I'm the last packager of Jami, so I might be able to help.
Yes, thank you, I definitely will need help.

> After a quick glance, here is the situation it seems:
> 
> Jami used to depend on their own fork of pjproject (as packaged in
> Guix).
> However it seems that recent versions have dropped the fork to use
> upstream instead.  _This needs to be confirmed._
It seems the latest version still has patches for pjproject in the
source code, but I can ask the devs about it. 

> If this is the case, switching the pjproject input to use upstream
> should work when updating Jami.
I've tried updating Jami, but pjproject seems to be a problem -
don't know what have changed, but now even the currently packaged
version of pjproject won't compile. Here's the log:

starting phase `autoconf'
autoconf: error: invalid option `-vfi'
Try `autoconf --help' for more information.
command "autoconf" "-vfi" "-o" "aconfigure" "aconfigure.ac" failed with
status 1

I've also tried updating pjproject to the current version Jami uses -
2.8, it throws the same error. I managed to skip that by removing the
"-vfi" options by commenting it out like this:

(add-before 'patch-source-shebangs 'autoconf
           (lambda _
	     (invoke "autoconf" "-o" ;"-vfi"
		     "aconfigure" "aconfigure.ac")))

But then it fails later, while doing "make dep":

make[2]: Entering directory
'/tmp/guix-build-pjproject-2.8.drv-0/pjproject-2.8/third_party/build'
make[2]: *** gsm: No such file or directory.  Stop. make[2]: Leaving
directory
'/tmp/guix-build-pjproject-2.8.drv-0/pjproject-2.8/third_party/build'
make[1]: *** [Makefile:7: dep] Error 1 make[1]: Leaving directory
'/tmp/guix-build-pjproject-2.8.drv-0/pjproject-2.8/third_party/build'
make: *** [Makefile:14: dep] Error 1 command "make" "dep" failed with
status 2

Why are third party directories removed if they're necessary to build
pjproject? Should I package contents of these folders as separate
package? 

Also something is causing builds of Jami to be irreproducible
- every time I run guix upgrade, Jami gets upgraded to the same
version. Is there a way to check what exactly is unstable?

> The rest should be mostly straightforward stuff.  Don't hesitate to
> come back to me if you need more help.
Okay, thanks.

> Cheers!
> 


Jan Wielkiewicz

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

* Re: Maintaining GNU Jami package for Guix
  2019-10-19 20:38     ` Jan Wielkiewicz
@ 2019-10-19 20:52       ` Ricardo Wurmus
  2019-10-19 22:37         ` Jan
  2019-10-20 11:48       ` Pierre Neidhardt
  1 sibling, 1 reply; 40+ messages in thread
From: Ricardo Wurmus @ 2019-10-19 20:52 UTC (permalink / raw)
  To: Jan Wielkiewicz; +Cc: guix-devel


Jan Wielkiewicz <tona_kosmicznego_smiecia@interia.pl> writes:

> Why are third party directories removed if they're necessary to build
> pjproject? Should I package contents of these folders as separate
> package? 

We always try to unbundle libraries, because that ensures that all
packages benefit from security fixes.

-- 
Ricardo

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

* Re: Maintaining GNU Jami package for Guix
  2019-10-19 20:52       ` Ricardo Wurmus
@ 2019-10-19 22:37         ` Jan
  2019-10-20 11:14           ` Ricardo Wurmus
  2019-10-20 11:51           ` Pierre Neidhardt
  0 siblings, 2 replies; 40+ messages in thread
From: Jan @ 2019-10-19 22:37 UTC (permalink / raw)
  To: Ricardo Wurmus; +Cc: guix-devel

On Sat, 19 Oct 2019 22:52:58 +0200
Ricardo Wurmus <rekado@elephly.net> wrote:

> We always try to unbundle libraries, because that ensures that all
> packages benefit from security fixes.
> 

Great, so I have to package everything recursively :)
Just to make it clear, because I'm a bit unfamiliar with build systems
and the package API - will packing every library pjproject uses and
just adding it in the "inputs" field make building possible, or will I
have to do magic and copy built packages into "third_party" folder in
the pjproject source tree?

Also what if pjproject (or any package I want to update) depends on a
specific version of a library? Should I just update the package, or
should I add a separate version of the library?


Jan Wielkiewicz

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

* Re: Maintaining GNU Jami package for Guix
  2019-10-19 22:37         ` Jan
@ 2019-10-20 11:14           ` Ricardo Wurmus
  2019-10-20 11:51           ` Pierre Neidhardt
  1 sibling, 0 replies; 40+ messages in thread
From: Ricardo Wurmus @ 2019-10-20 11:14 UTC (permalink / raw)
  To: Jan; +Cc: guix-devel


Hi Jan,

> On Sat, 19 Oct 2019 22:52:58 +0200
> Ricardo Wurmus <rekado@elephly.net> wrote:
>
>> We always try to unbundle libraries, because that ensures that all
>> packages benefit from security fixes.
>>
>
> Great, so I have to package everything recursively :)
> Just to make it clear, because I'm a bit unfamiliar with build systems
> and the package API - will packing every library pjproject uses and
> just adding it in the "inputs" field make building possible, or will I
> have to do magic and copy built packages into "third_party" folder in
> the pjproject source tree?

This depends very much on how friendly the build system used by
pjproject is.  Some applications’ build systems resist any attempts to
request the application to be linked with existing libraries, whereas
others will only fall back to the bundled libraries if the libraries
don’t already exist somewhere on LIBRARY_PATH.

This is why it’s often a big headache to package software that uses
custom build systems, as they often lack sane mechanisms for library
discovery or overriding.

> Also what if pjproject (or any package I want to update) depends on a
> specific version of a library? Should I just update the package, or
> should I add a separate version of the library?

Let’s discuss this when the need actually arises.  We have a few
instances of packages that are named “…-for-some-other-package”, but
let’s not add them when they aren’t absolutely necessary.

--
Ricardo

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

* Re: Maintaining GNU Jami package for Guix
  2019-10-19 20:38     ` Jan Wielkiewicz
  2019-10-19 20:52       ` Ricardo Wurmus
@ 2019-10-20 11:48       ` Pierre Neidhardt
  2019-10-25 15:03         ` Pierre Neidhardt
  1 sibling, 1 reply; 40+ messages in thread
From: Pierre Neidhardt @ 2019-10-20 11:48 UTC (permalink / raw)
  To: Jan Wielkiewicz; +Cc: guix-devel

[-- Attachment #1: Type: text/plain, Size: 2956 bytes --]

Jan Wielkiewicz <tona_kosmicznego_smiecia@interia.pl> writes:

>> Jami used to depend on their own fork of pjproject (as packaged in
>> Guix).
>> However it seems that recent versions have dropped the fork to use
>> upstream instead.  _This needs to be confirmed._
> It seems the latest version still has patches for pjproject in the
> source code, but I can ask the devs about it. 

Don't hesitate to post on the issue tracker, in my experience they are
responsive and helpful.

>> If this is the case, switching the pjproject input to use upstream
>> should work when updating Jami.
> I've tried updating Jami, but pjproject seems to be a problem -
> don't know what have changed, but now even the currently packaged
> version of pjproject won't compile. Here's the log:
>
> starting phase `autoconf'
> autoconf: error: invalid option `-vfi'
> Try `autoconf --help' for more information.
> command "autoconf" "-vfi" "-o" "aconfigure" "aconfigure.ac" failed with
> status 1

I remember this error, but I don't know if it was for Jami or some
unrelated package.  It's an issue with some versions of autoconf.  I
think you have to use '-v -f -i' instead, and maybe leave out one
offending option.

> I've also tried updating pjproject to the current version Jami uses -
> 2.8, it throws the same error. I managed to skip that by removing the
> "-vfi" options by commenting it out like this:
>
> (add-before 'patch-source-shebangs 'autoconf
>            (lambda _
> 	     (invoke "autoconf" "-o" ;"-vfi"
> 		     "aconfigure" "aconfigure.ac")))

See above, don't leave out everything.

> But then it fails later, while doing "make dep":
>
> make[2]: Entering directory
> '/tmp/guix-build-pjproject-2.8.drv-0/pjproject-2.8/third_party/build'
> make[2]: *** gsm: No such file or directory.  Stop. make[2]: Leaving
> directory
> '/tmp/guix-build-pjproject-2.8.drv-0/pjproject-2.8/third_party/build'
> make[1]: *** [Makefile:7: dep] Error 1 make[1]: Leaving directory
> '/tmp/guix-build-pjproject-2.8.drv-0/pjproject-2.8/third_party/build'
> make: *** [Makefile:14: dep] Error 1 command "make" "dep" failed with
> status 2
>
> Why are third party directories removed if they're necessary to build
> pjproject? Should I package contents of these folders as separate
> package? 

This is the whole trick about packaging Jami: we remove all the embedded
dependencies, and instead build against our own.
If you look at the package definitions, you'll see that we explicitly
skip building the third_party, and instead we expose them as inputs.

> Also something is causing builds of Jami to be irreproducible
> - every time I run guix upgrade, Jami gets upgraded to the same
> version. Is there a way to check what exactly is unstable?

Try running `guix build --check ...` against Jami specific-inputs, like
pjproject, libring, libring-client, etc.


-- 
Pierre Neidhardt
https://ambrevar.xyz/

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 487 bytes --]

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

* Re: Maintaining GNU Jami package for Guix
  2019-10-19 22:37         ` Jan
  2019-10-20 11:14           ` Ricardo Wurmus
@ 2019-10-20 11:51           ` Pierre Neidhardt
  1 sibling, 0 replies; 40+ messages in thread
From: Pierre Neidhardt @ 2019-10-20 11:51 UTC (permalink / raw)
  To: Jan, Ricardo Wurmus; +Cc: guix-devel

[-- Attachment #1: Type: text/plain, Size: 1341 bytes --]

Jan <tona_kosmicznego_smiecia@interia.pl> writes:

> On Sat, 19 Oct 2019 22:52:58 +0200
> Ricardo Wurmus <rekado@elephly.net> wrote:
>
>> We always try to unbundle libraries, because that ensures that all
>> packages benefit from security fixes.
>> 
>
> Great, so I have to package everything recursively :)

You'll only have to package they new dependencies they've introduced
since I last packaged Jami, if any.  It should not be more than 1 or 2 I
guess.  Maybe 0.

> Just to make it clear, because I'm a bit unfamiliar with build systems
> and the package API - will packing every library pjproject uses and
> just adding it in the "inputs" field make building possible, or will I
> have to do magic and copy built packages into "third_party" folder in
> the pjproject source tree?

This is already taken care of in the last version of Jami.

> Also what if pjproject (or any package I want to update) depends on a
> specific version of a library? Should I just update the package, or
> should I add a separate version of the library?

You can always define a non-exported package to a specific version if
Jami needs that.  In the current version of Jami, if I recall correctly,
only pjproject needed a forked version, everything else was following upstream.

-- 
Pierre Neidhardt
https://ambrevar.xyz/

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 487 bytes --]

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

* Re: Maintaining GNU Jami package for Guix
  2019-10-20 11:48       ` Pierre Neidhardt
@ 2019-10-25 15:03         ` Pierre Neidhardt
  2019-10-25 19:44           ` Jan Wielkiewicz
  0 siblings, 1 reply; 40+ messages in thread
From: Pierre Neidhardt @ 2019-10-25 15:03 UTC (permalink / raw)
  To: Jan Wielkiewicz; +Cc: guix-devel

[-- Attachment #1: Type: text/plain, Size: 223 bytes --]

Hi Jan,

any luck with Jami?  Let me know if you need more specific help (my
previous message was maybe not too clear :p), I can dig into this deeper
in the coming days.

-- 
Pierre Neidhardt
https://ambrevar.xyz/

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 487 bytes --]

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

* Re: Maintaining GNU Jami package for Guix
  2019-10-25 15:03         ` Pierre Neidhardt
@ 2019-10-25 19:44           ` Jan Wielkiewicz
  2019-10-26 10:12             ` Pierre Neidhardt
  0 siblings, 1 reply; 40+ messages in thread
From: Jan Wielkiewicz @ 2019-10-25 19:44 UTC (permalink / raw)
  To: Pierre Neidhardt; +Cc: guix-devel

Dnia 2019-10-25, o godz. 17:03:01
Pierre Neidhardt <mail@ambrevar.xyz> napisał(a):

> Hi Jan,
> 
> any luck with Jami?  Let me know if you need more specific help (my
> previous message was maybe not too clear :p), I can dig into this
> deeper in the coming days.
> 

I had little time recently, but I've been trying different things in
order to build pjproject.
What I know is the current version of pjproject doesn't compile at all
without Savoir-failre linux patches. I also talked with Jami developers
about the current state of Jami and pjproject:
https://git.ring.cx/savoirfairelinux/ring-project/issues/691

They're still applying patches for pjproject and the version they use
is 2.9, tried updating jami-source and pjproject, but applying the
patches failed. I suspect we're missing some dependencies of pjproject.
I can post error messages, but have to sit down and build everything
again. I'm going to try this weekend.


Jan Wielkiewicz

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

* Re: Maintaining GNU Jami package for Guix
  2019-10-25 19:44           ` Jan Wielkiewicz
@ 2019-10-26 10:12             ` Pierre Neidhardt
  2019-10-26 23:24               ` Jan Wielkiewicz
  0 siblings, 1 reply; 40+ messages in thread
From: Pierre Neidhardt @ 2019-10-26 10:12 UTC (permalink / raw)
  To: Jan Wielkiewicz; +Cc: guix-devel

[-- Attachment #1: Type: text/plain, Size: 826 bytes --]

Jan Wielkiewicz <tona_kosmicznego_smiecia@interia.pl> writes:

> I had little time recently, but I've been trying different things in
> order to build pjproject.
> What I know is the current version of pjproject doesn't compile at all
> without Savoir-failre linux patches. I also talked with Jami developers
> about the current state of Jami and pjproject:
> https://git.ring.cx/savoirfairelinux/ring-project/issues/691

Nice, thank you for getting in touch with the developers, this is very informative.

Have you tried using pjproject 5dfa75be7d69047387f9b0436dd9492bbbf03fe4
?
Does the patching still fail?

Also it now depends on Restinio, I think we are missing this one, so it
would need to be packaged first.  (But that's unrelated to the patch issue.)

-- 
Pierre Neidhardt
https://ambrevar.xyz/

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 487 bytes --]

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

* Re: Maintaining GNU Jami package for Guix
  2019-10-26 10:12             ` Pierre Neidhardt
@ 2019-10-26 23:24               ` Jan Wielkiewicz
  2019-10-28  7:53                 ` Pierre Neidhardt
  0 siblings, 1 reply; 40+ messages in thread
From: Jan Wielkiewicz @ 2019-10-26 23:24 UTC (permalink / raw)
  To: Pierre Neidhardt; +Cc: guix-devel

Dnia 2019-10-26, o godz. 12:12:44
Pierre Neidhardt <mail@ambrevar.xyz> napisał(a):

> Nice, thank you for getting in touch with the developers, this is
> very informative.
> 
> Have you tried using pjproject
> 5dfa75be7d69047387f9b0436dd9492bbbf03fe4 ?
> Does the patching still fail?
I've tried this today and it still fails. Don't know if the fails with
the exact commit are much different from 2.9 fetched from the tarball.
If they're not different, then you can see what happens in one of my
comments here
https://git.ring.cx/savoirfairelinux/ring-project/issues/691

> Also it now depends on Restinio, I think we are missing this one, so
> it would need to be packaged first.  (But that's unrelated to the
> patch issue.)
I'm going to package it eventually, but for now I want to fix the
current problems and then proceed with the rest.


Jan Wielkiewicz

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

* Re: Maintaining GNU Jami package for Guix
  2019-10-18 18:56 Maintaining GNU Jami package for Guix Jan
  2019-10-18 19:28 ` Marius Bakke
@ 2019-10-27 18:13 ` Jan Wielkiewicz
  2019-10-27 18:18   ` Pierre Neidhardt
  2019-10-27 21:52 ` Jan Wielkiewicz
                   ` (2 subsequent siblings)
  4 siblings, 1 reply; 40+ messages in thread
From: Jan Wielkiewicz @ 2019-10-27 18:13 UTC (permalink / raw)
  To: guix-devel

[-- Attachment #1: Type: text/plain, Size: 1094 bytes --]

Hi everyone,

I've been investigating why pjproject doesn't build and here's what I
found:

In the third_party folder in the pjproject source tree, there's a README
file containing dependencies needed by the version used by Jami (2.9):

>= Versions =
>
>speex:		SVN -r12832
>gsm:		gsm-1.0.12
>ilbc:		from RFC
>resample:	lib-resample, I think version 1.7
>srtp		libsrtp-1.5.4

I know that currently dependencies of pjproject being packaged with
proper versions are:
libsrtp and speex, didn't check gsm and ilbc yet.
What haven't been packaged is libresample - I made a package for it in
my private git repository, also gnutls needed for pjproject-jami has
the wrong version - 3.6.9, whereas the current version used by Jami is
3.6.7 according to this commit
https://review.jami.net/c/ring-daemon/+/12108/1/contrib/src/gnutls/rules.mak
(but I'll ask developers to make sure)

I tried downgrading gnutls (because I think it's the cause of failing
patches), but it fails during compilation. I've attached the log below,
should I file a bug on the guix-bug ML?

That's all for now,

Jan Wielkiewicz

[-- Attachment #2: gnutls-fail.txt --]
[-- Type: text/plain, Size: 545482 bytes --]

starting phase `set-SOURCE-DATE-EPOCH'
phase `set-SOURCE-DATE-EPOCH' succeeded after 0.0 seconds
starting phase `set-paths'
environment variable `PATH' set to `/gnu/store/03j8k18d0jrs8z5llizd8xfg38ijj453-net-tools-1.60-0.479bb4a/bin:/gnu/store/03j8k18d0jrs8z5llizd8xfg38ijj453-net-tools-1.60-0.479bb4a/sbin:/gnu/store/i1cqaixp79vd3qwnyj1ll10pq6skm2wk-pkg-config-0.29.2/bin:/gnu/store/4izp5ih15pdr3q2hax2c6fmjqsw4vcrv-which-2.21/bin:/gnu/store/cnqpra8vr2l5fz00rr4yj4bp3hr00cfw-tar-1.32/bin:/gnu/store/py3k9zla9fj3z7430v4crqj5pyrsd3qj-gzip-1.10/bin:/gnu/store/l86azr7r3p5631wj3kk329jl1y1mpjgy-bzip2-1.0.6/bin:/gnu/store/lbip9isk25isymvnb159l115xnacb5j8-xz-5.2.4/bin:/gnu/store/6jdshxwdrad9mlhcqc9k0g24yw45rqf1-file-5.33/bin:/gnu/store/58sq8iabw3jkv0fvf95hd7sq2g4xcsnz-diffutils-3.7/bin:/gnu/store/v76scv4n63ip08g119rczh2mrw31zwpd-patch-2.7.6/bin:/gnu/store/g9d3wv1d68iflx57yp3mcp3k3sv8spsl-findutils-4.6.0/bin:/gnu/store/2z9hs
 ww76aag37p40671l9niq5pvvasx-gawk-5.0.1/bin:/gnu/store/afmvfw1yhfal48n1kjq6bk6kcw8sc3db-sed-4.7/bin:/gnu/store/7iyvxhp2g3v3655zqwr6biz2h0lqv7pr-grep-3.3/bin:/gnu/store/9kzrrccpzl6i1sfwb0drb00
 gi2gwk0x0-coreutils-8.31/bin:/gnu/store/b5vpfzkr59bpgcsg1k9vvad9h5rwvpgk-make-4.2.1/bin:/gnu/store/29jhbbg1hf557x8j53f9sxd9imlmf02a-bash-minimal-5.0.7/bin:/gnu/store/nc5vlidpxbvngalng30nif8nb3j7gfy2-ld-wrapper-0/bin:/gnu/store/3hkdiscs4910r75njbrql10znxxn7chk-binutils-2.32/bin:/gnu/store/x3jx25cd3q363mr7nbgzrhrv1vza6cf7-gcc-7.4.0/bin:/gnu/store/ahqgl4h89xqj695lgqvsaf6zh2nhy4pj-glibc-2.29/bin:/gnu/store/ahqgl4h89xqj695lgqvsaf6zh2nhy4pj-glibc-2.29/sbin:/gnu/store/1mkkv2caiqbdbbd256c4dirfi4kwsacv-guile-2.2.6/bin:/gnu/store/lwz8fygpmmsw6h8vrllr56p7ssi5qx33-libtasn1-4.14/bin:/gnu/store/7gabmw9siqrz79slpi1f8i90v3w1638x-libidn2-2.2.0/bin:/gnu/store/lvnybsygfd6gya6xbdv48g72lb0iqqzx-nettle-3.5.1/bin'
environment variable `PKG_CONFIG_PATH' set to `/gnu/store/lbip9isk25isymvnb159l115xnacb5j8-xz-5.2.4/lib/pkgconfig:/gnu/store/1mkkv2caiqbdbbd256c4dirfi4kwsacv-guile-2.2.6/lib/pkgconfig:/gnu/store/lwz8fygpmmsw6h8vrllr56p7ssi5qx33-libtasn1-4.14/lib/pkgconfig:/gnu/store/7gabmw9siqrz79slpi1f8i90v3w1638x-libidn2-2.2.0/lib/pkgconfig:/gnu/store/lvnybsygfd6gya6xbdv48g72lb0iqqzx-nettle-3.5.1/lib/pkgconfig:/gnu/store/qx7p7hiq90mi7r78hcr9cyskccy2j4bg-zlib-1.2.11/lib/pkgconfig:/gnu/store/3xs3dnc28p9fi8in7hkfcdx20incrdvq-libgc-7.6.12/lib/pkgconfig'
environment variable `BASH_LOADABLES_PATH' unset
environment variable `CPATH' set to `/gnu/store/l86azr7r3p5631wj3kk329jl1y1mpjgy-bzip2-1.0.6/include:/gnu/store/lbip9isk25isymvnb159l115xnacb5j8-xz-5.2.4/include:/gnu/store/6jdshxwdrad9mlhcqc9k0g24yw45rqf1-file-5.33/include:/gnu/store/2z9hsww76aag37p40671l9niq5pvvasx-gawk-5.0.1/include:/gnu/store/b5vpfzkr59bpgcsg1k9vvad9h5rwvpgk-make-4.2.1/include:/gnu/store/3hkdiscs4910r75njbrql10znxxn7chk-binutils-2.32/include:/gnu/store/x3jx25cd3q363mr7nbgzrhrv1vza6cf7-gcc-7.4.0/include:/gnu/store/ahqgl4h89xqj695lgqvsaf6zh2nhy4pj-glibc-2.29/include:/gnu/store/1mkkv2caiqbdbbd256c4dirfi4kwsacv-guile-2.2.6/include:/gnu/store/lwz8fygpmmsw6h8vrllr56p7ssi5qx33-libtasn1-4.14/include:/gnu/store/7gabmw9siqrz79slpi1f8i90v3w1638x-libidn2-2.2.0/include:/gnu/store/lvnybsygfd6gya6xbdv48g72lb0iqqzx-nettle-3.5.1/includ
 e:/gnu/store/qx7p7hiq90mi7r78hcr9cyskccy2j4bg-zlib-1.2.11/include:/gnu/store/7czrqpi0kwazras6pgyx0bhdn89pg0jl-linux-libre-headers-4.19.56/include:/gnu/store/y7qk8raalgvdnxcglvxa320cfxrjk1x6-
 gmp-6.1.2/include:/gnu/store/3xs3dnc28p9fi8in7hkfcdx20incrdvq-libgc-7.6.12/include:/gnu/store/zasz52va238yyaq68rjm8ljwl4ikij4p-libltdl-2.4.6/include:/gnu/store/nsikjxykcaqa0zjpfmkqd569bngbv5nl-libunistring-0.9.10/include'
environment variable `LIBRARY_PATH' set to `/gnu/store/l86azr7r3p5631wj3kk329jl1y1mpjgy-bzip2-1.0.6/lib:/gnu/store/lbip9isk25isymvnb159l115xnacb5j8-xz-5.2.4/lib:/gnu/store/6jdshxwdrad9mlhcqc9k0g24yw45rqf1-file-5.33/lib:/gnu/store/2z9hsww76aag37p40671l9niq5pvvasx-gawk-5.0.1/lib:/gnu/store/3hkdiscs4910r75njbrql10znxxn7chk-binutils-2.32/lib:/gnu/store/ahqgl4h89xqj695lgqvsaf6zh2nhy4pj-glibc-2.29/lib:/gnu/store/qky1x5bb2jygy58bn6y95ygfsmpakf52-glibc-2.29-static/lib:/gnu/store/mmqp1xqffn6qw6v88i627c2bpbq36fcy-glibc-utf8-locales-2.29/lib:/gnu/store/1mkkv2caiqbdbbd256c4dirfi4kwsacv-guile-2.2.6/lib:/gnu/store/lwz8fygpmmsw6h8vrllr56p7ssi5qx33-libtasn1-4.14/lib:/gnu/store/7gabmw9siqrz79slpi1f8i90v3w1638x-libidn2-2.2.0/lib:/gnu/store/lvnybsygfd6gya6xbdv48g72lb0iqqzx-nettle-3.5.1/lib:/gnu/store/qx7p7hi
 q90mi7r78hcr9cyskccy2j4bg-zlib-1.2.11/lib:/gnu/store/y7qk8raalgvdnxcglvxa320cfxrjk1x6-gmp-6.1.2/lib:/gnu/store/3xs3dnc28p9fi8in7hkfcdx20incrdvq-libgc-7.6.12/lib:/gnu/store/zasz52va238yyaq68r
 jm8ljwl4ikij4p-libltdl-2.4.6/lib:/gnu/store/nsikjxykcaqa0zjpfmkqd569bngbv5nl-libunistring-0.9.10/lib'
environment variable `GUIX_LOCPATH' set to `/gnu/store/mmqp1xqffn6qw6v88i627c2bpbq36fcy-glibc-utf8-locales-2.29/lib/locale'
environment variable `GUILE_LOAD_PATH' unset
environment variable `GUILE_LOAD_COMPILED_PATH' unset
phase `set-paths' succeeded after 0.0 seconds
starting phase `install-locale'
using 'en_US.utf8' locale for category "LC_ALL"
phase `install-locale' succeeded after 0.0 seconds
starting phase `unpack'
gnutls-3.6.7/
gnutls-3.6.7/ABOUT-NLS
gnutls-3.6.7/AUTHORS
gnutls-3.6.7/CONTRIBUTING.md
gnutls-3.6.7/ChangeLog
gnutls-3.6.7/GNUmakefile
gnutls-3.6.7/INSTALL
gnutls-3.6.7/INSTALL.md
gnutls-3.6.7/LICENSE
gnutls-3.6.7/Makefile.am
gnutls-3.6.7/Makefile.in
gnutls-3.6.7/NEWS
gnutls-3.6.7/README.md
gnutls-3.6.7/THANKS
gnutls-3.6.7/aclocal.m4
gnutls-3.6.7/aminclude_static.am
gnutls-3.6.7/build-aux/
gnutls-3.6.7/build-aux/ar-lib
gnutls-3.6.7/build-aux/compile
gnutls-3.6.7/build-aux/config.guess
gnutls-3.6.7/build-aux/config.rpath
gnutls-3.6.7/build-aux/config.sub
gnutls-3.6.7/build-aux/depcomp
gnutls-3.6.7/build-aux/gendocs.sh
gnutls-3.6.7/build-aux/install-sh
gnutls-3.6.7/build-aux/ltmain.sh
gnutls-3.6.7/build-aux/mdate-sh
gnutls-3.6.7/build-aux/missing
gnutls-3.6.7/build-aux/pmccabe.css
gnutls-3.6.7/build-aux/pmccabe2html
gnutls-3.6.7/build-aux/test-driver
gnutls-3.6.7/build-aux/texinfo.tex
gnutls-3.6.7/build-aux/useless-if-before-free
gnutls-3.6.7/build-aux/vc-list-files
gnutls-3.6.7/build-aux/ylwrap
gnutls-3.6.7/cfg.mk
gnutls-3.6.7/config.h.in
gnutls-3.6.7/configure
gnutls-3.6.7/configure.ac
gnutls-3.6.7/doc/
gnutls-3.6.7/doc/COPYING
gnutls-3.6.7/doc/COPYING.LESSER
gnutls-3.6.7/doc/Makefile.am
gnutls-3.6.7/doc/Makefile.in
gnutls-3.6.7/doc/TODO
gnutls-3.6.7/doc/abstract-api.texi
gnutls-3.6.7/doc/alert-printlist.c
gnutls-3.6.7/doc/alerts.texi
gnutls-3.6.7/doc/algorithms.texi
gnutls-3.6.7/doc/certtool.cfg
gnutls-3.6.7/doc/cha-auth.texi
gnutls-3.6.7/doc/cha-bib.texi
gnutls-3.6.7/doc/cha-cert-auth.texi
gnutls-3.6.7/doc/cha-cert-auth2.texi
gnutls-3.6.7/doc/cha-ciphersuites.texi
gnutls-3.6.7/doc/cha-copying.texi
gnutls-3.6.7/doc/cha-crypto.texi
gnutls-3.6.7/doc/cha-errors.texi
gnutls-3.6.7/doc/cha-functions.texi
gnutls-3.6.7/doc/cha-gtls-app.texi
gnutls-3.6.7/doc/cha-gtls-examples.texi
gnutls-3.6.7/doc/cha-internals.texi
gnutls-3.6.7/doc/cha-intro-tls.texi
gnutls-3.6.7/doc/cha-library.texi
gnutls-3.6.7/doc/cha-preface.texi
gnutls-3.6.7/doc/cha-programs.texi
gnutls-3.6.7/doc/cha-shared-key.texi
gnutls-3.6.7/doc/cha-support.texi
gnutls-3.6.7/doc/cha-tokens.texi
gnutls-3.6.7/doc/cha-upgrade.texi
gnutls-3.6.7/doc/common.c
gnutls-3.6.7/doc/common.h
gnutls-3.6.7/doc/compat-api.texi
gnutls-3.6.7/doc/core.c.texi
gnutls-3.6.7/doc/credentials/
gnutls-3.6.7/doc/credentials/Makefile.am
gnutls-3.6.7/doc/credentials/Makefile.in
gnutls-3.6.7/doc/credentials/ca.tmpl
gnutls-3.6.7/doc/credentials/client.tmpl
gnutls-3.6.7/doc/credentials/gnutls-http-serv
gnutls-3.6.7/doc/credentials/params.pem
gnutls-3.6.7/doc/credentials/proxy.tmpl
gnutls-3.6.7/doc/credentials/psk-passwd.txt
gnutls-3.6.7/doc/credentials/server.tmpl
gnutls-3.6.7/doc/credentials/srp/
gnutls-3.6.7/doc/credentials/srp/Makefile.am
gnutls-3.6.7/doc/credentials/srp/Makefile.in
gnutls-3.6.7/doc/credentials/srp/tpasswd
gnutls-3.6.7/doc/credentials/srp/tpasswd.conf
gnutls-3.6.7/doc/credentials/srp-passwd.txt
gnutls-3.6.7/doc/credentials/srp-tpasswd.conf
gnutls-3.6.7/doc/credentials/x509/
gnutls-3.6.7/doc/credentials/x509/Makefile.am
gnutls-3.6.7/doc/credentials/x509/Makefile.in
gnutls-3.6.7/doc/credentials/x509/ca-key.pem
gnutls-3.6.7/doc/credentials/x509/ca.pem
gnutls-3.6.7/doc/credentials/x509/cert-dsa.pem
gnutls-3.6.7/doc/credentials/x509/cert-ecc-sign.pem
gnutls-3.6.7/doc/credentials/x509/cert-ecc.pem
gnutls-3.6.7/doc/credentials/x509/cert-gost01.pem
gnutls-3.6.7/doc/credentials/x509/cert-gost12.pem
gnutls-3.6.7/doc/credentials/x509/cert-rsa-pss.pem
gnutls-3.6.7/doc/credentials/x509/cert-rsa.pem
gnutls-3.6.7/doc/credentials/x509/clicert-dsa.pem
gnutls-3.6.7/doc/credentials/x509/clicert.pem
gnutls-3.6.7/doc/credentials/x509/clikey-dsa.pem
gnutls-3.6.7/doc/credentials/x509/clikey.pem
gnutls-3.6.7/doc/credentials/x509/example.com-cert.pem
gnutls-3.6.7/doc/credentials/x509/example.com-key.pem
gnutls-3.6.7/doc/credentials/x509/key-dsa.pem
gnutls-3.6.7/doc/credentials/x509/key-ecc.pem
gnutls-3.6.7/doc/credentials/x509/key-gost01.pem
gnutls-3.6.7/doc/credentials/x509/key-gost12.pem
gnutls-3.6.7/doc/credentials/x509/key-rsa-pss.pem
gnutls-3.6.7/doc/credentials/x509/key-rsa.pem
gnutls-3.6.7/doc/crypto-api.texi
gnutls-3.6.7/doc/dane-api.texi
gnutls-3.6.7/doc/doc.mk
gnutls-3.6.7/doc/doxygen/
gnutls-3.6.7/doc/doxygen/Doxyfile.in
gnutls-3.6.7/doc/doxygen/Doxyfile.orig
gnutls-3.6.7/doc/dtls-api.texi
gnutls-3.6.7/doc/enums/
gnutls-3.6.7/doc/enums/dane_cert_type_t
gnutls-3.6.7/doc/enums/dane_cert_usage_t
gnutls-3.6.7/doc/enums/dane_match_type_t
gnutls-3.6.7/doc/enums/dane_query_status_t
gnutls-3.6.7/doc/enums/dane_state_flags_t
gnutls-3.6.7/doc/enums/dane_verify_flags_t
gnutls-3.6.7/doc/enums/dane_verify_status_t
gnutls-3.6.7/doc/enums/gnutls_abstract_export_flags_t
gnutls-3.6.7/doc/enums/gnutls_alert_description_t
gnutls-3.6.7/doc/enums/gnutls_alert_level_t
gnutls-3.6.7/doc/enums/gnutls_alpn_flags_t
gnutls-3.6.7/doc/enums/gnutls_certificate_flags
gnutls-3.6.7/doc/enums/gnutls_certificate_import_flags
gnutls-3.6.7/doc/enums/gnutls_certificate_print_formats_t
gnutls-3.6.7/doc/enums/gnutls_certificate_request_t
gnutls-3.6.7/doc/enums/gnutls_certificate_status_t
gnutls-3.6.7/doc/enums/gnutls_certificate_type_t
gnutls-3.6.7/doc/enums/gnutls_certificate_verification_profiles_t
gnutls-3.6.7/doc/enums/gnutls_certificate_verify_flags
gnutls-3.6.7/doc/enums/gnutls_channel_binding_t
gnutls-3.6.7/doc/enums/gnutls_cipher_algorithm_t
gnutls-3.6.7/doc/enums/gnutls_close_request_t
gnutls-3.6.7/doc/enums/gnutls_compression_method_t
gnutls-3.6.7/doc/enums/gnutls_credentials_type_t
gnutls-3.6.7/doc/enums/gnutls_ctype_target_t
gnutls-3.6.7/doc/enums/gnutls_digest_algorithm_t
gnutls-3.6.7/doc/enums/gnutls_ecc_curve_t
gnutls-3.6.7/doc/enums/gnutls_ext_flags_t
gnutls-3.6.7/doc/enums/gnutls_ext_parse_type_t
gnutls-3.6.7/doc/enums/gnutls_fips_mode_t
gnutls-3.6.7/doc/enums/gnutls_gost_paramset_t
gnutls-3.6.7/doc/enums/gnutls_group_t
gnutls-3.6.7/doc/enums/gnutls_handshake_description_t
gnutls-3.6.7/doc/enums/gnutls_init_flags_t
gnutls-3.6.7/doc/enums/gnutls_keygen_types_t
gnutls-3.6.7/doc/enums/gnutls_keyid_flags_t
gnutls-3.6.7/doc/enums/gnutls_kx_algorithm_t
gnutls-3.6.7/doc/enums/gnutls_mac_algorithm_t
gnutls-3.6.7/doc/enums/gnutls_ocsp_cert_status_t
gnutls-3.6.7/doc/enums/gnutls_ocsp_print_formats_t
gnutls-3.6.7/doc/enums/gnutls_ocsp_resp_status_t
gnutls-3.6.7/doc/enums/gnutls_ocsp_verify_reason_t
gnutls-3.6.7/doc/enums/gnutls_openpgp_crt_status_t
gnutls-3.6.7/doc/enums/gnutls_params_type_t
gnutls-3.6.7/doc/enums/gnutls_pin_flag_t
gnutls-3.6.7/doc/enums/gnutls_pk_algorithm_t
gnutls-3.6.7/doc/enums/gnutls_pkcs11_obj_flags
gnutls-3.6.7/doc/enums/gnutls_pkcs11_obj_info_t
gnutls-3.6.7/doc/enums/gnutls_pkcs11_obj_type_t
gnutls-3.6.7/doc/enums/gnutls_pkcs11_token_info_t
gnutls-3.6.7/doc/enums/gnutls_pkcs11_url_type_t
gnutls-3.6.7/doc/enums/gnutls_pkcs12_bag_type_t
gnutls-3.6.7/doc/enums/gnutls_pkcs7_sign_flags
gnutls-3.6.7/doc/enums/gnutls_pkcs_encrypt_flags_t
gnutls-3.6.7/doc/enums/gnutls_privkey_flags_t
gnutls-3.6.7/doc/enums/gnutls_privkey_type_t
gnutls-3.6.7/doc/enums/gnutls_protocol_t
gnutls-3.6.7/doc/enums/gnutls_psk_key_flags
gnutls-3.6.7/doc/enums/gnutls_pubkey_flags_t
gnutls-3.6.7/doc/enums/gnutls_rnd_level_t
gnutls-3.6.7/doc/enums/gnutls_sec_param_t
gnutls-3.6.7/doc/enums/gnutls_server_name_type_t
gnutls-3.6.7/doc/enums/gnutls_session_flags_t
gnutls-3.6.7/doc/enums/gnutls_sign_algorithm_t
gnutls-3.6.7/doc/enums/gnutls_srtp_profile_t
gnutls-3.6.7/doc/enums/gnutls_supplemental_data_format_type_t
gnutls-3.6.7/doc/enums/gnutls_tpmkey_fmt_t
gnutls-3.6.7/doc/enums/gnutls_vdata_types_t
gnutls-3.6.7/doc/enums/gnutls_x509_crl_reason_t
gnutls-3.6.7/doc/enums/gnutls_x509_crt_flags
gnutls-3.6.7/doc/enums/gnutls_x509_crt_fmt_t
gnutls-3.6.7/doc/enums/gnutls_x509_subject_alt_name_t
gnutls-3.6.7/doc/enums.texi
gnutls-3.6.7/doc/errcodes.c
gnutls-3.6.7/doc/error_codes.texi
gnutls-3.6.7/doc/examples/
gnutls-3.6.7/doc/examples/Makefile.am
gnutls-3.6.7/doc/examples/Makefile.in
gnutls-3.6.7/doc/examples/ex-alert.c
gnutls-3.6.7/doc/examples/ex-cert-select-pkcs11.c
gnutls-3.6.7/doc/examples/ex-cert-select.c
gnutls-3.6.7/doc/examples/ex-client-anon.c
gnutls-3.6.7/doc/examples/ex-client-dtls.c
gnutls-3.6.7/doc/examples/ex-client-psk.c
gnutls-3.6.7/doc/examples/ex-client-resume.c
gnutls-3.6.7/doc/examples/ex-client-srp.c
gnutls-3.6.7/doc/examples/ex-client-x509-3.1.c
gnutls-3.6.7/doc/examples/ex-client-x509.c
gnutls-3.6.7/doc/examples/ex-crq.c
gnutls-3.6.7/doc/examples/ex-cxx.cpp
gnutls-3.6.7/doc/examples/ex-ocsp-client.c
gnutls-3.6.7/doc/examples/ex-pkcs11-list.c
gnutls-3.6.7/doc/examples/ex-pkcs12.c
gnutls-3.6.7/doc/examples/ex-serv-anon.c
gnutls-3.6.7/doc/examples/ex-serv-dtls.c
gnutls-3.6.7/doc/examples/ex-serv-psk.c
gnutls-3.6.7/doc/examples/ex-serv-srp.c
gnutls-3.6.7/doc/examples/ex-serv-x509.c
gnutls-3.6.7/doc/examples/ex-session-info.c
gnutls-3.6.7/doc/examples/ex-verify-ssh.c
gnutls-3.6.7/doc/examples/ex-verify.c
gnutls-3.6.7/doc/examples/ex-x509-info.c
gnutls-3.6.7/doc/examples/examples.h
gnutls-3.6.7/doc/examples/print-ciphersuites.c
gnutls-3.6.7/doc/examples/tcp.c
gnutls-3.6.7/doc/examples/tlsproxy/
gnutls-3.6.7/doc/examples/tlsproxy/LICENSE
gnutls-3.6.7/doc/examples/tlsproxy/README.md
gnutls-3.6.7/doc/examples/tlsproxy/buffer.c
gnutls-3.6.7/doc/examples/tlsproxy/buffer.h
gnutls-3.6.7/doc/examples/tlsproxy/crypto-gnutls.c
gnutls-3.6.7/doc/examples/tlsproxy/crypto-gnutls.h
gnutls-3.6.7/doc/examples/tlsproxy/tlsproxy.c
gnutls-3.6.7/doc/examples/udp.c
gnutls-3.6.7/doc/examples/verify.c
gnutls-3.6.7/doc/extract-guile-c-doc.scm
gnutls-3.6.7/doc/fdl-1.3.texi
gnutls-3.6.7/doc/functions/
gnutls-3.6.7/doc/functions/dane_cert_type_name
gnutls-3.6.7/doc/functions/dane_cert_type_name.short
gnutls-3.6.7/doc/functions/dane_cert_usage_name
gnutls-3.6.7/doc/functions/dane_cert_usage_name.short
gnutls-3.6.7/doc/functions/dane_match_type_name
gnutls-3.6.7/doc/functions/dane_match_type_name.short
gnutls-3.6.7/doc/functions/dane_query_data
gnutls-3.6.7/doc/functions/dane_query_data.short
gnutls-3.6.7/doc/functions/dane_query_deinit
gnutls-3.6.7/doc/functions/dane_query_deinit.short
gnutls-3.6.7/doc/functions/dane_query_entries
gnutls-3.6.7/doc/functions/dane_query_entries.short
gnutls-3.6.7/doc/functions/dane_query_status
gnutls-3.6.7/doc/functions/dane_query_status.short
gnutls-3.6.7/doc/functions/dane_query_tlsa
gnutls-3.6.7/doc/functions/dane_query_tlsa.short
gnutls-3.6.7/doc/functions/dane_query_to_raw_tlsa
gnutls-3.6.7/doc/functions/dane_query_to_raw_tlsa.short
gnutls-3.6.7/doc/functions/dane_raw_tlsa
gnutls-3.6.7/doc/functions/dane_raw_tlsa.short
gnutls-3.6.7/doc/functions/dane_state_deinit
gnutls-3.6.7/doc/functions/dane_state_deinit.short
gnutls-3.6.7/doc/functions/dane_state_init
gnutls-3.6.7/doc/functions/dane_state_init.short
gnutls-3.6.7/doc/functions/dane_state_set_dlv_file
gnutls-3.6.7/doc/functions/dane_state_set_dlv_file.short
gnutls-3.6.7/doc/functions/dane_strerror
gnutls-3.6.7/doc/functions/dane_strerror.short
gnutls-3.6.7/doc/functions/dane_verification_status_print
gnutls-3.6.7/doc/functions/dane_verification_status_print.short
gnutls-3.6.7/doc/functions/dane_verify_crt
gnutls-3.6.7/doc/functions/dane_verify_crt.short
gnutls-3.6.7/doc/functions/dane_verify_crt_raw
gnutls-3.6.7/doc/functions/dane_verify_crt_raw.short
gnutls-3.6.7/doc/functions/dane_verify_session_crt
gnutls-3.6.7/doc/functions/dane_verify_session_crt.short
gnutls-3.6.7/doc/functions/gnutls_aead_cipher_decrypt
gnutls-3.6.7/doc/functions/gnutls_aead_cipher_decrypt.short
gnutls-3.6.7/doc/functions/gnutls_aead_cipher_deinit
gnutls-3.6.7/doc/functions/gnutls_aead_cipher_deinit.short
gnutls-3.6.7/doc/functions/gnutls_aead_cipher_encrypt
gnutls-3.6.7/doc/functions/gnutls_aead_cipher_encrypt.short
gnutls-3.6.7/doc/functions/gnutls_aead_cipher_encryptv
gnutls-3.6.7/doc/functions/gnutls_aead_cipher_encryptv.short
gnutls-3.6.7/doc/functions/gnutls_aead_cipher_init
gnutls-3.6.7/doc/functions/gnutls_aead_cipher_init.short
gnutls-3.6.7/doc/functions/gnutls_alert_get
gnutls-3.6.7/doc/functions/gnutls_alert_get.short
gnutls-3.6.7/doc/functions/gnutls_alert_get_name
gnutls-3.6.7/doc/functions/gnutls_alert_get_name.short
gnutls-3.6.7/doc/functions/gnutls_alert_get_strname
gnutls-3.6.7/doc/functions/gnutls_alert_get_strname.short
gnutls-3.6.7/doc/functions/gnutls_alert_send
gnutls-3.6.7/doc/functions/gnutls_alert_send.short
gnutls-3.6.7/doc/functions/gnutls_alert_send_appropriate
gnutls-3.6.7/doc/functions/gnutls_alert_send_appropriate.short
gnutls-3.6.7/doc/functions/gnutls_alpn_get_selected_protocol
gnutls-3.6.7/doc/functions/gnutls_alpn_get_selected_protocol.short
gnutls-3.6.7/doc/functions/gnutls_alpn_set_protocols
gnutls-3.6.7/doc/functions/gnutls_alpn_set_protocols.short
gnutls-3.6.7/doc/functions/gnutls_anon_allocate_client_credentials
gnutls-3.6.7/doc/functions/gnutls_anon_allocate_client_credentials.short
gnutls-3.6.7/doc/functions/gnutls_anon_allocate_server_credentials
gnutls-3.6.7/doc/functions/gnutls_anon_allocate_server_credentials.short
gnutls-3.6.7/doc/functions/gnutls_anon_free_client_credentials
gnutls-3.6.7/doc/functions/gnutls_anon_free_client_credentials.short
gnutls-3.6.7/doc/functions/gnutls_anon_free_server_credentials
gnutls-3.6.7/doc/functions/gnutls_anon_free_server_credentials.short
gnutls-3.6.7/doc/functions/gnutls_anon_set_params_function
gnutls-3.6.7/doc/functions/gnutls_anon_set_params_function.short
gnutls-3.6.7/doc/functions/gnutls_anon_set_server_dh_params
gnutls-3.6.7/doc/functions/gnutls_anon_set_server_dh_params.short
gnutls-3.6.7/doc/functions/gnutls_anon_set_server_known_dh_params
gnutls-3.6.7/doc/functions/gnutls_anon_set_server_known_dh_params.short
gnutls-3.6.7/doc/functions/gnutls_anon_set_server_params_function
gnutls-3.6.7/doc/functions/gnutls_anon_set_server_params_function.short
gnutls-3.6.7/doc/functions/gnutls_anti_replay_deinit
gnutls-3.6.7/doc/functions/gnutls_anti_replay_deinit.short
gnutls-3.6.7/doc/functions/gnutls_anti_replay_enable
gnutls-3.6.7/doc/functions/gnutls_anti_replay_enable.short
gnutls-3.6.7/doc/functions/gnutls_anti_replay_init
gnutls-3.6.7/doc/functions/gnutls_anti_replay_init.short
gnutls-3.6.7/doc/functions/gnutls_anti_replay_set_add_function
gnutls-3.6.7/doc/functions/gnutls_anti_replay_set_add_function.short
gnutls-3.6.7/doc/functions/gnutls_anti_replay_set_ptr
gnutls-3.6.7/doc/functions/gnutls_anti_replay_set_ptr.short
gnutls-3.6.7/doc/functions/gnutls_anti_replay_set_window
gnutls-3.6.7/doc/functions/gnutls_anti_replay_set_window.short
gnutls-3.6.7/doc/functions/gnutls_auth_client_get_type
gnutls-3.6.7/doc/functions/gnutls_auth_client_get_type.short
gnutls-3.6.7/doc/functions/gnutls_auth_get_type
gnutls-3.6.7/doc/functions/gnutls_auth_get_type.short
gnutls-3.6.7/doc/functions/gnutls_auth_server_get_type
gnutls-3.6.7/doc/functions/gnutls_auth_server_get_type.short
gnutls-3.6.7/doc/functions/gnutls_base64_decode2
gnutls-3.6.7/doc/functions/gnutls_base64_decode2.short
gnutls-3.6.7/doc/functions/gnutls_base64_encode2
gnutls-3.6.7/doc/functions/gnutls_base64_encode2.short
gnutls-3.6.7/doc/functions/gnutls_buffer_append_data
gnutls-3.6.7/doc/functions/gnutls_buffer_append_data.short
gnutls-3.6.7/doc/functions/gnutls_bye
gnutls-3.6.7/doc/functions/gnutls_bye.short
gnutls-3.6.7/doc/functions/gnutls_certificate_activation_time_peers
gnutls-3.6.7/doc/functions/gnutls_certificate_activation_time_peers.short
gnutls-3.6.7/doc/functions/gnutls_certificate_allocate_credentials
gnutls-3.6.7/doc/functions/gnutls_certificate_allocate_credentials.short
gnutls-3.6.7/doc/functions/gnutls_certificate_client_get_request_status
gnutls-3.6.7/doc/functions/gnutls_certificate_client_get_request_status.short
gnutls-3.6.7/doc/functions/gnutls_certificate_expiration_time_peers
gnutls-3.6.7/doc/functions/gnutls_certificate_expiration_time_peers.short
gnutls-3.6.7/doc/functions/gnutls_certificate_free_ca_names
gnutls-3.6.7/doc/functions/gnutls_certificate_free_ca_names.short
gnutls-3.6.7/doc/functions/gnutls_certificate_free_cas
gnutls-3.6.7/doc/functions/gnutls_certificate_free_cas.short
gnutls-3.6.7/doc/functions/gnutls_certificate_free_credentials
gnutls-3.6.7/doc/functions/gnutls_certificate_free_credentials.short
gnutls-3.6.7/doc/functions/gnutls_certificate_free_crls
gnutls-3.6.7/doc/functions/gnutls_certificate_free_crls.short
gnutls-3.6.7/doc/functions/gnutls_certificate_free_keys
gnutls-3.6.7/doc/functions/gnutls_certificate_free_keys.short
gnutls-3.6.7/doc/functions/gnutls_certificate_get_crt_raw
gnutls-3.6.7/doc/functions/gnutls_certificate_get_crt_raw.short
gnutls-3.6.7/doc/functions/gnutls_certificate_get_issuer
gnutls-3.6.7/doc/functions/gnutls_certificate_get_issuer.short
gnutls-3.6.7/doc/functions/gnutls_certificate_get_ocsp_expiration
gnutls-3.6.7/doc/functions/gnutls_certificate_get_ocsp_expiration.short
gnutls-3.6.7/doc/functions/gnutls_certificate_get_ours
gnutls-3.6.7/doc/functions/gnutls_certificate_get_ours.short
gnutls-3.6.7/doc/functions/gnutls_certificate_get_peers
gnutls-3.6.7/doc/functions/gnutls_certificate_get_peers.short
gnutls-3.6.7/doc/functions/gnutls_certificate_get_peers_subkey_id
gnutls-3.6.7/doc/functions/gnutls_certificate_get_peers_subkey_id.short
gnutls-3.6.7/doc/functions/gnutls_certificate_get_trust_list
gnutls-3.6.7/doc/functions/gnutls_certificate_get_trust_list.short
gnutls-3.6.7/doc/functions/gnutls_certificate_get_verify_flags
gnutls-3.6.7/doc/functions/gnutls_certificate_get_verify_flags.short
gnutls-3.6.7/doc/functions/gnutls_certificate_get_x509_crt
gnutls-3.6.7/doc/functions/gnutls_certificate_get_x509_crt.short
gnutls-3.6.7/doc/functions/gnutls_certificate_get_x509_key
gnutls-3.6.7/doc/functions/gnutls_certificate_get_x509_key.short
gnutls-3.6.7/doc/functions/gnutls_certificate_send_x509_rdn_sequence
gnutls-3.6.7/doc/functions/gnutls_certificate_send_x509_rdn_sequence.short
gnutls-3.6.7/doc/functions/gnutls_certificate_server_set_request
gnutls-3.6.7/doc/functions/gnutls_certificate_server_set_request.short
gnutls-3.6.7/doc/functions/gnutls_certificate_set_dh_params
gnutls-3.6.7/doc/functions/gnutls_certificate_set_dh_params.short
gnutls-3.6.7/doc/functions/gnutls_certificate_set_flags
gnutls-3.6.7/doc/functions/gnutls_certificate_set_flags.short
gnutls-3.6.7/doc/functions/gnutls_certificate_set_key
gnutls-3.6.7/doc/functions/gnutls_certificate_set_key.short
gnutls-3.6.7/doc/functions/gnutls_certificate_set_known_dh_params
gnutls-3.6.7/doc/functions/gnutls_certificate_set_known_dh_params.short
gnutls-3.6.7/doc/functions/gnutls_certificate_set_ocsp_status_request_file
gnutls-3.6.7/doc/functions/gnutls_certificate_set_ocsp_status_request_file.short
gnutls-3.6.7/doc/functions/gnutls_certificate_set_ocsp_status_request_file2
gnutls-3.6.7/doc/functions/gnutls_certificate_set_ocsp_status_request_file2.short
gnutls-3.6.7/doc/functions/gnutls_certificate_set_ocsp_status_request_function
gnutls-3.6.7/doc/functions/gnutls_certificate_set_ocsp_status_request_function.short
gnutls-3.6.7/doc/functions/gnutls_certificate_set_ocsp_status_request_function2
gnutls-3.6.7/doc/functions/gnutls_certificate_set_ocsp_status_request_function2.short
gnutls-3.6.7/doc/functions/gnutls_certificate_set_ocsp_status_request_mem
gnutls-3.6.7/doc/functions/gnutls_certificate_set_ocsp_status_request_mem.short
gnutls-3.6.7/doc/functions/gnutls_certificate_set_params_function
gnutls-3.6.7/doc/functions/gnutls_certificate_set_params_function.short
gnutls-3.6.7/doc/functions/gnutls_certificate_set_pin_function
gnutls-3.6.7/doc/functions/gnutls_certificate_set_pin_function.short
gnutls-3.6.7/doc/functions/gnutls_certificate_set_rawpk_key_file
gnutls-3.6.7/doc/functions/gnutls_certificate_set_rawpk_key_file.short
gnutls-3.6.7/doc/functions/gnutls_certificate_set_rawpk_key_mem
gnutls-3.6.7/doc/functions/gnutls_certificate_set_rawpk_key_mem.short
gnutls-3.6.7/doc/functions/gnutls_certificate_set_retrieve_function
gnutls-3.6.7/doc/functions/gnutls_certificate_set_retrieve_function.short
gnutls-3.6.7/doc/functions/gnutls_certificate_set_retrieve_function2
gnutls-3.6.7/doc/functions/gnutls_certificate_set_retrieve_function2.short
gnutls-3.6.7/doc/functions/gnutls_certificate_set_retrieve_function3
gnutls-3.6.7/doc/functions/gnutls_certificate_set_retrieve_function3.short
gnutls-3.6.7/doc/functions/gnutls_certificate_set_trust_list
gnutls-3.6.7/doc/functions/gnutls_certificate_set_trust_list.short
gnutls-3.6.7/doc/functions/gnutls_certificate_set_verify_flags
gnutls-3.6.7/doc/functions/gnutls_certificate_set_verify_flags.short
gnutls-3.6.7/doc/functions/gnutls_certificate_set_verify_function
gnutls-3.6.7/doc/functions/gnutls_certificate_set_verify_function.short
gnutls-3.6.7/doc/functions/gnutls_certificate_set_verify_limits
gnutls-3.6.7/doc/functions/gnutls_certificate_set_verify_limits.short
gnutls-3.6.7/doc/functions/gnutls_certificate_set_x509_crl
gnutls-3.6.7/doc/functions/gnutls_certificate_set_x509_crl.short
gnutls-3.6.7/doc/functions/gnutls_certificate_set_x509_crl_file
gnutls-3.6.7/doc/functions/gnutls_certificate_set_x509_crl_file.short
gnutls-3.6.7/doc/functions/gnutls_certificate_set_x509_crl_mem
gnutls-3.6.7/doc/functions/gnutls_certificate_set_x509_crl_mem.short
gnutls-3.6.7/doc/functions/gnutls_certificate_set_x509_key
gnutls-3.6.7/doc/functions/gnutls_certificate_set_x509_key.short
gnutls-3.6.7/doc/functions/gnutls_certificate_set_x509_key_file
gnutls-3.6.7/doc/functions/gnutls_certificate_set_x509_key_file.short
gnutls-3.6.7/doc/functions/gnutls_certificate_set_x509_key_file2
gnutls-3.6.7/doc/functions/gnutls_certificate_set_x509_key_file2.short
gnutls-3.6.7/doc/functions/gnutls_certificate_set_x509_key_mem
gnutls-3.6.7/doc/functions/gnutls_certificate_set_x509_key_mem.short
gnutls-3.6.7/doc/functions/gnutls_certificate_set_x509_key_mem2
gnutls-3.6.7/doc/functions/gnutls_certificate_set_x509_key_mem2.short
gnutls-3.6.7/doc/functions/gnutls_certificate_set_x509_simple_pkcs12_file
gnutls-3.6.7/doc/functions/gnutls_certificate_set_x509_simple_pkcs12_file.short
gnutls-3.6.7/doc/functions/gnutls_certificate_set_x509_simple_pkcs12_mem
gnutls-3.6.7/doc/functions/gnutls_certificate_set_x509_simple_pkcs12_mem.short
gnutls-3.6.7/doc/functions/gnutls_certificate_set_x509_system_trust
gnutls-3.6.7/doc/functions/gnutls_certificate_set_x509_system_trust.short
gnutls-3.6.7/doc/functions/gnutls_certificate_set_x509_trust
gnutls-3.6.7/doc/functions/gnutls_certificate_set_x509_trust.short
gnutls-3.6.7/doc/functions/gnutls_certificate_set_x509_trust_dir
gnutls-3.6.7/doc/functions/gnutls_certificate_set_x509_trust_dir.short
gnutls-3.6.7/doc/functions/gnutls_certificate_set_x509_trust_file
gnutls-3.6.7/doc/functions/gnutls_certificate_set_x509_trust_file.short
gnutls-3.6.7/doc/functions/gnutls_certificate_set_x509_trust_mem
gnutls-3.6.7/doc/functions/gnutls_certificate_set_x509_trust_mem.short
gnutls-3.6.7/doc/functions/gnutls_certificate_type_get
gnutls-3.6.7/doc/functions/gnutls_certificate_type_get.short
gnutls-3.6.7/doc/functions/gnutls_certificate_type_get2
gnutls-3.6.7/doc/functions/gnutls_certificate_type_get2.short
gnutls-3.6.7/doc/functions/gnutls_certificate_type_get_id
gnutls-3.6.7/doc/functions/gnutls_certificate_type_get_id.short
gnutls-3.6.7/doc/functions/gnutls_certificate_type_get_name
gnutls-3.6.7/doc/functions/gnutls_certificate_type_get_name.short
gnutls-3.6.7/doc/functions/gnutls_certificate_type_list
gnutls-3.6.7/doc/functions/gnutls_certificate_type_list.short
gnutls-3.6.7/doc/functions/gnutls_certificate_verification_status_print
gnutls-3.6.7/doc/functions/gnutls_certificate_verification_status_print.short
gnutls-3.6.7/doc/functions/gnutls_certificate_verify_peers
gnutls-3.6.7/doc/functions/gnutls_certificate_verify_peers.short
gnutls-3.6.7/doc/functions/gnutls_certificate_verify_peers2
gnutls-3.6.7/doc/functions/gnutls_certificate_verify_peers2.short
gnutls-3.6.7/doc/functions/gnutls_certificate_verify_peers3
gnutls-3.6.7/doc/functions/gnutls_certificate_verify_peers3.short
gnutls-3.6.7/doc/functions/gnutls_check_version
gnutls-3.6.7/doc/functions/gnutls_check_version.short
gnutls-3.6.7/doc/functions/gnutls_cipher_add_auth
gnutls-3.6.7/doc/functions/gnutls_cipher_add_auth.short
gnutls-3.6.7/doc/functions/gnutls_cipher_decrypt
gnutls-3.6.7/doc/functions/gnutls_cipher_decrypt.short
gnutls-3.6.7/doc/functions/gnutls_cipher_decrypt2
gnutls-3.6.7/doc/functions/gnutls_cipher_decrypt2.short
gnutls-3.6.7/doc/functions/gnutls_cipher_deinit
gnutls-3.6.7/doc/functions/gnutls_cipher_deinit.short
gnutls-3.6.7/doc/functions/gnutls_cipher_encrypt
gnutls-3.6.7/doc/functions/gnutls_cipher_encrypt.short
gnutls-3.6.7/doc/functions/gnutls_cipher_encrypt2
gnutls-3.6.7/doc/functions/gnutls_cipher_encrypt2.short
gnutls-3.6.7/doc/functions/gnutls_cipher_get
gnutls-3.6.7/doc/functions/gnutls_cipher_get.short
gnutls-3.6.7/doc/functions/gnutls_cipher_get_block_size
gnutls-3.6.7/doc/functions/gnutls_cipher_get_block_size.short
gnutls-3.6.7/doc/functions/gnutls_cipher_get_id
gnutls-3.6.7/doc/functions/gnutls_cipher_get_id.short
gnutls-3.6.7/doc/functions/gnutls_cipher_get_iv_size
gnutls-3.6.7/doc/functions/gnutls_cipher_get_iv_size.short
gnutls-3.6.7/doc/functions/gnutls_cipher_get_key_size
gnutls-3.6.7/doc/functions/gnutls_cipher_get_key_size.short
gnutls-3.6.7/doc/functions/gnutls_cipher_get_name
gnutls-3.6.7/doc/functions/gnutls_cipher_get_name.short
gnutls-3.6.7/doc/functions/gnutls_cipher_get_tag_size
gnutls-3.6.7/doc/functions/gnutls_cipher_get_tag_size.short
gnutls-3.6.7/doc/functions/gnutls_cipher_init
gnutls-3.6.7/doc/functions/gnutls_cipher_init.short
gnutls-3.6.7/doc/functions/gnutls_cipher_list
gnutls-3.6.7/doc/functions/gnutls_cipher_list.short
gnutls-3.6.7/doc/functions/gnutls_cipher_set_iv
gnutls-3.6.7/doc/functions/gnutls_cipher_set_iv.short
gnutls-3.6.7/doc/functions/gnutls_cipher_suite_get_name
gnutls-3.6.7/doc/functions/gnutls_cipher_suite_get_name.short
gnutls-3.6.7/doc/functions/gnutls_cipher_suite_info
gnutls-3.6.7/doc/functions/gnutls_cipher_suite_info.short
gnutls-3.6.7/doc/functions/gnutls_cipher_tag
gnutls-3.6.7/doc/functions/gnutls_cipher_tag.short
gnutls-3.6.7/doc/functions/gnutls_compression_get
gnutls-3.6.7/doc/functions/gnutls_compression_get.short
gnutls-3.6.7/doc/functions/gnutls_compression_get_id
gnutls-3.6.7/doc/functions/gnutls_compression_get_id.short
gnutls-3.6.7/doc/functions/gnutls_compression_get_name
gnutls-3.6.7/doc/functions/gnutls_compression_get_name.short
gnutls-3.6.7/doc/functions/gnutls_compression_list
gnutls-3.6.7/doc/functions/gnutls_compression_list.short
gnutls-3.6.7/doc/functions/gnutls_credentials_clear
gnutls-3.6.7/doc/functions/gnutls_credentials_clear.short
gnutls-3.6.7/doc/functions/gnutls_credentials_get
gnutls-3.6.7/doc/functions/gnutls_credentials_get.short
gnutls-3.6.7/doc/functions/gnutls_credentials_set
gnutls-3.6.7/doc/functions/gnutls_credentials_set.short
gnutls-3.6.7/doc/functions/gnutls_crypto_register_aead_cipher
gnutls-3.6.7/doc/functions/gnutls_crypto_register_aead_cipher.short
gnutls-3.6.7/doc/functions/gnutls_crypto_register_cipher
gnutls-3.6.7/doc/functions/gnutls_crypto_register_cipher.short
gnutls-3.6.7/doc/functions/gnutls_crypto_register_digest
gnutls-3.6.7/doc/functions/gnutls_crypto_register_digest.short
gnutls-3.6.7/doc/functions/gnutls_crypto_register_mac
gnutls-3.6.7/doc/functions/gnutls_crypto_register_mac.short
gnutls-3.6.7/doc/functions/gnutls_db_check_entry
gnutls-3.6.7/doc/functions/gnutls_db_check_entry.short
gnutls-3.6.7/doc/functions/gnutls_db_check_entry_expire_time
gnutls-3.6.7/doc/functions/gnutls_db_check_entry_expire_time.short
gnutls-3.6.7/doc/functions/gnutls_db_check_entry_time
gnutls-3.6.7/doc/functions/gnutls_db_check_entry_time.short
gnutls-3.6.7/doc/functions/gnutls_db_get_default_cache_expiration
gnutls-3.6.7/doc/functions/gnutls_db_get_default_cache_expiration.short
gnutls-3.6.7/doc/functions/gnutls_db_get_ptr
gnutls-3.6.7/doc/functions/gnutls_db_get_ptr.short
gnutls-3.6.7/doc/functions/gnutls_db_remove_session
gnutls-3.6.7/doc/functions/gnutls_db_remove_session.short
gnutls-3.6.7/doc/functions/gnutls_db_set_cache_expiration
gnutls-3.6.7/doc/functions/gnutls_db_set_cache_expiration.short
gnutls-3.6.7/doc/functions/gnutls_db_set_ptr
gnutls-3.6.7/doc/functions/gnutls_db_set_ptr.short
gnutls-3.6.7/doc/functions/gnutls_db_set_remove_function
gnutls-3.6.7/doc/functions/gnutls_db_set_remove_function.short
gnutls-3.6.7/doc/functions/gnutls_db_set_retrieve_function
gnutls-3.6.7/doc/functions/gnutls_db_set_retrieve_function.short
gnutls-3.6.7/doc/functions/gnutls_db_set_store_function
gnutls-3.6.7/doc/functions/gnutls_db_set_store_function.short
gnutls-3.6.7/doc/functions/gnutls_decode_ber_digest_info
gnutls-3.6.7/doc/functions/gnutls_decode_ber_digest_info.short
gnutls-3.6.7/doc/functions/gnutls_decode_gost_rs_value
gnutls-3.6.7/doc/functions/gnutls_decode_gost_rs_value.short
gnutls-3.6.7/doc/functions/gnutls_decode_rs_value
gnutls-3.6.7/doc/functions/gnutls_decode_rs_value.short
gnutls-3.6.7/doc/functions/gnutls_deinit
gnutls-3.6.7/doc/functions/gnutls_deinit.short
gnutls-3.6.7/doc/functions/gnutls_dh_get_group
gnutls-3.6.7/doc/functions/gnutls_dh_get_group.short
gnutls-3.6.7/doc/functions/gnutls_dh_get_peers_public_bits
gnutls-3.6.7/doc/functions/gnutls_dh_get_peers_public_bits.short
gnutls-3.6.7/doc/functions/gnutls_dh_get_prime_bits
gnutls-3.6.7/doc/functions/gnutls_dh_get_prime_bits.short
gnutls-3.6.7/doc/functions/gnutls_dh_get_pubkey
gnutls-3.6.7/doc/functions/gnutls_dh_get_pubkey.short
gnutls-3.6.7/doc/functions/gnutls_dh_get_secret_bits
gnutls-3.6.7/doc/functions/gnutls_dh_get_secret_bits.short
gnutls-3.6.7/doc/functions/gnutls_dh_params_cpy
gnutls-3.6.7/doc/functions/gnutls_dh_params_cpy.short
gnutls-3.6.7/doc/functions/gnutls_dh_params_deinit
gnutls-3.6.7/doc/functions/gnutls_dh_params_deinit.short
gnutls-3.6.7/doc/functions/gnutls_dh_params_export2_pkcs3
gnutls-3.6.7/doc/functions/gnutls_dh_params_export2_pkcs3.short
gnutls-3.6.7/doc/functions/gnutls_dh_params_export_pkcs3
gnutls-3.6.7/doc/functions/gnutls_dh_params_export_pkcs3.short
gnutls-3.6.7/doc/functions/gnutls_dh_params_export_raw
gnutls-3.6.7/doc/functions/gnutls_dh_params_export_raw.short
gnutls-3.6.7/doc/functions/gnutls_dh_params_generate2
gnutls-3.6.7/doc/functions/gnutls_dh_params_generate2.short
gnutls-3.6.7/doc/functions/gnutls_dh_params_import_dsa
gnutls-3.6.7/doc/functions/gnutls_dh_params_import_dsa.short
gnutls-3.6.7/doc/functions/gnutls_dh_params_import_pkcs3
gnutls-3.6.7/doc/functions/gnutls_dh_params_import_pkcs3.short
gnutls-3.6.7/doc/functions/gnutls_dh_params_import_raw
gnutls-3.6.7/doc/functions/gnutls_dh_params_import_raw.short
gnutls-3.6.7/doc/functions/gnutls_dh_params_import_raw2
gnutls-3.6.7/doc/functions/gnutls_dh_params_import_raw2.short
gnutls-3.6.7/doc/functions/gnutls_dh_params_init
gnutls-3.6.7/doc/functions/gnutls_dh_params_init.short
gnutls-3.6.7/doc/functions/gnutls_dh_set_prime_bits
gnutls-3.6.7/doc/functions/gnutls_dh_set_prime_bits.short
gnutls-3.6.7/doc/functions/gnutls_digest_get_id
gnutls-3.6.7/doc/functions/gnutls_digest_get_id.short
gnutls-3.6.7/doc/functions/gnutls_digest_get_name
gnutls-3.6.7/doc/functions/gnutls_digest_get_name.short
gnutls-3.6.7/doc/functions/gnutls_digest_get_oid
gnutls-3.6.7/doc/functions/gnutls_digest_get_oid.short
gnutls-3.6.7/doc/functions/gnutls_digest_list
gnutls-3.6.7/doc/functions/gnutls_digest_list.short
gnutls-3.6.7/doc/functions/gnutls_dtls_cookie_send
gnutls-3.6.7/doc/functions/gnutls_dtls_cookie_send.short
gnutls-3.6.7/doc/functions/gnutls_dtls_cookie_verify
gnutls-3.6.7/doc/functions/gnutls_dtls_cookie_verify.short
gnutls-3.6.7/doc/functions/gnutls_dtls_get_data_mtu
gnutls-3.6.7/doc/functions/gnutls_dtls_get_data_mtu.short
gnutls-3.6.7/doc/functions/gnutls_dtls_get_mtu
gnutls-3.6.7/doc/functions/gnutls_dtls_get_mtu.short
gnutls-3.6.7/doc/functions/gnutls_dtls_get_timeout
gnutls-3.6.7/doc/functions/gnutls_dtls_get_timeout.short
gnutls-3.6.7/doc/functions/gnutls_dtls_prestate_set
gnutls-3.6.7/doc/functions/gnutls_dtls_prestate_set.short
gnutls-3.6.7/doc/functions/gnutls_dtls_set_data_mtu
gnutls-3.6.7/doc/functions/gnutls_dtls_set_data_mtu.short
gnutls-3.6.7/doc/functions/gnutls_dtls_set_mtu
gnutls-3.6.7/doc/functions/gnutls_dtls_set_mtu.short
gnutls-3.6.7/doc/functions/gnutls_dtls_set_timeouts
gnutls-3.6.7/doc/functions/gnutls_dtls_set_timeouts.short
gnutls-3.6.7/doc/functions/gnutls_ecc_curve_get
gnutls-3.6.7/doc/functions/gnutls_ecc_curve_get.short
gnutls-3.6.7/doc/functions/gnutls_ecc_curve_get_id
gnutls-3.6.7/doc/functions/gnutls_ecc_curve_get_id.short
gnutls-3.6.7/doc/functions/gnutls_ecc_curve_get_name
gnutls-3.6.7/doc/functions/gnutls_ecc_curve_get_name.short
gnutls-3.6.7/doc/functions/gnutls_ecc_curve_get_oid
gnutls-3.6.7/doc/functions/gnutls_ecc_curve_get_oid.short
gnutls-3.6.7/doc/functions/gnutls_ecc_curve_get_pk
gnutls-3.6.7/doc/functions/gnutls_ecc_curve_get_pk.short
gnutls-3.6.7/doc/functions/gnutls_ecc_curve_get_size
gnutls-3.6.7/doc/functions/gnutls_ecc_curve_get_size.short
gnutls-3.6.7/doc/functions/gnutls_ecc_curve_list
gnutls-3.6.7/doc/functions/gnutls_ecc_curve_list.short
gnutls-3.6.7/doc/functions/gnutls_encode_ber_digest_info
gnutls-3.6.7/doc/functions/gnutls_encode_ber_digest_info.short
gnutls-3.6.7/doc/functions/gnutls_encode_gost_rs_value
gnutls-3.6.7/doc/functions/gnutls_encode_gost_rs_value.short
gnutls-3.6.7/doc/functions/gnutls_encode_rs_value
gnutls-3.6.7/doc/functions/gnutls_encode_rs_value.short
gnutls-3.6.7/doc/functions/gnutls_error_is_fatal
gnutls-3.6.7/doc/functions/gnutls_error_is_fatal.short
gnutls-3.6.7/doc/functions/gnutls_error_to_alert
gnutls-3.6.7/doc/functions/gnutls_error_to_alert.short
gnutls-3.6.7/doc/functions/gnutls_est_record_overhead_size
gnutls-3.6.7/doc/functions/gnutls_est_record_overhead_size.short
gnutls-3.6.7/doc/functions/gnutls_ext_get_current_msg
gnutls-3.6.7/doc/functions/gnutls_ext_get_current_msg.short
gnutls-3.6.7/doc/functions/gnutls_ext_get_data
gnutls-3.6.7/doc/functions/gnutls_ext_get_data.short
gnutls-3.6.7/doc/functions/gnutls_ext_get_name
gnutls-3.6.7/doc/functions/gnutls_ext_get_name.short
gnutls-3.6.7/doc/functions/gnutls_ext_raw_parse
gnutls-3.6.7/doc/functions/gnutls_ext_raw_parse.short
gnutls-3.6.7/doc/functions/gnutls_ext_register
gnutls-3.6.7/doc/functions/gnutls_ext_register.short
gnutls-3.6.7/doc/functions/gnutls_ext_set_data
gnutls-3.6.7/doc/functions/gnutls_ext_set_data.short
gnutls-3.6.7/doc/functions/gnutls_fingerprint
gnutls-3.6.7/doc/functions/gnutls_fingerprint.short
gnutls-3.6.7/doc/functions/gnutls_fips140_mode_enabled
gnutls-3.6.7/doc/functions/gnutls_fips140_mode_enabled.short
gnutls-3.6.7/doc/functions/gnutls_fips140_set_mode
gnutls-3.6.7/doc/functions/gnutls_fips140_set_mode.short
gnutls-3.6.7/doc/functions/gnutls_global_deinit
gnutls-3.6.7/doc/functions/gnutls_global_deinit.short
gnutls-3.6.7/doc/functions/gnutls_global_init
gnutls-3.6.7/doc/functions/gnutls_global_init.short
gnutls-3.6.7/doc/functions/gnutls_global_set_audit_log_function
gnutls-3.6.7/doc/functions/gnutls_global_set_audit_log_function.short
gnutls-3.6.7/doc/functions/gnutls_global_set_log_function
gnutls-3.6.7/doc/functions/gnutls_global_set_log_function.short
gnutls-3.6.7/doc/functions/gnutls_global_set_log_level
gnutls-3.6.7/doc/functions/gnutls_global_set_log_level.short
gnutls-3.6.7/doc/functions/gnutls_global_set_mem_functions
gnutls-3.6.7/doc/functions/gnutls_global_set_mem_functions.short
gnutls-3.6.7/doc/functions/gnutls_global_set_mutex
gnutls-3.6.7/doc/functions/gnutls_global_set_mutex.short
gnutls-3.6.7/doc/functions/gnutls_global_set_time_function
gnutls-3.6.7/doc/functions/gnutls_global_set_time_function.short
gnutls-3.6.7/doc/functions/gnutls_gost_paramset_get_name
gnutls-3.6.7/doc/functions/gnutls_gost_paramset_get_name.short
gnutls-3.6.7/doc/functions/gnutls_gost_paramset_get_oid
gnutls-3.6.7/doc/functions/gnutls_gost_paramset_get_oid.short
gnutls-3.6.7/doc/functions/gnutls_group_get
gnutls-3.6.7/doc/functions/gnutls_group_get.short
gnutls-3.6.7/doc/functions/gnutls_group_get_id
gnutls-3.6.7/doc/functions/gnutls_group_get_id.short
gnutls-3.6.7/doc/functions/gnutls_group_get_name
gnutls-3.6.7/doc/functions/gnutls_group_get_name.short
gnutls-3.6.7/doc/functions/gnutls_group_list
gnutls-3.6.7/doc/functions/gnutls_group_list.short
gnutls-3.6.7/doc/functions/gnutls_handshake
gnutls-3.6.7/doc/functions/gnutls_handshake.short
gnutls-3.6.7/doc/functions/gnutls_handshake_description_get_name
gnutls-3.6.7/doc/functions/gnutls_handshake_description_get_name.short
gnutls-3.6.7/doc/functions/gnutls_handshake_get_last_in
gnutls-3.6.7/doc/functions/gnutls_handshake_get_last_in.short
gnutls-3.6.7/doc/functions/gnutls_handshake_get_last_out
gnutls-3.6.7/doc/functions/gnutls_handshake_get_last_out.short
gnutls-3.6.7/doc/functions/gnutls_handshake_set_hook_function
gnutls-3.6.7/doc/functions/gnutls_handshake_set_hook_function.short
gnutls-3.6.7/doc/functions/gnutls_handshake_set_max_packet_length
gnutls-3.6.7/doc/functions/gnutls_handshake_set_max_packet_length.short
gnutls-3.6.7/doc/functions/gnutls_handshake_set_post_client_hello_function
gnutls-3.6.7/doc/functions/gnutls_handshake_set_post_client_hello_function.short
gnutls-3.6.7/doc/functions/gnutls_handshake_set_private_extensions
gnutls-3.6.7/doc/functions/gnutls_handshake_set_private_extensions.short
gnutls-3.6.7/doc/functions/gnutls_handshake_set_random
gnutls-3.6.7/doc/functions/gnutls_handshake_set_random.short
gnutls-3.6.7/doc/functions/gnutls_handshake_set_timeout
gnutls-3.6.7/doc/functions/gnutls_handshake_set_timeout.short
gnutls-3.6.7/doc/functions/gnutls_hash
gnutls-3.6.7/doc/functions/gnutls_hash.short
gnutls-3.6.7/doc/functions/gnutls_hash_deinit
gnutls-3.6.7/doc/functions/gnutls_hash_deinit.short
gnutls-3.6.7/doc/functions/gnutls_hash_fast
gnutls-3.6.7/doc/functions/gnutls_hash_fast.short
gnutls-3.6.7/doc/functions/gnutls_hash_get_len
gnutls-3.6.7/doc/functions/gnutls_hash_get_len.short
gnutls-3.6.7/doc/functions/gnutls_hash_init
gnutls-3.6.7/doc/functions/gnutls_hash_init.short
gnutls-3.6.7/doc/functions/gnutls_hash_output
gnutls-3.6.7/doc/functions/gnutls_hash_output.short
gnutls-3.6.7/doc/functions/gnutls_heartbeat_allowed
gnutls-3.6.7/doc/functions/gnutls_heartbeat_allowed.short
gnutls-3.6.7/doc/functions/gnutls_heartbeat_enable
gnutls-3.6.7/doc/functions/gnutls_heartbeat_enable.short
gnutls-3.6.7/doc/functions/gnutls_heartbeat_get_timeout
gnutls-3.6.7/doc/functions/gnutls_heartbeat_get_timeout.short
gnutls-3.6.7/doc/functions/gnutls_heartbeat_ping
gnutls-3.6.7/doc/functions/gnutls_heartbeat_ping.short
gnutls-3.6.7/doc/functions/gnutls_heartbeat_pong
gnutls-3.6.7/doc/functions/gnutls_heartbeat_pong.short
gnutls-3.6.7/doc/functions/gnutls_heartbeat_set_timeouts
gnutls-3.6.7/doc/functions/gnutls_heartbeat_set_timeouts.short
gnutls-3.6.7/doc/functions/gnutls_hex2bin
gnutls-3.6.7/doc/functions/gnutls_hex2bin.short
gnutls-3.6.7/doc/functions/gnutls_hex_decode
gnutls-3.6.7/doc/functions/gnutls_hex_decode.short
gnutls-3.6.7/doc/functions/gnutls_hex_decode2
gnutls-3.6.7/doc/functions/gnutls_hex_decode2.short
gnutls-3.6.7/doc/functions/gnutls_hex_encode
gnutls-3.6.7/doc/functions/gnutls_hex_encode.short
gnutls-3.6.7/doc/functions/gnutls_hex_encode2
gnutls-3.6.7/doc/functions/gnutls_hex_encode2.short
gnutls-3.6.7/doc/functions/gnutls_hmac
gnutls-3.6.7/doc/functions/gnutls_hmac.short
gnutls-3.6.7/doc/functions/gnutls_hmac_deinit
gnutls-3.6.7/doc/functions/gnutls_hmac_deinit.short
gnutls-3.6.7/doc/functions/gnutls_hmac_fast
gnutls-3.6.7/doc/functions/gnutls_hmac_fast.short
gnutls-3.6.7/doc/functions/gnutls_hmac_get_len
gnutls-3.6.7/doc/functions/gnutls_hmac_get_len.short
gnutls-3.6.7/doc/functions/gnutls_hmac_init
gnutls-3.6.7/doc/functions/gnutls_hmac_init.short
gnutls-3.6.7/doc/functions/gnutls_hmac_output
gnutls-3.6.7/doc/functions/gnutls_hmac_output.short
gnutls-3.6.7/doc/functions/gnutls_hmac_set_nonce
gnutls-3.6.7/doc/functions/gnutls_hmac_set_nonce.short
gnutls-3.6.7/doc/functions/gnutls_idna_map
gnutls-3.6.7/doc/functions/gnutls_idna_map.short
gnutls-3.6.7/doc/functions/gnutls_idna_reverse_map
gnutls-3.6.7/doc/functions/gnutls_idna_reverse_map.short
gnutls-3.6.7/doc/functions/gnutls_init
gnutls-3.6.7/doc/functions/gnutls_init.short
gnutls-3.6.7/doc/functions/gnutls_key_generate
gnutls-3.6.7/doc/functions/gnutls_key_generate.short
gnutls-3.6.7/doc/functions/gnutls_kx_get
gnutls-3.6.7/doc/functions/gnutls_kx_get.short
gnutls-3.6.7/doc/functions/gnutls_kx_get_id
gnutls-3.6.7/doc/functions/gnutls_kx_get_id.short
gnutls-3.6.7/doc/functions/gnutls_kx_get_name
gnutls-3.6.7/doc/functions/gnutls_kx_get_name.short
gnutls-3.6.7/doc/functions/gnutls_kx_list
gnutls-3.6.7/doc/functions/gnutls_kx_list.short
gnutls-3.6.7/doc/functions/gnutls_load_file
gnutls-3.6.7/doc/functions/gnutls_load_file.short
gnutls-3.6.7/doc/functions/gnutls_mac_get
gnutls-3.6.7/doc/functions/gnutls_mac_get.short
gnutls-3.6.7/doc/functions/gnutls_mac_get_id
gnutls-3.6.7/doc/functions/gnutls_mac_get_id.short
gnutls-3.6.7/doc/functions/gnutls_mac_get_key_size
gnutls-3.6.7/doc/functions/gnutls_mac_get_key_size.short
gnutls-3.6.7/doc/functions/gnutls_mac_get_name
gnutls-3.6.7/doc/functions/gnutls_mac_get_name.short
gnutls-3.6.7/doc/functions/gnutls_mac_get_nonce_size
gnutls-3.6.7/doc/functions/gnutls_mac_get_nonce_size.short
gnutls-3.6.7/doc/functions/gnutls_mac_list
gnutls-3.6.7/doc/functions/gnutls_mac_list.short
gnutls-3.6.7/doc/functions/gnutls_memcmp
gnutls-3.6.7/doc/functions/gnutls_memcmp.short
gnutls-3.6.7/doc/functions/gnutls_memset
gnutls-3.6.7/doc/functions/gnutls_memset.short
gnutls-3.6.7/doc/functions/gnutls_ocsp_req_add_cert
gnutls-3.6.7/doc/functions/gnutls_ocsp_req_add_cert.short
gnutls-3.6.7/doc/functions/gnutls_ocsp_req_add_cert_id
gnutls-3.6.7/doc/functions/gnutls_ocsp_req_add_cert_id.short
gnutls-3.6.7/doc/functions/gnutls_ocsp_req_deinit
gnutls-3.6.7/doc/functions/gnutls_ocsp_req_deinit.short
gnutls-3.6.7/doc/functions/gnutls_ocsp_req_export
gnutls-3.6.7/doc/functions/gnutls_ocsp_req_export.short
gnutls-3.6.7/doc/functions/gnutls_ocsp_req_get_cert_id
gnutls-3.6.7/doc/functions/gnutls_ocsp_req_get_cert_id.short
gnutls-3.6.7/doc/functions/gnutls_ocsp_req_get_extension
gnutls-3.6.7/doc/functions/gnutls_ocsp_req_get_extension.short
gnutls-3.6.7/doc/functions/gnutls_ocsp_req_get_nonce
gnutls-3.6.7/doc/functions/gnutls_ocsp_req_get_nonce.short
gnutls-3.6.7/doc/functions/gnutls_ocsp_req_get_version
gnutls-3.6.7/doc/functions/gnutls_ocsp_req_get_version.short
gnutls-3.6.7/doc/functions/gnutls_ocsp_req_import
gnutls-3.6.7/doc/functions/gnutls_ocsp_req_import.short
gnutls-3.6.7/doc/functions/gnutls_ocsp_req_init
gnutls-3.6.7/doc/functions/gnutls_ocsp_req_init.short
gnutls-3.6.7/doc/functions/gnutls_ocsp_req_print
gnutls-3.6.7/doc/functions/gnutls_ocsp_req_print.short
gnutls-3.6.7/doc/functions/gnutls_ocsp_req_randomize_nonce
gnutls-3.6.7/doc/functions/gnutls_ocsp_req_randomize_nonce.short
gnutls-3.6.7/doc/functions/gnutls_ocsp_req_set_extension
gnutls-3.6.7/doc/functions/gnutls_ocsp_req_set_extension.short
gnutls-3.6.7/doc/functions/gnutls_ocsp_req_set_nonce
gnutls-3.6.7/doc/functions/gnutls_ocsp_req_set_nonce.short
gnutls-3.6.7/doc/functions/gnutls_ocsp_resp_check_crt
gnutls-3.6.7/doc/functions/gnutls_ocsp_resp_check_crt.short
gnutls-3.6.7/doc/functions/gnutls_ocsp_resp_deinit
gnutls-3.6.7/doc/functions/gnutls_ocsp_resp_deinit.short
gnutls-3.6.7/doc/functions/gnutls_ocsp_resp_export
gnutls-3.6.7/doc/functions/gnutls_ocsp_resp_export.short
gnutls-3.6.7/doc/functions/gnutls_ocsp_resp_export2
gnutls-3.6.7/doc/functions/gnutls_ocsp_resp_export2.short
gnutls-3.6.7/doc/functions/gnutls_ocsp_resp_get_certs
gnutls-3.6.7/doc/functions/gnutls_ocsp_resp_get_certs.short
gnutls-3.6.7/doc/functions/gnutls_ocsp_resp_get_extension
gnutls-3.6.7/doc/functions/gnutls_ocsp_resp_get_extension.short
gnutls-3.6.7/doc/functions/gnutls_ocsp_resp_get_nonce
gnutls-3.6.7/doc/functions/gnutls_ocsp_resp_get_nonce.short
gnutls-3.6.7/doc/functions/gnutls_ocsp_resp_get_produced
gnutls-3.6.7/doc/functions/gnutls_ocsp_resp_get_produced.short
gnutls-3.6.7/doc/functions/gnutls_ocsp_resp_get_responder
gnutls-3.6.7/doc/functions/gnutls_ocsp_resp_get_responder.short
gnutls-3.6.7/doc/functions/gnutls_ocsp_resp_get_responder2
gnutls-3.6.7/doc/functions/gnutls_ocsp_resp_get_responder2.short
gnutls-3.6.7/doc/functions/gnutls_ocsp_resp_get_responder_raw_id
gnutls-3.6.7/doc/functions/gnutls_ocsp_resp_get_responder_raw_id.short
gnutls-3.6.7/doc/functions/gnutls_ocsp_resp_get_response
gnutls-3.6.7/doc/functions/gnutls_ocsp_resp_get_response.short
gnutls-3.6.7/doc/functions/gnutls_ocsp_resp_get_signature
gnutls-3.6.7/doc/functions/gnutls_ocsp_resp_get_signature.short
gnutls-3.6.7/doc/functions/gnutls_ocsp_resp_get_signature_algorithm
gnutls-3.6.7/doc/functions/gnutls_ocsp_resp_get_signature_algorithm.short
gnutls-3.6.7/doc/functions/gnutls_ocsp_resp_get_single
gnutls-3.6.7/doc/functions/gnutls_ocsp_resp_get_single.short
gnutls-3.6.7/doc/functions/gnutls_ocsp_resp_get_status
gnutls-3.6.7/doc/functions/gnutls_ocsp_resp_get_status.short
gnutls-3.6.7/doc/functions/gnutls_ocsp_resp_get_version
gnutls-3.6.7/doc/functions/gnutls_ocsp_resp_get_version.short
gnutls-3.6.7/doc/functions/gnutls_ocsp_resp_import
gnutls-3.6.7/doc/functions/gnutls_ocsp_resp_import.short
gnutls-3.6.7/doc/functions/gnutls_ocsp_resp_import2
gnutls-3.6.7/doc/functions/gnutls_ocsp_resp_import2.short
gnutls-3.6.7/doc/functions/gnutls_ocsp_resp_init
gnutls-3.6.7/doc/functions/gnutls_ocsp_resp_init.short
gnutls-3.6.7/doc/functions/gnutls_ocsp_resp_list_import2
gnutls-3.6.7/doc/functions/gnutls_ocsp_resp_list_import2.short
gnutls-3.6.7/doc/functions/gnutls_ocsp_resp_print
gnutls-3.6.7/doc/functions/gnutls_ocsp_resp_print.short
gnutls-3.6.7/doc/functions/gnutls_ocsp_resp_verify
gnutls-3.6.7/doc/functions/gnutls_ocsp_resp_verify.short
gnutls-3.6.7/doc/functions/gnutls_ocsp_resp_verify_direct
gnutls-3.6.7/doc/functions/gnutls_ocsp_resp_verify_direct.short
gnutls-3.6.7/doc/functions/gnutls_ocsp_status_request_enable_client
gnutls-3.6.7/doc/functions/gnutls_ocsp_status_request_enable_client.short
gnutls-3.6.7/doc/functions/gnutls_ocsp_status_request_get
gnutls-3.6.7/doc/functions/gnutls_ocsp_status_request_get.short
gnutls-3.6.7/doc/functions/gnutls_ocsp_status_request_get2
gnutls-3.6.7/doc/functions/gnutls_ocsp_status_request_get2.short
gnutls-3.6.7/doc/functions/gnutls_ocsp_status_request_is_checked
gnutls-3.6.7/doc/functions/gnutls_ocsp_status_request_is_checked.short
gnutls-3.6.7/doc/functions/gnutls_oid_to_digest
gnutls-3.6.7/doc/functions/gnutls_oid_to_digest.short
gnutls-3.6.7/doc/functions/gnutls_oid_to_ecc_curve
gnutls-3.6.7/doc/functions/gnutls_oid_to_ecc_curve.short
gnutls-3.6.7/doc/functions/gnutls_oid_to_gost_paramset
gnutls-3.6.7/doc/functions/gnutls_oid_to_gost_paramset.short
gnutls-3.6.7/doc/functions/gnutls_oid_to_mac
gnutls-3.6.7/doc/functions/gnutls_oid_to_mac.short
gnutls-3.6.7/doc/functions/gnutls_oid_to_pk
gnutls-3.6.7/doc/functions/gnutls_oid_to_pk.short
gnutls-3.6.7/doc/functions/gnutls_oid_to_sign
gnutls-3.6.7/doc/functions/gnutls_oid_to_sign.short
gnutls-3.6.7/doc/functions/gnutls_openpgp_privkey_sign_hash
gnutls-3.6.7/doc/functions/gnutls_openpgp_privkey_sign_hash.short
gnutls-3.6.7/doc/functions/gnutls_openpgp_send_cert
gnutls-3.6.7/doc/functions/gnutls_openpgp_send_cert.short
gnutls-3.6.7/doc/functions/gnutls_packet_deinit
gnutls-3.6.7/doc/functions/gnutls_packet_deinit.short
gnutls-3.6.7/doc/functions/gnutls_packet_get
gnutls-3.6.7/doc/functions/gnutls_packet_get.short
gnutls-3.6.7/doc/functions/gnutls_pcert_deinit
gnutls-3.6.7/doc/functions/gnutls_pcert_deinit.short
gnutls-3.6.7/doc/functions/gnutls_pcert_export_openpgp
gnutls-3.6.7/doc/functions/gnutls_pcert_export_openpgp.short
gnutls-3.6.7/doc/functions/gnutls_pcert_export_x509
gnutls-3.6.7/doc/functions/gnutls_pcert_export_x509.short
gnutls-3.6.7/doc/functions/gnutls_pcert_import_openpgp
gnutls-3.6.7/doc/functions/gnutls_pcert_import_openpgp.short
gnutls-3.6.7/doc/functions/gnutls_pcert_import_openpgp_raw
gnutls-3.6.7/doc/functions/gnutls_pcert_import_openpgp_raw.short
gnutls-3.6.7/doc/functions/gnutls_pcert_import_rawpk
gnutls-3.6.7/doc/functions/gnutls_pcert_import_rawpk.short
gnutls-3.6.7/doc/functions/gnutls_pcert_import_rawpk_raw
gnutls-3.6.7/doc/functions/gnutls_pcert_import_rawpk_raw.short
gnutls-3.6.7/doc/functions/gnutls_pcert_import_x509
gnutls-3.6.7/doc/functions/gnutls_pcert_import_x509.short
gnutls-3.6.7/doc/functions/gnutls_pcert_import_x509_list
gnutls-3.6.7/doc/functions/gnutls_pcert_import_x509_list.short
gnutls-3.6.7/doc/functions/gnutls_pcert_import_x509_raw
gnutls-3.6.7/doc/functions/gnutls_pcert_import_x509_raw.short
gnutls-3.6.7/doc/functions/gnutls_pcert_list_import_x509_file
gnutls-3.6.7/doc/functions/gnutls_pcert_list_import_x509_file.short
gnutls-3.6.7/doc/functions/gnutls_pcert_list_import_x509_raw
gnutls-3.6.7/doc/functions/gnutls_pcert_list_import_x509_raw.short
gnutls-3.6.7/doc/functions/gnutls_pem_base64_decode
gnutls-3.6.7/doc/functions/gnutls_pem_base64_decode.short
gnutls-3.6.7/doc/functions/gnutls_pem_base64_decode2
gnutls-3.6.7/doc/functions/gnutls_pem_base64_decode2.short
gnutls-3.6.7/doc/functions/gnutls_pem_base64_encode
gnutls-3.6.7/doc/functions/gnutls_pem_base64_encode.short
gnutls-3.6.7/doc/functions/gnutls_pem_base64_encode2
gnutls-3.6.7/doc/functions/gnutls_pem_base64_encode2.short
gnutls-3.6.7/doc/functions/gnutls_perror
gnutls-3.6.7/doc/functions/gnutls_perror.short
gnutls-3.6.7/doc/functions/gnutls_pk_algorithm_get_name
gnutls-3.6.7/doc/functions/gnutls_pk_algorithm_get_name.short
gnutls-3.6.7/doc/functions/gnutls_pk_bits_to_sec_param
gnutls-3.6.7/doc/functions/gnutls_pk_bits_to_sec_param.short
gnutls-3.6.7/doc/functions/gnutls_pk_get_id
gnutls-3.6.7/doc/functions/gnutls_pk_get_id.short
gnutls-3.6.7/doc/functions/gnutls_pk_get_name
gnutls-3.6.7/doc/functions/gnutls_pk_get_name.short
gnutls-3.6.7/doc/functions/gnutls_pk_get_oid
gnutls-3.6.7/doc/functions/gnutls_pk_get_oid.short
gnutls-3.6.7/doc/functions/gnutls_pk_list
gnutls-3.6.7/doc/functions/gnutls_pk_list.short
gnutls-3.6.7/doc/functions/gnutls_pk_to_sign
gnutls-3.6.7/doc/functions/gnutls_pk_to_sign.short
gnutls-3.6.7/doc/functions/gnutls_pkcs11_add_provider
gnutls-3.6.7/doc/functions/gnutls_pkcs11_add_provider.short
gnutls-3.6.7/doc/functions/gnutls_pkcs11_copy_attached_extension
gnutls-3.6.7/doc/functions/gnutls_pkcs11_copy_attached_extension.short
gnutls-3.6.7/doc/functions/gnutls_pkcs11_copy_pubkey
gnutls-3.6.7/doc/functions/gnutls_pkcs11_copy_pubkey.short
gnutls-3.6.7/doc/functions/gnutls_pkcs11_copy_secret_key
gnutls-3.6.7/doc/functions/gnutls_pkcs11_copy_secret_key.short
gnutls-3.6.7/doc/functions/gnutls_pkcs11_copy_x509_crt
gnutls-3.6.7/doc/functions/gnutls_pkcs11_copy_x509_crt.short
gnutls-3.6.7/doc/functions/gnutls_pkcs11_copy_x509_crt2
gnutls-3.6.7/doc/functions/gnutls_pkcs11_copy_x509_crt2.short
gnutls-3.6.7/doc/functions/gnutls_pkcs11_copy_x509_privkey
gnutls-3.6.7/doc/functions/gnutls_pkcs11_copy_x509_privkey.short
gnutls-3.6.7/doc/functions/gnutls_pkcs11_copy_x509_privkey2
gnutls-3.6.7/doc/functions/gnutls_pkcs11_copy_x509_privkey2.short
gnutls-3.6.7/doc/functions/gnutls_pkcs11_crt_is_known
gnutls-3.6.7/doc/functions/gnutls_pkcs11_crt_is_known.short
gnutls-3.6.7/doc/functions/gnutls_pkcs11_deinit
gnutls-3.6.7/doc/functions/gnutls_pkcs11_deinit.short
gnutls-3.6.7/doc/functions/gnutls_pkcs11_delete_url
gnutls-3.6.7/doc/functions/gnutls_pkcs11_delete_url.short
gnutls-3.6.7/doc/functions/gnutls_pkcs11_get_pin_function
gnutls-3.6.7/doc/functions/gnutls_pkcs11_get_pin_function.short
gnutls-3.6.7/doc/functions/gnutls_pkcs11_get_raw_issuer
gnutls-3.6.7/doc/functions/gnutls_pkcs11_get_raw_issuer.short
gnutls-3.6.7/doc/functions/gnutls_pkcs11_get_raw_issuer_by_dn
gnutls-3.6.7/doc/functions/gnutls_pkcs11_get_raw_issuer_by_dn.short
gnutls-3.6.7/doc/functions/gnutls_pkcs11_get_raw_issuer_by_subject_key_id
gnutls-3.6.7/doc/functions/gnutls_pkcs11_get_raw_issuer_by_subject_key_id.short
gnutls-3.6.7/doc/functions/gnutls_pkcs11_init
gnutls-3.6.7/doc/functions/gnutls_pkcs11_init.short
gnutls-3.6.7/doc/functions/gnutls_pkcs11_obj_deinit
gnutls-3.6.7/doc/functions/gnutls_pkcs11_obj_deinit.short
gnutls-3.6.7/doc/functions/gnutls_pkcs11_obj_export
gnutls-3.6.7/doc/functions/gnutls_pkcs11_obj_export.short
gnutls-3.6.7/doc/functions/gnutls_pkcs11_obj_export2
gnutls-3.6.7/doc/functions/gnutls_pkcs11_obj_export2.short
gnutls-3.6.7/doc/functions/gnutls_pkcs11_obj_export3
gnutls-3.6.7/doc/functions/gnutls_pkcs11_obj_export3.short
gnutls-3.6.7/doc/functions/gnutls_pkcs11_obj_export_url
gnutls-3.6.7/doc/functions/gnutls_pkcs11_obj_export_url.short
gnutls-3.6.7/doc/functions/gnutls_pkcs11_obj_flags_get_str
gnutls-3.6.7/doc/functions/gnutls_pkcs11_obj_flags_get_str.short
gnutls-3.6.7/doc/functions/gnutls_pkcs11_obj_get_exts
gnutls-3.6.7/doc/functions/gnutls_pkcs11_obj_get_exts.short
gnutls-3.6.7/doc/functions/gnutls_pkcs11_obj_get_flags
gnutls-3.6.7/doc/functions/gnutls_pkcs11_obj_get_flags.short
gnutls-3.6.7/doc/functions/gnutls_pkcs11_obj_get_info
gnutls-3.6.7/doc/functions/gnutls_pkcs11_obj_get_info.short
gnutls-3.6.7/doc/functions/gnutls_pkcs11_obj_get_ptr
gnutls-3.6.7/doc/functions/gnutls_pkcs11_obj_get_ptr.short
gnutls-3.6.7/doc/functions/gnutls_pkcs11_obj_get_type
gnutls-3.6.7/doc/functions/gnutls_pkcs11_obj_get_type.short
gnutls-3.6.7/doc/functions/gnutls_pkcs11_obj_import_url
gnutls-3.6.7/doc/functions/gnutls_pkcs11_obj_import_url.short
gnutls-3.6.7/doc/functions/gnutls_pkcs11_obj_init
gnutls-3.6.7/doc/functions/gnutls_pkcs11_obj_init.short
gnutls-3.6.7/doc/functions/gnutls_pkcs11_obj_list_import_url3
gnutls-3.6.7/doc/functions/gnutls_pkcs11_obj_list_import_url3.short
gnutls-3.6.7/doc/functions/gnutls_pkcs11_obj_list_import_url4
gnutls-3.6.7/doc/functions/gnutls_pkcs11_obj_list_import_url4.short
gnutls-3.6.7/doc/functions/gnutls_pkcs11_obj_set_info
gnutls-3.6.7/doc/functions/gnutls_pkcs11_obj_set_info.short
gnutls-3.6.7/doc/functions/gnutls_pkcs11_obj_set_pin_function
gnutls-3.6.7/doc/functions/gnutls_pkcs11_obj_set_pin_function.short
gnutls-3.6.7/doc/functions/gnutls_pkcs11_privkey_cpy
gnutls-3.6.7/doc/functions/gnutls_pkcs11_privkey_cpy.short
gnutls-3.6.7/doc/functions/gnutls_pkcs11_privkey_deinit
gnutls-3.6.7/doc/functions/gnutls_pkcs11_privkey_deinit.short
gnutls-3.6.7/doc/functions/gnutls_pkcs11_privkey_export_pubkey
gnutls-3.6.7/doc/functions/gnutls_pkcs11_privkey_export_pubkey.short
gnutls-3.6.7/doc/functions/gnutls_pkcs11_privkey_export_url
gnutls-3.6.7/doc/functions/gnutls_pkcs11_privkey_export_url.short
gnutls-3.6.7/doc/functions/gnutls_pkcs11_privkey_generate
gnutls-3.6.7/doc/functions/gnutls_pkcs11_privkey_generate.short
gnutls-3.6.7/doc/functions/gnutls_pkcs11_privkey_generate2
gnutls-3.6.7/doc/functions/gnutls_pkcs11_privkey_generate2.short
gnutls-3.6.7/doc/functions/gnutls_pkcs11_privkey_generate3
gnutls-3.6.7/doc/functions/gnutls_pkcs11_privkey_generate3.short
gnutls-3.6.7/doc/functions/gnutls_pkcs11_privkey_get_info
gnutls-3.6.7/doc/functions/gnutls_pkcs11_privkey_get_info.short
gnutls-3.6.7/doc/functions/gnutls_pkcs11_privkey_get_pk_algorithm
gnutls-3.6.7/doc/functions/gnutls_pkcs11_privkey_get_pk_algorithm.short
gnutls-3.6.7/doc/functions/gnutls_pkcs11_privkey_import_url
gnutls-3.6.7/doc/functions/gnutls_pkcs11_privkey_import_url.short
gnutls-3.6.7/doc/functions/gnutls_pkcs11_privkey_init
gnutls-3.6.7/doc/functions/gnutls_pkcs11_privkey_init.short
gnutls-3.6.7/doc/functions/gnutls_pkcs11_privkey_set_pin_function
gnutls-3.6.7/doc/functions/gnutls_pkcs11_privkey_set_pin_function.short
gnutls-3.6.7/doc/functions/gnutls_pkcs11_privkey_status
gnutls-3.6.7/doc/functions/gnutls_pkcs11_privkey_status.short
gnutls-3.6.7/doc/functions/gnutls_pkcs11_reinit
gnutls-3.6.7/doc/functions/gnutls_pkcs11_reinit.short
gnutls-3.6.7/doc/functions/gnutls_pkcs11_set_pin_function
gnutls-3.6.7/doc/functions/gnutls_pkcs11_set_pin_function.short
gnutls-3.6.7/doc/functions/gnutls_pkcs11_set_token_function
gnutls-3.6.7/doc/functions/gnutls_pkcs11_set_token_function.short
gnutls-3.6.7/doc/functions/gnutls_pkcs11_token_check_mechanism
gnutls-3.6.7/doc/functions/gnutls_pkcs11_token_check_mechanism.short
gnutls-3.6.7/doc/functions/gnutls_pkcs11_token_get_flags
gnutls-3.6.7/doc/functions/gnutls_pkcs11_token_get_flags.short
gnutls-3.6.7/doc/functions/gnutls_pkcs11_token_get_info
gnutls-3.6.7/doc/functions/gnutls_pkcs11_token_get_info.short
gnutls-3.6.7/doc/functions/gnutls_pkcs11_token_get_mechanism
gnutls-3.6.7/doc/functions/gnutls_pkcs11_token_get_mechanism.short
gnutls-3.6.7/doc/functions/gnutls_pkcs11_token_get_ptr
gnutls-3.6.7/doc/functions/gnutls_pkcs11_token_get_ptr.short
gnutls-3.6.7/doc/functions/gnutls_pkcs11_token_get_random
gnutls-3.6.7/doc/functions/gnutls_pkcs11_token_get_random.short
gnutls-3.6.7/doc/functions/gnutls_pkcs11_token_get_url
gnutls-3.6.7/doc/functions/gnutls_pkcs11_token_get_url.short
gnutls-3.6.7/doc/functions/gnutls_pkcs11_token_init
gnutls-3.6.7/doc/functions/gnutls_pkcs11_token_init.short
gnutls-3.6.7/doc/functions/gnutls_pkcs11_token_set_pin
gnutls-3.6.7/doc/functions/gnutls_pkcs11_token_set_pin.short
gnutls-3.6.7/doc/functions/gnutls_pkcs11_type_get_name
gnutls-3.6.7/doc/functions/gnutls_pkcs11_type_get_name.short
gnutls-3.6.7/doc/functions/gnutls_pkcs12_bag_decrypt
gnutls-3.6.7/doc/functions/gnutls_pkcs12_bag_decrypt.short
gnutls-3.6.7/doc/functions/gnutls_pkcs12_bag_deinit
gnutls-3.6.7/doc/functions/gnutls_pkcs12_bag_deinit.short
gnutls-3.6.7/doc/functions/gnutls_pkcs12_bag_enc_info
gnutls-3.6.7/doc/functions/gnutls_pkcs12_bag_enc_info.short
gnutls-3.6.7/doc/functions/gnutls_pkcs12_bag_encrypt
gnutls-3.6.7/doc/functions/gnutls_pkcs12_bag_encrypt.short
gnutls-3.6.7/doc/functions/gnutls_pkcs12_bag_get_count
gnutls-3.6.7/doc/functions/gnutls_pkcs12_bag_get_count.short
gnutls-3.6.7/doc/functions/gnutls_pkcs12_bag_get_data
gnutls-3.6.7/doc/functions/gnutls_pkcs12_bag_get_data.short
gnutls-3.6.7/doc/functions/gnutls_pkcs12_bag_get_friendly_name
gnutls-3.6.7/doc/functions/gnutls_pkcs12_bag_get_friendly_name.short
gnutls-3.6.7/doc/functions/gnutls_pkcs12_bag_get_key_id
gnutls-3.6.7/doc/functions/gnutls_pkcs12_bag_get_key_id.short
gnutls-3.6.7/doc/functions/gnutls_pkcs12_bag_get_type
gnutls-3.6.7/doc/functions/gnutls_pkcs12_bag_get_type.short
gnutls-3.6.7/doc/functions/gnutls_pkcs12_bag_init
gnutls-3.6.7/doc/functions/gnutls_pkcs12_bag_init.short
gnutls-3.6.7/doc/functions/gnutls_pkcs12_bag_set_crl
gnutls-3.6.7/doc/functions/gnutls_pkcs12_bag_set_crl.short
gnutls-3.6.7/doc/functions/gnutls_pkcs12_bag_set_crt
gnutls-3.6.7/doc/functions/gnutls_pkcs12_bag_set_crt.short
gnutls-3.6.7/doc/functions/gnutls_pkcs12_bag_set_data
gnutls-3.6.7/doc/functions/gnutls_pkcs12_bag_set_data.short
gnutls-3.6.7/doc/functions/gnutls_pkcs12_bag_set_friendly_name
gnutls-3.6.7/doc/functions/gnutls_pkcs12_bag_set_friendly_name.short
gnutls-3.6.7/doc/functions/gnutls_pkcs12_bag_set_key_id
gnutls-3.6.7/doc/functions/gnutls_pkcs12_bag_set_key_id.short
gnutls-3.6.7/doc/functions/gnutls_pkcs12_bag_set_privkey
gnutls-3.6.7/doc/functions/gnutls_pkcs12_bag_set_privkey.short
gnutls-3.6.7/doc/functions/gnutls_pkcs12_deinit
gnutls-3.6.7/doc/functions/gnutls_pkcs12_deinit.short
gnutls-3.6.7/doc/functions/gnutls_pkcs12_export
gnutls-3.6.7/doc/functions/gnutls_pkcs12_export.short
gnutls-3.6.7/doc/functions/gnutls_pkcs12_export2
gnutls-3.6.7/doc/functions/gnutls_pkcs12_export2.short
gnutls-3.6.7/doc/functions/gnutls_pkcs12_generate_mac
gnutls-3.6.7/doc/functions/gnutls_pkcs12_generate_mac.short
gnutls-3.6.7/doc/functions/gnutls_pkcs12_generate_mac2
gnutls-3.6.7/doc/functions/gnutls_pkcs12_generate_mac2.short
gnutls-3.6.7/doc/functions/gnutls_pkcs12_get_bag
gnutls-3.6.7/doc/functions/gnutls_pkcs12_get_bag.short
gnutls-3.6.7/doc/functions/gnutls_pkcs12_import
gnutls-3.6.7/doc/functions/gnutls_pkcs12_import.short
gnutls-3.6.7/doc/functions/gnutls_pkcs12_init
gnutls-3.6.7/doc/functions/gnutls_pkcs12_init.short
gnutls-3.6.7/doc/functions/gnutls_pkcs12_mac_info
gnutls-3.6.7/doc/functions/gnutls_pkcs12_mac_info.short
gnutls-3.6.7/doc/functions/gnutls_pkcs12_set_bag
gnutls-3.6.7/doc/functions/gnutls_pkcs12_set_bag.short
gnutls-3.6.7/doc/functions/gnutls_pkcs12_simple_parse
gnutls-3.6.7/doc/functions/gnutls_pkcs12_simple_parse.short
gnutls-3.6.7/doc/functions/gnutls_pkcs12_verify_mac
gnutls-3.6.7/doc/functions/gnutls_pkcs12_verify_mac.short
gnutls-3.6.7/doc/functions/gnutls_pkcs7_add_attr
gnutls-3.6.7/doc/functions/gnutls_pkcs7_add_attr.short
gnutls-3.6.7/doc/functions/gnutls_pkcs7_attrs_deinit
gnutls-3.6.7/doc/functions/gnutls_pkcs7_attrs_deinit.short
gnutls-3.6.7/doc/functions/gnutls_pkcs7_deinit
gnutls-3.6.7/doc/functions/gnutls_pkcs7_deinit.short
gnutls-3.6.7/doc/functions/gnutls_pkcs7_delete_crl
gnutls-3.6.7/doc/functions/gnutls_pkcs7_delete_crl.short
gnutls-3.6.7/doc/functions/gnutls_pkcs7_delete_crt
gnutls-3.6.7/doc/functions/gnutls_pkcs7_delete_crt.short
gnutls-3.6.7/doc/functions/gnutls_pkcs7_export
gnutls-3.6.7/doc/functions/gnutls_pkcs7_export.short
gnutls-3.6.7/doc/functions/gnutls_pkcs7_export2
gnutls-3.6.7/doc/functions/gnutls_pkcs7_export2.short
gnutls-3.6.7/doc/functions/gnutls_pkcs7_get_attr
gnutls-3.6.7/doc/functions/gnutls_pkcs7_get_attr.short
gnutls-3.6.7/doc/functions/gnutls_pkcs7_get_crl_count
gnutls-3.6.7/doc/functions/gnutls_pkcs7_get_crl_count.short
gnutls-3.6.7/doc/functions/gnutls_pkcs7_get_crl_raw
gnutls-3.6.7/doc/functions/gnutls_pkcs7_get_crl_raw.short
gnutls-3.6.7/doc/functions/gnutls_pkcs7_get_crl_raw2
gnutls-3.6.7/doc/functions/gnutls_pkcs7_get_crl_raw2.short
gnutls-3.6.7/doc/functions/gnutls_pkcs7_get_crt_count
gnutls-3.6.7/doc/functions/gnutls_pkcs7_get_crt_count.short
gnutls-3.6.7/doc/functions/gnutls_pkcs7_get_crt_raw
gnutls-3.6.7/doc/functions/gnutls_pkcs7_get_crt_raw.short
gnutls-3.6.7/doc/functions/gnutls_pkcs7_get_crt_raw2
gnutls-3.6.7/doc/functions/gnutls_pkcs7_get_crt_raw2.short
gnutls-3.6.7/doc/functions/gnutls_pkcs7_get_embedded_data
gnutls-3.6.7/doc/functions/gnutls_pkcs7_get_embedded_data.short
gnutls-3.6.7/doc/functions/gnutls_pkcs7_get_embedded_data_oid
gnutls-3.6.7/doc/functions/gnutls_pkcs7_get_embedded_data_oid.short
gnutls-3.6.7/doc/functions/gnutls_pkcs7_get_signature_count
gnutls-3.6.7/doc/functions/gnutls_pkcs7_get_signature_count.short
gnutls-3.6.7/doc/functions/gnutls_pkcs7_get_signature_info
gnutls-3.6.7/doc/functions/gnutls_pkcs7_get_signature_info.short
gnutls-3.6.7/doc/functions/gnutls_pkcs7_import
gnutls-3.6.7/doc/functions/gnutls_pkcs7_import.short
gnutls-3.6.7/doc/functions/gnutls_pkcs7_init
gnutls-3.6.7/doc/functions/gnutls_pkcs7_init.short
gnutls-3.6.7/doc/functions/gnutls_pkcs7_print
gnutls-3.6.7/doc/functions/gnutls_pkcs7_print.short
gnutls-3.6.7/doc/functions/gnutls_pkcs7_set_crl
gnutls-3.6.7/doc/functions/gnutls_pkcs7_set_crl.short
gnutls-3.6.7/doc/functions/gnutls_pkcs7_set_crl_raw
gnutls-3.6.7/doc/functions/gnutls_pkcs7_set_crl_raw.short
gnutls-3.6.7/doc/functions/gnutls_pkcs7_set_crt
gnutls-3.6.7/doc/functions/gnutls_pkcs7_set_crt.short
gnutls-3.6.7/doc/functions/gnutls_pkcs7_set_crt_raw
gnutls-3.6.7/doc/functions/gnutls_pkcs7_set_crt_raw.short
gnutls-3.6.7/doc/functions/gnutls_pkcs7_sign
gnutls-3.6.7/doc/functions/gnutls_pkcs7_sign.short
gnutls-3.6.7/doc/functions/gnutls_pkcs7_signature_info_deinit
gnutls-3.6.7/doc/functions/gnutls_pkcs7_signature_info_deinit.short
gnutls-3.6.7/doc/functions/gnutls_pkcs7_verify
gnutls-3.6.7/doc/functions/gnutls_pkcs7_verify.short
gnutls-3.6.7/doc/functions/gnutls_pkcs7_verify_direct
gnutls-3.6.7/doc/functions/gnutls_pkcs7_verify_direct.short
gnutls-3.6.7/doc/functions/gnutls_pkcs8_info
gnutls-3.6.7/doc/functions/gnutls_pkcs8_info.short
gnutls-3.6.7/doc/functions/gnutls_pkcs_schema_get_name
gnutls-3.6.7/doc/functions/gnutls_pkcs_schema_get_name.short
gnutls-3.6.7/doc/functions/gnutls_pkcs_schema_get_oid
gnutls-3.6.7/doc/functions/gnutls_pkcs_schema_get_oid.short
gnutls-3.6.7/doc/functions/gnutls_prf
gnutls-3.6.7/doc/functions/gnutls_prf.short
gnutls-3.6.7/doc/functions/gnutls_prf_raw
gnutls-3.6.7/doc/functions/gnutls_prf_raw.short
gnutls-3.6.7/doc/functions/gnutls_prf_rfc5705
gnutls-3.6.7/doc/functions/gnutls_prf_rfc5705.short
gnutls-3.6.7/doc/functions/gnutls_priority_certificate_type_list
gnutls-3.6.7/doc/functions/gnutls_priority_certificate_type_list.short
gnutls-3.6.7/doc/functions/gnutls_priority_certificate_type_list2
gnutls-3.6.7/doc/functions/gnutls_priority_certificate_type_list2.short
gnutls-3.6.7/doc/functions/gnutls_priority_cipher_list
gnutls-3.6.7/doc/functions/gnutls_priority_cipher_list.short
gnutls-3.6.7/doc/functions/gnutls_priority_compression_list
gnutls-3.6.7/doc/functions/gnutls_priority_compression_list.short
gnutls-3.6.7/doc/functions/gnutls_priority_deinit
gnutls-3.6.7/doc/functions/gnutls_priority_deinit.short
gnutls-3.6.7/doc/functions/gnutls_priority_ecc_curve_list
gnutls-3.6.7/doc/functions/gnutls_priority_ecc_curve_list.short
gnutls-3.6.7/doc/functions/gnutls_priority_get_cipher_suite_index
gnutls-3.6.7/doc/functions/gnutls_priority_get_cipher_suite_index.short
gnutls-3.6.7/doc/functions/gnutls_priority_group_list
gnutls-3.6.7/doc/functions/gnutls_priority_group_list.short
gnutls-3.6.7/doc/functions/gnutls_priority_init
gnutls-3.6.7/doc/functions/gnutls_priority_init.short
gnutls-3.6.7/doc/functions/gnutls_priority_init2
gnutls-3.6.7/doc/functions/gnutls_priority_init2.short
gnutls-3.6.7/doc/functions/gnutls_priority_kx_list
gnutls-3.6.7/doc/functions/gnutls_priority_kx_list.short
gnutls-3.6.7/doc/functions/gnutls_priority_mac_list
gnutls-3.6.7/doc/functions/gnutls_priority_mac_list.short
gnutls-3.6.7/doc/functions/gnutls_priority_protocol_list
gnutls-3.6.7/doc/functions/gnutls_priority_protocol_list.short
gnutls-3.6.7/doc/functions/gnutls_priority_set
gnutls-3.6.7/doc/functions/gnutls_priority_set.short
gnutls-3.6.7/doc/functions/gnutls_priority_set_direct
gnutls-3.6.7/doc/functions/gnutls_priority_set_direct.short
gnutls-3.6.7/doc/functions/gnutls_priority_sign_list
gnutls-3.6.7/doc/functions/gnutls_priority_sign_list.short
gnutls-3.6.7/doc/functions/gnutls_priority_string_list
gnutls-3.6.7/doc/functions/gnutls_priority_string_list.short
gnutls-3.6.7/doc/functions/gnutls_privkey_decrypt_data
gnutls-3.6.7/doc/functions/gnutls_privkey_decrypt_data.short
gnutls-3.6.7/doc/functions/gnutls_privkey_decrypt_data2
gnutls-3.6.7/doc/functions/gnutls_privkey_decrypt_data2.short
gnutls-3.6.7/doc/functions/gnutls_privkey_deinit
gnutls-3.6.7/doc/functions/gnutls_privkey_deinit.short
gnutls-3.6.7/doc/functions/gnutls_privkey_export_dsa_raw
gnutls-3.6.7/doc/functions/gnutls_privkey_export_dsa_raw.short
gnutls-3.6.7/doc/functions/gnutls_privkey_export_dsa_raw2
gnutls-3.6.7/doc/functions/gnutls_privkey_export_dsa_raw2.short
gnutls-3.6.7/doc/functions/gnutls_privkey_export_ecc_raw
gnutls-3.6.7/doc/functions/gnutls_privkey_export_ecc_raw.short
gnutls-3.6.7/doc/functions/gnutls_privkey_export_ecc_raw2
gnutls-3.6.7/doc/functions/gnutls_privkey_export_ecc_raw2.short
gnutls-3.6.7/doc/functions/gnutls_privkey_export_gost_raw2
gnutls-3.6.7/doc/functions/gnutls_privkey_export_gost_raw2.short
gnutls-3.6.7/doc/functions/gnutls_privkey_export_openpgp
gnutls-3.6.7/doc/functions/gnutls_privkey_export_openpgp.short
gnutls-3.6.7/doc/functions/gnutls_privkey_export_pkcs11
gnutls-3.6.7/doc/functions/gnutls_privkey_export_pkcs11.short
gnutls-3.6.7/doc/functions/gnutls_privkey_export_rsa_raw
gnutls-3.6.7/doc/functions/gnutls_privkey_export_rsa_raw.short
gnutls-3.6.7/doc/functions/gnutls_privkey_export_rsa_raw2
gnutls-3.6.7/doc/functions/gnutls_privkey_export_rsa_raw2.short
gnutls-3.6.7/doc/functions/gnutls_privkey_export_x509
gnutls-3.6.7/doc/functions/gnutls_privkey_export_x509.short
gnutls-3.6.7/doc/functions/gnutls_privkey_generate
gnutls-3.6.7/doc/functions/gnutls_privkey_generate.short
gnutls-3.6.7/doc/functions/gnutls_privkey_generate2
gnutls-3.6.7/doc/functions/gnutls_privkey_generate2.short
gnutls-3.6.7/doc/functions/gnutls_privkey_get_pk_algorithm
gnutls-3.6.7/doc/functions/gnutls_privkey_get_pk_algorithm.short
gnutls-3.6.7/doc/functions/gnutls_privkey_get_seed
gnutls-3.6.7/doc/functions/gnutls_privkey_get_seed.short
gnutls-3.6.7/doc/functions/gnutls_privkey_get_spki
gnutls-3.6.7/doc/functions/gnutls_privkey_get_spki.short
gnutls-3.6.7/doc/functions/gnutls_privkey_get_type
gnutls-3.6.7/doc/functions/gnutls_privkey_get_type.short
gnutls-3.6.7/doc/functions/gnutls_privkey_import_dsa_raw
gnutls-3.6.7/doc/functions/gnutls_privkey_import_dsa_raw.short
gnutls-3.6.7/doc/functions/gnutls_privkey_import_ecc_raw
gnutls-3.6.7/doc/functions/gnutls_privkey_import_ecc_raw.short
gnutls-3.6.7/doc/functions/gnutls_privkey_import_ext
gnutls-3.6.7/doc/functions/gnutls_privkey_import_ext.short
gnutls-3.6.7/doc/functions/gnutls_privkey_import_ext2
gnutls-3.6.7/doc/functions/gnutls_privkey_import_ext2.short
gnutls-3.6.7/doc/functions/gnutls_privkey_import_ext3
gnutls-3.6.7/doc/functions/gnutls_privkey_import_ext3.short
gnutls-3.6.7/doc/functions/gnutls_privkey_import_ext4
gnutls-3.6.7/doc/functions/gnutls_privkey_import_ext4.short
gnutls-3.6.7/doc/functions/gnutls_privkey_import_gost_raw
gnutls-3.6.7/doc/functions/gnutls_privkey_import_gost_raw.short
gnutls-3.6.7/doc/functions/gnutls_privkey_import_openpgp
gnutls-3.6.7/doc/functions/gnutls_privkey_import_openpgp.short
gnutls-3.6.7/doc/functions/gnutls_privkey_import_openpgp_raw
gnutls-3.6.7/doc/functions/gnutls_privkey_import_openpgp_raw.short
gnutls-3.6.7/doc/functions/gnutls_privkey_import_pkcs11
gnutls-3.6.7/doc/functions/gnutls_privkey_import_pkcs11.short
gnutls-3.6.7/doc/functions/gnutls_privkey_import_pkcs11_url
gnutls-3.6.7/doc/functions/gnutls_privkey_import_pkcs11_url.short
gnutls-3.6.7/doc/functions/gnutls_privkey_import_rsa_raw
gnutls-3.6.7/doc/functions/gnutls_privkey_import_rsa_raw.short
gnutls-3.6.7/doc/functions/gnutls_privkey_import_tpm_raw
gnutls-3.6.7/doc/functions/gnutls_privkey_import_tpm_raw.short
gnutls-3.6.7/doc/functions/gnutls_privkey_import_tpm_url
gnutls-3.6.7/doc/functions/gnutls_privkey_import_tpm_url.short
gnutls-3.6.7/doc/functions/gnutls_privkey_import_url
gnutls-3.6.7/doc/functions/gnutls_privkey_import_url.short
gnutls-3.6.7/doc/functions/gnutls_privkey_import_x509
gnutls-3.6.7/doc/functions/gnutls_privkey_import_x509.short
gnutls-3.6.7/doc/functions/gnutls_privkey_import_x509_raw
gnutls-3.6.7/doc/functions/gnutls_privkey_import_x509_raw.short
gnutls-3.6.7/doc/functions/gnutls_privkey_init
gnutls-3.6.7/doc/functions/gnutls_privkey_init.short
gnutls-3.6.7/doc/functions/gnutls_privkey_set_flags
gnutls-3.6.7/doc/functions/gnutls_privkey_set_flags.short
gnutls-3.6.7/doc/functions/gnutls_privkey_set_pin_function
gnutls-3.6.7/doc/functions/gnutls_privkey_set_pin_function.short
gnutls-3.6.7/doc/functions/gnutls_privkey_set_spki
gnutls-3.6.7/doc/functions/gnutls_privkey_set_spki.short
gnutls-3.6.7/doc/functions/gnutls_privkey_sign_data
gnutls-3.6.7/doc/functions/gnutls_privkey_sign_data.short
gnutls-3.6.7/doc/functions/gnutls_privkey_sign_data2
gnutls-3.6.7/doc/functions/gnutls_privkey_sign_data2.short
gnutls-3.6.7/doc/functions/gnutls_privkey_sign_hash
gnutls-3.6.7/doc/functions/gnutls_privkey_sign_hash.short
gnutls-3.6.7/doc/functions/gnutls_privkey_sign_hash2
gnutls-3.6.7/doc/functions/gnutls_privkey_sign_hash2.short
gnutls-3.6.7/doc/functions/gnutls_privkey_status
gnutls-3.6.7/doc/functions/gnutls_privkey_status.short
gnutls-3.6.7/doc/functions/gnutls_privkey_verify_params
gnutls-3.6.7/doc/functions/gnutls_privkey_verify_params.short
gnutls-3.6.7/doc/functions/gnutls_privkey_verify_seed
gnutls-3.6.7/doc/functions/gnutls_privkey_verify_seed.short
gnutls-3.6.7/doc/functions/gnutls_protocol_get_id
gnutls-3.6.7/doc/functions/gnutls_protocol_get_id.short
gnutls-3.6.7/doc/functions/gnutls_protocol_get_name
gnutls-3.6.7/doc/functions/gnutls_protocol_get_name.short
gnutls-3.6.7/doc/functions/gnutls_protocol_get_version
gnutls-3.6.7/doc/functions/gnutls_protocol_get_version.short
gnutls-3.6.7/doc/functions/gnutls_protocol_list
gnutls-3.6.7/doc/functions/gnutls_protocol_list.short
gnutls-3.6.7/doc/functions/gnutls_psk_allocate_client_credentials
gnutls-3.6.7/doc/functions/gnutls_psk_allocate_client_credentials.short
gnutls-3.6.7/doc/functions/gnutls_psk_allocate_server_credentials
gnutls-3.6.7/doc/functions/gnutls_psk_allocate_server_credentials.short
gnutls-3.6.7/doc/functions/gnutls_psk_client_get_hint
gnutls-3.6.7/doc/functions/gnutls_psk_client_get_hint.short
gnutls-3.6.7/doc/functions/gnutls_psk_free_client_credentials
gnutls-3.6.7/doc/functions/gnutls_psk_free_client_credentials.short
gnutls-3.6.7/doc/functions/gnutls_psk_free_server_credentials
gnutls-3.6.7/doc/functions/gnutls_psk_free_server_credentials.short
gnutls-3.6.7/doc/functions/gnutls_psk_server_get_username
gnutls-3.6.7/doc/functions/gnutls_psk_server_get_username.short
gnutls-3.6.7/doc/functions/gnutls_psk_set_client_credentials
gnutls-3.6.7/doc/functions/gnutls_psk_set_client_credentials.short
gnutls-3.6.7/doc/functions/gnutls_psk_set_client_credentials_function
gnutls-3.6.7/doc/functions/gnutls_psk_set_client_credentials_function.short
gnutls-3.6.7/doc/functions/gnutls_psk_set_params_function
gnutls-3.6.7/doc/functions/gnutls_psk_set_params_function.short
gnutls-3.6.7/doc/functions/gnutls_psk_set_server_credentials_file
gnutls-3.6.7/doc/functions/gnutls_psk_set_server_credentials_file.short
gnutls-3.6.7/doc/functions/gnutls_psk_set_server_credentials_function
gnutls-3.6.7/doc/functions/gnutls_psk_set_server_credentials_function.short
gnutls-3.6.7/doc/functions/gnutls_psk_set_server_credentials_hint
gnutls-3.6.7/doc/functions/gnutls_psk_set_server_credentials_hint.short
gnutls-3.6.7/doc/functions/gnutls_psk_set_server_dh_params
gnutls-3.6.7/doc/functions/gnutls_psk_set_server_dh_params.short
gnutls-3.6.7/doc/functions/gnutls_psk_set_server_known_dh_params
gnutls-3.6.7/doc/functions/gnutls_psk_set_server_known_dh_params.short
gnutls-3.6.7/doc/functions/gnutls_psk_set_server_params_function
gnutls-3.6.7/doc/functions/gnutls_psk_set_server_params_function.short
gnutls-3.6.7/doc/functions/gnutls_pubkey_deinit
gnutls-3.6.7/doc/functions/gnutls_pubkey_deinit.short
gnutls-3.6.7/doc/functions/gnutls_pubkey_encrypt_data
gnutls-3.6.7/doc/functions/gnutls_pubkey_encrypt_data.short
gnutls-3.6.7/doc/functions/gnutls_pubkey_export
gnutls-3.6.7/doc/functions/gnutls_pubkey_export.short
gnutls-3.6.7/doc/functions/gnutls_pubkey_export2
gnutls-3.6.7/doc/functions/gnutls_pubkey_export2.short
gnutls-3.6.7/doc/functions/gnutls_pubkey_export_dsa_raw
gnutls-3.6.7/doc/functions/gnutls_pubkey_export_dsa_raw.short
gnutls-3.6.7/doc/functions/gnutls_pubkey_export_dsa_raw2
gnutls-3.6.7/doc/functions/gnutls_pubkey_export_dsa_raw2.short
gnutls-3.6.7/doc/functions/gnutls_pubkey_export_ecc_raw
gnutls-3.6.7/doc/functions/gnutls_pubkey_export_ecc_raw.short
gnutls-3.6.7/doc/functions/gnutls_pubkey_export_ecc_raw2
gnutls-3.6.7/doc/functions/gnutls_pubkey_export_ecc_raw2.short
gnutls-3.6.7/doc/functions/gnutls_pubkey_export_ecc_x962
gnutls-3.6.7/doc/functions/gnutls_pubkey_export_ecc_x962.short
gnutls-3.6.7/doc/functions/gnutls_pubkey_export_gost_raw2
gnutls-3.6.7/doc/functions/gnutls_pubkey_export_gost_raw2.short
gnutls-3.6.7/doc/functions/gnutls_pubkey_export_rsa_raw
gnutls-3.6.7/doc/functions/gnutls_pubkey_export_rsa_raw.short
gnutls-3.6.7/doc/functions/gnutls_pubkey_export_rsa_raw2
gnutls-3.6.7/doc/functions/gnutls_pubkey_export_rsa_raw2.short
gnutls-3.6.7/doc/functions/gnutls_pubkey_get_key_id
gnutls-3.6.7/doc/functions/gnutls_pubkey_get_key_id.short
gnutls-3.6.7/doc/functions/gnutls_pubkey_get_key_usage
gnutls-3.6.7/doc/functions/gnutls_pubkey_get_key_usage.short
gnutls-3.6.7/doc/functions/gnutls_pubkey_get_openpgp_key_id
gnutls-3.6.7/doc/functions/gnutls_pubkey_get_openpgp_key_id.short
gnutls-3.6.7/doc/functions/gnutls_pubkey_get_pk_algorithm
gnutls-3.6.7/doc/functions/gnutls_pubkey_get_pk_algorithm.short
gnutls-3.6.7/doc/functions/gnutls_pubkey_get_preferred_hash_algorithm
gnutls-3.6.7/doc/functions/gnutls_pubkey_get_preferred_hash_algorithm.short
gnutls-3.6.7/doc/functions/gnutls_pubkey_get_spki
gnutls-3.6.7/doc/functions/gnutls_pubkey_get_spki.short
gnutls-3.6.7/doc/functions/gnutls_pubkey_import
gnutls-3.6.7/doc/functions/gnutls_pubkey_import.short
gnutls-3.6.7/doc/functions/gnutls_pubkey_import_dsa_raw
gnutls-3.6.7/doc/functions/gnutls_pubkey_import_dsa_raw.short
gnutls-3.6.7/doc/functions/gnutls_pubkey_import_ecc_raw
gnutls-3.6.7/doc/functions/gnutls_pubkey_import_ecc_raw.short
gnutls-3.6.7/doc/functions/gnutls_pubkey_import_ecc_x962
gnutls-3.6.7/doc/functions/gnutls_pubkey_import_ecc_x962.short
gnutls-3.6.7/doc/functions/gnutls_pubkey_import_gost_raw
gnutls-3.6.7/doc/functions/gnutls_pubkey_import_gost_raw.short
gnutls-3.6.7/doc/functions/gnutls_pubkey_import_openpgp
gnutls-3.6.7/doc/functions/gnutls_pubkey_import_openpgp.short
gnutls-3.6.7/doc/functions/gnutls_pubkey_import_openpgp_raw
gnutls-3.6.7/doc/functions/gnutls_pubkey_import_openpgp_raw.short
gnutls-3.6.7/doc/functions/gnutls_pubkey_import_pkcs11
gnutls-3.6.7/doc/functions/gnutls_pubkey_import_pkcs11.short
gnutls-3.6.7/doc/functions/gnutls_pubkey_import_privkey
gnutls-3.6.7/doc/functions/gnutls_pubkey_import_privkey.short
gnutls-3.6.7/doc/functions/gnutls_pubkey_import_rsa_raw
gnutls-3.6.7/doc/functions/gnutls_pubkey_import_rsa_raw.short
gnutls-3.6.7/doc/functions/gnutls_pubkey_import_tpm_raw
gnutls-3.6.7/doc/functions/gnutls_pubkey_import_tpm_raw.short
gnutls-3.6.7/doc/functions/gnutls_pubkey_import_tpm_url
gnutls-3.6.7/doc/functions/gnutls_pubkey_import_tpm_url.short
gnutls-3.6.7/doc/functions/gnutls_pubkey_import_url
gnutls-3.6.7/doc/functions/gnutls_pubkey_import_url.short
gnutls-3.6.7/doc/functions/gnutls_pubkey_import_x509
gnutls-3.6.7/doc/functions/gnutls_pubkey_import_x509.short
gnutls-3.6.7/doc/functions/gnutls_pubkey_import_x509_crq
gnutls-3.6.7/doc/functions/gnutls_pubkey_import_x509_crq.short
gnutls-3.6.7/doc/functions/gnutls_pubkey_import_x509_raw
gnutls-3.6.7/doc/functions/gnutls_pubkey_import_x509_raw.short
gnutls-3.6.7/doc/functions/gnutls_pubkey_init
gnutls-3.6.7/doc/functions/gnutls_pubkey_init.short
gnutls-3.6.7/doc/functions/gnutls_pubkey_print
gnutls-3.6.7/doc/functions/gnutls_pubkey_print.short
gnutls-3.6.7/doc/functions/gnutls_pubkey_set_key_usage
gnutls-3.6.7/doc/functions/gnutls_pubkey_set_key_usage.short
gnutls-3.6.7/doc/functions/gnutls_pubkey_set_pin_function
gnutls-3.6.7/doc/functions/gnutls_pubkey_set_pin_function.short
gnutls-3.6.7/doc/functions/gnutls_pubkey_set_spki
gnutls-3.6.7/doc/functions/gnutls_pubkey_set_spki.short
gnutls-3.6.7/doc/functions/gnutls_pubkey_verify_data2
gnutls-3.6.7/doc/functions/gnutls_pubkey_verify_data2.short
gnutls-3.6.7/doc/functions/gnutls_pubkey_verify_hash2
gnutls-3.6.7/doc/functions/gnutls_pubkey_verify_hash2.short
gnutls-3.6.7/doc/functions/gnutls_pubkey_verify_params
gnutls-3.6.7/doc/functions/gnutls_pubkey_verify_params.short
gnutls-3.6.7/doc/functions/gnutls_random_art
gnutls-3.6.7/doc/functions/gnutls_random_art.short
gnutls-3.6.7/doc/functions/gnutls_range_split
gnutls-3.6.7/doc/functions/gnutls_range_split.short
gnutls-3.6.7/doc/functions/gnutls_reauth
gnutls-3.6.7/doc/functions/gnutls_reauth.short
gnutls-3.6.7/doc/functions/gnutls_record_can_use_length_hiding
gnutls-3.6.7/doc/functions/gnutls_record_can_use_length_hiding.short
gnutls-3.6.7/doc/functions/gnutls_record_check_corked
gnutls-3.6.7/doc/functions/gnutls_record_check_corked.short
gnutls-3.6.7/doc/functions/gnutls_record_check_pending
gnutls-3.6.7/doc/functions/gnutls_record_check_pending.short
gnutls-3.6.7/doc/functions/gnutls_record_cork
gnutls-3.6.7/doc/functions/gnutls_record_cork.short
gnutls-3.6.7/doc/functions/gnutls_record_disable_padding
gnutls-3.6.7/doc/functions/gnutls_record_disable_padding.short
gnutls-3.6.7/doc/functions/gnutls_record_discard_queued
gnutls-3.6.7/doc/functions/gnutls_record_discard_queued.short
gnutls-3.6.7/doc/functions/gnutls_record_get_direction
gnutls-3.6.7/doc/functions/gnutls_record_get_direction.short
gnutls-3.6.7/doc/functions/gnutls_record_get_discarded
gnutls-3.6.7/doc/functions/gnutls_record_get_discarded.short
gnutls-3.6.7/doc/functions/gnutls_record_get_max_early_data_size
gnutls-3.6.7/doc/functions/gnutls_record_get_max_early_data_size.short
gnutls-3.6.7/doc/functions/gnutls_record_get_max_size
gnutls-3.6.7/doc/functions/gnutls_record_get_max_size.short
gnutls-3.6.7/doc/functions/gnutls_record_get_state
gnutls-3.6.7/doc/functions/gnutls_record_get_state.short
gnutls-3.6.7/doc/functions/gnutls_record_overhead_size
gnutls-3.6.7/doc/functions/gnutls_record_overhead_size.short
gnutls-3.6.7/doc/functions/gnutls_record_recv
gnutls-3.6.7/doc/functions/gnutls_record_recv.short
gnutls-3.6.7/doc/functions/gnutls_record_recv_early_data
gnutls-3.6.7/doc/functions/gnutls_record_recv_early_data.short
gnutls-3.6.7/doc/functions/gnutls_record_recv_packet
gnutls-3.6.7/doc/functions/gnutls_record_recv_packet.short
gnutls-3.6.7/doc/functions/gnutls_record_recv_seq
gnutls-3.6.7/doc/functions/gnutls_record_recv_seq.short
gnutls-3.6.7/doc/functions/gnutls_record_send
gnutls-3.6.7/doc/functions/gnutls_record_send.short
gnutls-3.6.7/doc/functions/gnutls_record_send2
gnutls-3.6.7/doc/functions/gnutls_record_send2.short
gnutls-3.6.7/doc/functions/gnutls_record_send_early_data
gnutls-3.6.7/doc/functions/gnutls_record_send_early_data.short
gnutls-3.6.7/doc/functions/gnutls_record_send_range
gnutls-3.6.7/doc/functions/gnutls_record_send_range.short
gnutls-3.6.7/doc/functions/gnutls_record_set_max_early_data_size
gnutls-3.6.7/doc/functions/gnutls_record_set_max_early_data_size.short
gnutls-3.6.7/doc/functions/gnutls_record_set_max_size
gnutls-3.6.7/doc/functions/gnutls_record_set_max_size.short
gnutls-3.6.7/doc/functions/gnutls_record_set_state
gnutls-3.6.7/doc/functions/gnutls_record_set_state.short
gnutls-3.6.7/doc/functions/gnutls_record_set_timeout
gnutls-3.6.7/doc/functions/gnutls_record_set_timeout.short
gnutls-3.6.7/doc/functions/gnutls_record_uncork
gnutls-3.6.7/doc/functions/gnutls_record_uncork.short
gnutls-3.6.7/doc/functions/gnutls_register_custom_url
gnutls-3.6.7/doc/functions/gnutls_register_custom_url.short
gnutls-3.6.7/doc/functions/gnutls_rehandshake
gnutls-3.6.7/doc/functions/gnutls_rehandshake.short
gnutls-3.6.7/doc/functions/gnutls_rnd
gnutls-3.6.7/doc/functions/gnutls_rnd.short
gnutls-3.6.7/doc/functions/gnutls_rnd_refresh
gnutls-3.6.7/doc/functions/gnutls_rnd_refresh.short
gnutls-3.6.7/doc/functions/gnutls_safe_renegotiation_status
gnutls-3.6.7/doc/functions/gnutls_safe_renegotiation_status.short
gnutls-3.6.7/doc/functions/gnutls_sec_param_get_name
gnutls-3.6.7/doc/functions/gnutls_sec_param_get_name.short
gnutls-3.6.7/doc/functions/gnutls_sec_param_to_pk_bits
gnutls-3.6.7/doc/functions/gnutls_sec_param_to_pk_bits.short
gnutls-3.6.7/doc/functions/gnutls_sec_param_to_symmetric_bits
gnutls-3.6.7/doc/functions/gnutls_sec_param_to_symmetric_bits.short
gnutls-3.6.7/doc/functions/gnutls_server_name_get
gnutls-3.6.7/doc/functions/gnutls_server_name_get.short
gnutls-3.6.7/doc/functions/gnutls_server_name_set
gnutls-3.6.7/doc/functions/gnutls_server_name_set.short
gnutls-3.6.7/doc/functions/gnutls_session_channel_binding
gnutls-3.6.7/doc/functions/gnutls_session_channel_binding.short
gnutls-3.6.7/doc/functions/gnutls_session_enable_compatibility_mode
gnutls-3.6.7/doc/functions/gnutls_session_enable_compatibility_mode.short
gnutls-3.6.7/doc/functions/gnutls_session_etm_status
gnutls-3.6.7/doc/functions/gnutls_session_etm_status.short
gnutls-3.6.7/doc/functions/gnutls_session_ext_master_secret_status
gnutls-3.6.7/doc/functions/gnutls_session_ext_master_secret_status.short
gnutls-3.6.7/doc/functions/gnutls_session_ext_register
gnutls-3.6.7/doc/functions/gnutls_session_ext_register.short
gnutls-3.6.7/doc/functions/gnutls_session_force_valid
gnutls-3.6.7/doc/functions/gnutls_session_force_valid.short
gnutls-3.6.7/doc/functions/gnutls_session_get_data
gnutls-3.6.7/doc/functions/gnutls_session_get_data.short
gnutls-3.6.7/doc/functions/gnutls_session_get_data2
gnutls-3.6.7/doc/functions/gnutls_session_get_data2.short
gnutls-3.6.7/doc/functions/gnutls_session_get_desc
gnutls-3.6.7/doc/functions/gnutls_session_get_desc.short
gnutls-3.6.7/doc/functions/gnutls_session_get_flags
gnutls-3.6.7/doc/functions/gnutls_session_get_flags.short
gnutls-3.6.7/doc/functions/gnutls_session_get_id
gnutls-3.6.7/doc/functions/gnutls_session_get_id.short
gnutls-3.6.7/doc/functions/gnutls_session_get_id2
gnutls-3.6.7/doc/functions/gnutls_session_get_id2.short
gnutls-3.6.7/doc/functions/gnutls_session_get_master_secret
gnutls-3.6.7/doc/functions/gnutls_session_get_master_secret.short
gnutls-3.6.7/doc/functions/gnutls_session_get_ptr
gnutls-3.6.7/doc/functions/gnutls_session_get_ptr.short
gnutls-3.6.7/doc/functions/gnutls_session_get_random
gnutls-3.6.7/doc/functions/gnutls_session_get_random.short
gnutls-3.6.7/doc/functions/gnutls_session_get_verify_cert_status
gnutls-3.6.7/doc/functions/gnutls_session_get_verify_cert_status.short
gnutls-3.6.7/doc/functions/gnutls_session_is_resumed
gnutls-3.6.7/doc/functions/gnutls_session_is_resumed.short
gnutls-3.6.7/doc/functions/gnutls_session_key_update
gnutls-3.6.7/doc/functions/gnutls_session_key_update.short
gnutls-3.6.7/doc/functions/gnutls_session_resumption_requested
gnutls-3.6.7/doc/functions/gnutls_session_resumption_requested.short
gnutls-3.6.7/doc/functions/gnutls_session_set_data
gnutls-3.6.7/doc/functions/gnutls_session_set_data.short
gnutls-3.6.7/doc/functions/gnutls_session_set_id
gnutls-3.6.7/doc/functions/gnutls_session_set_id.short
gnutls-3.6.7/doc/functions/gnutls_session_set_premaster
gnutls-3.6.7/doc/functions/gnutls_session_set_premaster.short
gnutls-3.6.7/doc/functions/gnutls_session_set_ptr
gnutls-3.6.7/doc/functions/gnutls_session_set_ptr.short
gnutls-3.6.7/doc/functions/gnutls_session_set_verify_cert
gnutls-3.6.7/doc/functions/gnutls_session_set_verify_cert.short
gnutls-3.6.7/doc/functions/gnutls_session_set_verify_cert2
gnutls-3.6.7/doc/functions/gnutls_session_set_verify_cert2.short
gnutls-3.6.7/doc/functions/gnutls_session_set_verify_function
gnutls-3.6.7/doc/functions/gnutls_session_set_verify_function.short
gnutls-3.6.7/doc/functions/gnutls_session_supplemental_register
gnutls-3.6.7/doc/functions/gnutls_session_supplemental_register.short
gnutls-3.6.7/doc/functions/gnutls_session_ticket_enable_client
gnutls-3.6.7/doc/functions/gnutls_session_ticket_enable_client.short
gnutls-3.6.7/doc/functions/gnutls_session_ticket_enable_server
gnutls-3.6.7/doc/functions/gnutls_session_ticket_enable_server.short
gnutls-3.6.7/doc/functions/gnutls_session_ticket_key_generate
gnutls-3.6.7/doc/functions/gnutls_session_ticket_key_generate.short
gnutls-3.6.7/doc/functions/gnutls_session_ticket_send
gnutls-3.6.7/doc/functions/gnutls_session_ticket_send.short
gnutls-3.6.7/doc/functions/gnutls_set_default_priority
gnutls-3.6.7/doc/functions/gnutls_set_default_priority.short
gnutls-3.6.7/doc/functions/gnutls_set_default_priority_append
gnutls-3.6.7/doc/functions/gnutls_set_default_priority_append.short
gnutls-3.6.7/doc/functions/gnutls_sign_algorithm_get
gnutls-3.6.7/doc/functions/gnutls_sign_algorithm_get.short
gnutls-3.6.7/doc/functions/gnutls_sign_algorithm_get_client
gnutls-3.6.7/doc/functions/gnutls_sign_algorithm_get_client.short
gnutls-3.6.7/doc/functions/gnutls_sign_algorithm_get_requested
gnutls-3.6.7/doc/functions/gnutls_sign_algorithm_get_requested.short
gnutls-3.6.7/doc/functions/gnutls_sign_get_hash_algorithm
gnutls-3.6.7/doc/functions/gnutls_sign_get_hash_algorithm.short
gnutls-3.6.7/doc/functions/gnutls_sign_get_id
gnutls-3.6.7/doc/functions/gnutls_sign_get_id.short
gnutls-3.6.7/doc/functions/gnutls_sign_get_name
gnutls-3.6.7/doc/functions/gnutls_sign_get_name.short
gnutls-3.6.7/doc/functions/gnutls_sign_get_oid
gnutls-3.6.7/doc/functions/gnutls_sign_get_oid.short
gnutls-3.6.7/doc/functions/gnutls_sign_get_pk_algorithm
gnutls-3.6.7/doc/functions/gnutls_sign_get_pk_algorithm.short
gnutls-3.6.7/doc/functions/gnutls_sign_is_secure
gnutls-3.6.7/doc/functions/gnutls_sign_is_secure.short
gnutls-3.6.7/doc/functions/gnutls_sign_is_secure2
gnutls-3.6.7/doc/functions/gnutls_sign_is_secure2.short
gnutls-3.6.7/doc/functions/gnutls_sign_list
gnutls-3.6.7/doc/functions/gnutls_sign_list.short
gnutls-3.6.7/doc/functions/gnutls_sign_supports_pk_algorithm
gnutls-3.6.7/doc/functions/gnutls_sign_supports_pk_algorithm.short
gnutls-3.6.7/doc/functions/gnutls_srp_allocate_client_credentials
gnutls-3.6.7/doc/functions/gnutls_srp_allocate_client_credentials.short
gnutls-3.6.7/doc/functions/gnutls_srp_allocate_server_credentials
gnutls-3.6.7/doc/functions/gnutls_srp_allocate_server_credentials.short
gnutls-3.6.7/doc/functions/gnutls_srp_base64_decode
gnutls-3.6.7/doc/functions/gnutls_srp_base64_decode.short
gnutls-3.6.7/doc/functions/gnutls_srp_base64_decode2
gnutls-3.6.7/doc/functions/gnutls_srp_base64_decode2.short
gnutls-3.6.7/doc/functions/gnutls_srp_base64_encode
gnutls-3.6.7/doc/functions/gnutls_srp_base64_encode.short
gnutls-3.6.7/doc/functions/gnutls_srp_base64_encode2
gnutls-3.6.7/doc/functions/gnutls_srp_base64_encode2.short
gnutls-3.6.7/doc/functions/gnutls_srp_free_client_credentials
gnutls-3.6.7/doc/functions/gnutls_srp_free_client_credentials.short
gnutls-3.6.7/doc/functions/gnutls_srp_free_server_credentials
gnutls-3.6.7/doc/functions/gnutls_srp_free_server_credentials.short
gnutls-3.6.7/doc/functions/gnutls_srp_server_get_username
gnutls-3.6.7/doc/functions/gnutls_srp_server_get_username.short
gnutls-3.6.7/doc/functions/gnutls_srp_set_client_credentials
gnutls-3.6.7/doc/functions/gnutls_srp_set_client_credentials.short
gnutls-3.6.7/doc/functions/gnutls_srp_set_client_credentials_function
gnutls-3.6.7/doc/functions/gnutls_srp_set_client_credentials_function.short
gnutls-3.6.7/doc/functions/gnutls_srp_set_prime_bits
gnutls-3.6.7/doc/functions/gnutls_srp_set_prime_bits.short
gnutls-3.6.7/doc/functions/gnutls_srp_set_server_credentials_file
gnutls-3.6.7/doc/functions/gnutls_srp_set_server_credentials_file.short
gnutls-3.6.7/doc/functions/gnutls_srp_set_server_credentials_function
gnutls-3.6.7/doc/functions/gnutls_srp_set_server_credentials_function.short
gnutls-3.6.7/doc/functions/gnutls_srp_set_server_fake_salt_seed
gnutls-3.6.7/doc/functions/gnutls_srp_set_server_fake_salt_seed.short
gnutls-3.6.7/doc/functions/gnutls_srp_verifier
gnutls-3.6.7/doc/functions/gnutls_srp_verifier.short
gnutls-3.6.7/doc/functions/gnutls_srtp_get_keys
gnutls-3.6.7/doc/functions/gnutls_srtp_get_keys.short
gnutls-3.6.7/doc/functions/gnutls_srtp_get_mki
gnutls-3.6.7/doc/functions/gnutls_srtp_get_mki.short
gnutls-3.6.7/doc/functions/gnutls_srtp_get_profile_id
gnutls-3.6.7/doc/functions/gnutls_srtp_get_profile_id.short
gnutls-3.6.7/doc/functions/gnutls_srtp_get_profile_name
gnutls-3.6.7/doc/functions/gnutls_srtp_get_profile_name.short
gnutls-3.6.7/doc/functions/gnutls_srtp_get_selected_profile
gnutls-3.6.7/doc/functions/gnutls_srtp_get_selected_profile.short
gnutls-3.6.7/doc/functions/gnutls_srtp_set_mki
gnutls-3.6.7/doc/functions/gnutls_srtp_set_mki.short
gnutls-3.6.7/doc/functions/gnutls_srtp_set_profile
gnutls-3.6.7/doc/functions/gnutls_srtp_set_profile.short
gnutls-3.6.7/doc/functions/gnutls_srtp_set_profile_direct
gnutls-3.6.7/doc/functions/gnutls_srtp_set_profile_direct.short
gnutls-3.6.7/doc/functions/gnutls_store_commitment
gnutls-3.6.7/doc/functions/gnutls_store_commitment.short
gnutls-3.6.7/doc/functions/gnutls_store_pubkey
gnutls-3.6.7/doc/functions/gnutls_store_pubkey.short
gnutls-3.6.7/doc/functions/gnutls_strerror
gnutls-3.6.7/doc/functions/gnutls_strerror.short
gnutls-3.6.7/doc/functions/gnutls_strerror_name
gnutls-3.6.7/doc/functions/gnutls_strerror_name.short
gnutls-3.6.7/doc/functions/gnutls_subject_alt_names_deinit
gnutls-3.6.7/doc/functions/gnutls_subject_alt_names_deinit.short
gnutls-3.6.7/doc/functions/gnutls_subject_alt_names_get
gnutls-3.6.7/doc/functions/gnutls_subject_alt_names_get.short
gnutls-3.6.7/doc/functions/gnutls_subject_alt_names_init
gnutls-3.6.7/doc/functions/gnutls_subject_alt_names_init.short
gnutls-3.6.7/doc/functions/gnutls_subject_alt_names_set
gnutls-3.6.7/doc/functions/gnutls_subject_alt_names_set.short
gnutls-3.6.7/doc/functions/gnutls_supplemental_get_name
gnutls-3.6.7/doc/functions/gnutls_supplemental_get_name.short
gnutls-3.6.7/doc/functions/gnutls_supplemental_recv
gnutls-3.6.7/doc/functions/gnutls_supplemental_recv.short
gnutls-3.6.7/doc/functions/gnutls_supplemental_register
gnutls-3.6.7/doc/functions/gnutls_supplemental_register.short
gnutls-3.6.7/doc/functions/gnutls_supplemental_send
gnutls-3.6.7/doc/functions/gnutls_supplemental_send.short
gnutls-3.6.7/doc/functions/gnutls_system_key_add_x509
gnutls-3.6.7/doc/functions/gnutls_system_key_add_x509.short
gnutls-3.6.7/doc/functions/gnutls_system_key_delete
gnutls-3.6.7/doc/functions/gnutls_system_key_delete.short
gnutls-3.6.7/doc/functions/gnutls_system_key_iter_deinit
gnutls-3.6.7/doc/functions/gnutls_system_key_iter_deinit.short
gnutls-3.6.7/doc/functions/gnutls_system_key_iter_get_info
gnutls-3.6.7/doc/functions/gnutls_system_key_iter_get_info.short
gnutls-3.6.7/doc/functions/gnutls_system_recv_timeout
gnutls-3.6.7/doc/functions/gnutls_system_recv_timeout.short
gnutls-3.6.7/doc/functions/gnutls_tdb_deinit
gnutls-3.6.7/doc/functions/gnutls_tdb_deinit.short
gnutls-3.6.7/doc/functions/gnutls_tdb_init
gnutls-3.6.7/doc/functions/gnutls_tdb_init.short
gnutls-3.6.7/doc/functions/gnutls_tdb_set_store_commitment_func
gnutls-3.6.7/doc/functions/gnutls_tdb_set_store_commitment_func.short
gnutls-3.6.7/doc/functions/gnutls_tdb_set_store_func
gnutls-3.6.7/doc/functions/gnutls_tdb_set_store_func.short
gnutls-3.6.7/doc/functions/gnutls_tdb_set_verify_func
gnutls-3.6.7/doc/functions/gnutls_tdb_set_verify_func.short
gnutls-3.6.7/doc/functions/gnutls_tpm_get_registered
gnutls-3.6.7/doc/functions/gnutls_tpm_get_registered.short
gnutls-3.6.7/doc/functions/gnutls_tpm_key_list_deinit
gnutls-3.6.7/doc/functions/gnutls_tpm_key_list_deinit.short
gnutls-3.6.7/doc/functions/gnutls_tpm_key_list_get_url
gnutls-3.6.7/doc/functions/gnutls_tpm_key_list_get_url.short
gnutls-3.6.7/doc/functions/gnutls_tpm_privkey_delete
gnutls-3.6.7/doc/functions/gnutls_tpm_privkey_delete.short
gnutls-3.6.7/doc/functions/gnutls_tpm_privkey_generate
gnutls-3.6.7/doc/functions/gnutls_tpm_privkey_generate.short
gnutls-3.6.7/doc/functions/gnutls_transport_get_int
gnutls-3.6.7/doc/functions/gnutls_transport_get_int.short
gnutls-3.6.7/doc/functions/gnutls_transport_get_int2
gnutls-3.6.7/doc/functions/gnutls_transport_get_int2.short
gnutls-3.6.7/doc/functions/gnutls_transport_get_ptr
gnutls-3.6.7/doc/functions/gnutls_transport_get_ptr.short
gnutls-3.6.7/doc/functions/gnutls_transport_get_ptr2
gnutls-3.6.7/doc/functions/gnutls_transport_get_ptr2.short
gnutls-3.6.7/doc/functions/gnutls_transport_set_errno
gnutls-3.6.7/doc/functions/gnutls_transport_set_errno.short
gnutls-3.6.7/doc/functions/gnutls_transport_set_errno_function
gnutls-3.6.7/doc/functions/gnutls_transport_set_errno_function.short
gnutls-3.6.7/doc/functions/gnutls_transport_set_fastopen
gnutls-3.6.7/doc/functions/gnutls_transport_set_fastopen.short
gnutls-3.6.7/doc/functions/gnutls_transport_set_int
gnutls-3.6.7/doc/functions/gnutls_transport_set_int.short
gnutls-3.6.7/doc/functions/gnutls_transport_set_int2
gnutls-3.6.7/doc/functions/gnutls_transport_set_int2.short
gnutls-3.6.7/doc/functions/gnutls_transport_set_ptr
gnutls-3.6.7/doc/functions/gnutls_transport_set_ptr.short
gnutls-3.6.7/doc/functions/gnutls_transport_set_ptr2
gnutls-3.6.7/doc/functions/gnutls_transport_set_ptr2.short
gnutls-3.6.7/doc/functions/gnutls_transport_set_pull_function
gnutls-3.6.7/doc/functions/gnutls_transport_set_pull_function.short
gnutls-3.6.7/doc/functions/gnutls_transport_set_pull_timeout_function
gnutls-3.6.7/doc/functions/gnutls_transport_set_pull_timeout_function.short
gnutls-3.6.7/doc/functions/gnutls_transport_set_push_function
gnutls-3.6.7/doc/functions/gnutls_transport_set_push_function.short
gnutls-3.6.7/doc/functions/gnutls_transport_set_vec_push_function
gnutls-3.6.7/doc/functions/gnutls_transport_set_vec_push_function.short
gnutls-3.6.7/doc/functions/gnutls_url_is_supported
gnutls-3.6.7/doc/functions/gnutls_url_is_supported.short
gnutls-3.6.7/doc/functions/gnutls_utf8_password_normalize
gnutls-3.6.7/doc/functions/gnutls_utf8_password_normalize.short
gnutls-3.6.7/doc/functions/gnutls_verify_stored_pubkey
gnutls-3.6.7/doc/functions/gnutls_verify_stored_pubkey.short
gnutls-3.6.7/doc/functions/gnutls_x509_aia_deinit
gnutls-3.6.7/doc/functions/gnutls_x509_aia_deinit.short
gnutls-3.6.7/doc/functions/gnutls_x509_aia_get
gnutls-3.6.7/doc/functions/gnutls_x509_aia_get.short
gnutls-3.6.7/doc/functions/gnutls_x509_aia_init
gnutls-3.6.7/doc/functions/gnutls_x509_aia_init.short
gnutls-3.6.7/doc/functions/gnutls_x509_aia_set
gnutls-3.6.7/doc/functions/gnutls_x509_aia_set.short
gnutls-3.6.7/doc/functions/gnutls_x509_aki_deinit
gnutls-3.6.7/doc/functions/gnutls_x509_aki_deinit.short
gnutls-3.6.7/doc/functions/gnutls_x509_aki_get_cert_issuer
gnutls-3.6.7/doc/functions/gnutls_x509_aki_get_cert_issuer.short
gnutls-3.6.7/doc/functions/gnutls_x509_aki_get_id
gnutls-3.6.7/doc/functions/gnutls_x509_aki_get_id.short
gnutls-3.6.7/doc/functions/gnutls_x509_aki_init
gnutls-3.6.7/doc/functions/gnutls_x509_aki_init.short
gnutls-3.6.7/doc/functions/gnutls_x509_aki_set_cert_issuer
gnutls-3.6.7/doc/functions/gnutls_x509_aki_set_cert_issuer.short
gnutls-3.6.7/doc/functions/gnutls_x509_aki_set_id
gnutls-3.6.7/doc/functions/gnutls_x509_aki_set_id.short
gnutls-3.6.7/doc/functions/gnutls_x509_cidr_to_rfc5280
gnutls-3.6.7/doc/functions/gnutls_x509_cidr_to_rfc5280.short
gnutls-3.6.7/doc/functions/gnutls_x509_crl_check_issuer
gnutls-3.6.7/doc/functions/gnutls_x509_crl_check_issuer.short
gnutls-3.6.7/doc/functions/gnutls_x509_crl_deinit
gnutls-3.6.7/doc/functions/gnutls_x509_crl_deinit.short
gnutls-3.6.7/doc/functions/gnutls_x509_crl_dist_points_deinit
gnutls-3.6.7/doc/functions/gnutls_x509_crl_dist_points_deinit.short
gnutls-3.6.7/doc/functions/gnutls_x509_crl_dist_points_get
gnutls-3.6.7/doc/functions/gnutls_x509_crl_dist_points_get.short
gnutls-3.6.7/doc/functions/gnutls_x509_crl_dist_points_init
gnutls-3.6.7/doc/functions/gnutls_x509_crl_dist_points_init.short
gnutls-3.6.7/doc/functions/gnutls_x509_crl_dist_points_set
gnutls-3.6.7/doc/functions/gnutls_x509_crl_dist_points_set.short
gnutls-3.6.7/doc/functions/gnutls_x509_crl_export
gnutls-3.6.7/doc/functions/gnutls_x509_crl_export.short
gnutls-3.6.7/doc/functions/gnutls_x509_crl_export2
gnutls-3.6.7/doc/functions/gnutls_x509_crl_export2.short
gnutls-3.6.7/doc/functions/gnutls_x509_crl_get_authority_key_gn_serial
gnutls-3.6.7/doc/functions/gnutls_x509_crl_get_authority_key_gn_serial.short
gnutls-3.6.7/doc/functions/gnutls_x509_crl_get_authority_key_id
gnutls-3.6.7/doc/functions/gnutls_x509_crl_get_authority_key_id.short
gnutls-3.6.7/doc/functions/gnutls_x509_crl_get_crt_count
gnutls-3.6.7/doc/functions/gnutls_x509_crl_get_crt_count.short
gnutls-3.6.7/doc/functions/gnutls_x509_crl_get_crt_serial
gnutls-3.6.7/doc/functions/gnutls_x509_crl_get_crt_serial.short
gnutls-3.6.7/doc/functions/gnutls_x509_crl_get_dn_oid
gnutls-3.6.7/doc/functions/gnutls_x509_crl_get_dn_oid.short
gnutls-3.6.7/doc/functions/gnutls_x509_crl_get_extension_data
gnutls-3.6.7/doc/functions/gnutls_x509_crl_get_extension_data.short
gnutls-3.6.7/doc/functions/gnutls_x509_crl_get_extension_data2
gnutls-3.6.7/doc/functions/gnutls_x509_crl_get_extension_data2.short
gnutls-3.6.7/doc/functions/gnutls_x509_crl_get_extension_info
gnutls-3.6.7/doc/functions/gnutls_x509_crl_get_extension_info.short
gnutls-3.6.7/doc/functions/gnutls_x509_crl_get_extension_oid
gnutls-3.6.7/doc/functions/gnutls_x509_crl_get_extension_oid.short
gnutls-3.6.7/doc/functions/gnutls_x509_crl_get_issuer_dn
gnutls-3.6.7/doc/functions/gnutls_x509_crl_get_issuer_dn.short
gnutls-3.6.7/doc/functions/gnutls_x509_crl_get_issuer_dn2
gnutls-3.6.7/doc/functions/gnutls_x509_crl_get_issuer_dn2.short
gnutls-3.6.7/doc/functions/gnutls_x509_crl_get_issuer_dn3
gnutls-3.6.7/doc/functions/gnutls_x509_crl_get_issuer_dn3.short
gnutls-3.6.7/doc/functions/gnutls_x509_crl_get_issuer_dn_by_oid
gnutls-3.6.7/doc/functions/gnutls_x509_crl_get_issuer_dn_by_oid.short
gnutls-3.6.7/doc/functions/gnutls_x509_crl_get_next_update
gnutls-3.6.7/doc/functions/gnutls_x509_crl_get_next_update.short
gnutls-3.6.7/doc/functions/gnutls_x509_crl_get_number
gnutls-3.6.7/doc/functions/gnutls_x509_crl_get_number.short
gnutls-3.6.7/doc/functions/gnutls_x509_crl_get_raw_issuer_dn
gnutls-3.6.7/doc/functions/gnutls_x509_crl_get_raw_issuer_dn.short
gnutls-3.6.7/doc/functions/gnutls_x509_crl_get_signature
gnutls-3.6.7/doc/functions/gnutls_x509_crl_get_signature.short
gnutls-3.6.7/doc/functions/gnutls_x509_crl_get_signature_algorithm
gnutls-3.6.7/doc/functions/gnutls_x509_crl_get_signature_algorithm.short
gnutls-3.6.7/doc/functions/gnutls_x509_crl_get_signature_oid
gnutls-3.6.7/doc/functions/gnutls_x509_crl_get_signature_oid.short
gnutls-3.6.7/doc/functions/gnutls_x509_crl_get_this_update
gnutls-3.6.7/doc/functions/gnutls_x509_crl_get_this_update.short
gnutls-3.6.7/doc/functions/gnutls_x509_crl_get_version
gnutls-3.6.7/doc/functions/gnutls_x509_crl_get_version.short
gnutls-3.6.7/doc/functions/gnutls_x509_crl_import
gnutls-3.6.7/doc/functions/gnutls_x509_crl_import.short
gnutls-3.6.7/doc/functions/gnutls_x509_crl_init
gnutls-3.6.7/doc/functions/gnutls_x509_crl_init.short
gnutls-3.6.7/doc/functions/gnutls_x509_crl_iter_crt_serial
gnutls-3.6.7/doc/functions/gnutls_x509_crl_iter_crt_serial.short
gnutls-3.6.7/doc/functions/gnutls_x509_crl_iter_deinit
gnutls-3.6.7/doc/functions/gnutls_x509_crl_iter_deinit.short
gnutls-3.6.7/doc/functions/gnutls_x509_crl_list_import
gnutls-3.6.7/doc/functions/gnutls_x509_crl_list_import.short
gnutls-3.6.7/doc/functions/gnutls_x509_crl_list_import2
gnutls-3.6.7/doc/functions/gnutls_x509_crl_list_import2.short
gnutls-3.6.7/doc/functions/gnutls_x509_crl_print
gnutls-3.6.7/doc/functions/gnutls_x509_crl_print.short
gnutls-3.6.7/doc/functions/gnutls_x509_crl_privkey_sign
gnutls-3.6.7/doc/functions/gnutls_x509_crl_privkey_sign.short
gnutls-3.6.7/doc/functions/gnutls_x509_crl_set_authority_key_id
gnutls-3.6.7/doc/functions/gnutls_x509_crl_set_authority_key_id.short
gnutls-3.6.7/doc/functions/gnutls_x509_crl_set_crt
gnutls-3.6.7/doc/functions/gnutls_x509_crl_set_crt.short
gnutls-3.6.7/doc/functions/gnutls_x509_crl_set_crt_serial
gnutls-3.6.7/doc/functions/gnutls_x509_crl_set_crt_serial.short
gnutls-3.6.7/doc/functions/gnutls_x509_crl_set_next_update
gnutls-3.6.7/doc/functions/gnutls_x509_crl_set_next_update.short
gnutls-3.6.7/doc/functions/gnutls_x509_crl_set_number
gnutls-3.6.7/doc/functions/gnutls_x509_crl_set_number.short
gnutls-3.6.7/doc/functions/gnutls_x509_crl_set_this_update
gnutls-3.6.7/doc/functions/gnutls_x509_crl_set_this_update.short
gnutls-3.6.7/doc/functions/gnutls_x509_crl_set_version
gnutls-3.6.7/doc/functions/gnutls_x509_crl_set_version.short
gnutls-3.6.7/doc/functions/gnutls_x509_crl_sign
gnutls-3.6.7/doc/functions/gnutls_x509_crl_sign.short
gnutls-3.6.7/doc/functions/gnutls_x509_crl_sign2
gnutls-3.6.7/doc/functions/gnutls_x509_crl_sign2.short
gnutls-3.6.7/doc/functions/gnutls_x509_crl_verify
gnutls-3.6.7/doc/functions/gnutls_x509_crl_verify.short
gnutls-3.6.7/doc/functions/gnutls_x509_crq_deinit
gnutls-3.6.7/doc/functions/gnutls_x509_crq_deinit.short
gnutls-3.6.7/doc/functions/gnutls_x509_crq_export
gnutls-3.6.7/doc/functions/gnutls_x509_crq_export.short
gnutls-3.6.7/doc/functions/gnutls_x509_crq_export2
gnutls-3.6.7/doc/functions/gnutls_x509_crq_export2.short
gnutls-3.6.7/doc/functions/gnutls_x509_crq_get_attribute_by_oid
gnutls-3.6.7/doc/functions/gnutls_x509_crq_get_attribute_by_oid.short
gnutls-3.6.7/doc/functions/gnutls_x509_crq_get_attribute_data
gnutls-3.6.7/doc/functions/gnutls_x509_crq_get_attribute_data.short
gnutls-3.6.7/doc/functions/gnutls_x509_crq_get_attribute_info
gnutls-3.6.7/doc/functions/gnutls_x509_crq_get_attribute_info.short
gnutls-3.6.7/doc/functions/gnutls_x509_crq_get_basic_constraints
gnutls-3.6.7/doc/functions/gnutls_x509_crq_get_basic_constraints.short
gnutls-3.6.7/doc/functions/gnutls_x509_crq_get_challenge_password
gnutls-3.6.7/doc/functions/gnutls_x509_crq_get_challenge_password.short
gnutls-3.6.7/doc/functions/gnutls_x509_crq_get_dn
gnutls-3.6.7/doc/functions/gnutls_x509_crq_get_dn.short
gnutls-3.6.7/doc/functions/gnutls_x509_crq_get_dn2
gnutls-3.6.7/doc/functions/gnutls_x509_crq_get_dn2.short
gnutls-3.6.7/doc/functions/gnutls_x509_crq_get_dn3
gnutls-3.6.7/doc/functions/gnutls_x509_crq_get_dn3.short
gnutls-3.6.7/doc/functions/gnutls_x509_crq_get_dn_by_oid
gnutls-3.6.7/doc/functions/gnutls_x509_crq_get_dn_by_oid.short
gnutls-3.6.7/doc/functions/gnutls_x509_crq_get_dn_oid
gnutls-3.6.7/doc/functions/gnutls_x509_crq_get_dn_oid.short
gnutls-3.6.7/doc/functions/gnutls_x509_crq_get_extension_by_oid
gnutls-3.6.7/doc/functions/gnutls_x509_crq_get_extension_by_oid.short
gnutls-3.6.7/doc/functions/gnutls_x509_crq_get_extension_by_oid2
gnutls-3.6.7/doc/functions/gnutls_x509_crq_get_extension_by_oid2.short
gnutls-3.6.7/doc/functions/gnutls_x509_crq_get_extension_data
gnutls-3.6.7/doc/functions/gnutls_x509_crq_get_extension_data.short
gnutls-3.6.7/doc/functions/gnutls_x509_crq_get_extension_data2
gnutls-3.6.7/doc/functions/gnutls_x509_crq_get_extension_data2.short
gnutls-3.6.7/doc/functions/gnutls_x509_crq_get_extension_info
gnutls-3.6.7/doc/functions/gnutls_x509_crq_get_extension_info.short
gnutls-3.6.7/doc/functions/gnutls_x509_crq_get_key_id
gnutls-3.6.7/doc/functions/gnutls_x509_crq_get_key_id.short
gnutls-3.6.7/doc/functions/gnutls_x509_crq_get_key_purpose_oid
gnutls-3.6.7/doc/functions/gnutls_x509_crq_get_key_purpose_oid.short
gnutls-3.6.7/doc/functions/gnutls_x509_crq_get_key_rsa_raw
gnutls-3.6.7/doc/functions/gnutls_x509_crq_get_key_rsa_raw.short
gnutls-3.6.7/doc/functions/gnutls_x509_crq_get_key_usage
gnutls-3.6.7/doc/functions/gnutls_x509_crq_get_key_usage.short
gnutls-3.6.7/doc/functions/gnutls_x509_crq_get_pk_algorithm
gnutls-3.6.7/doc/functions/gnutls_x509_crq_get_pk_algorithm.short
gnutls-3.6.7/doc/functions/gnutls_x509_crq_get_pk_oid
gnutls-3.6.7/doc/functions/gnutls_x509_crq_get_pk_oid.short
gnutls-3.6.7/doc/functions/gnutls_x509_crq_get_private_key_usage_period
gnutls-3.6.7/doc/functions/gnutls_x509_crq_get_private_key_usage_period.short
gnutls-3.6.7/doc/functions/gnutls_x509_crq_get_signature_algorithm
gnutls-3.6.7/doc/functions/gnutls_x509_crq_get_signature_algorithm.short
gnutls-3.6.7/doc/functions/gnutls_x509_crq_get_signature_oid
gnutls-3.6.7/doc/functions/gnutls_x509_crq_get_signature_oid.short
gnutls-3.6.7/doc/functions/gnutls_x509_crq_get_spki
gnutls-3.6.7/doc/functions/gnutls_x509_crq_get_spki.short
gnutls-3.6.7/doc/functions/gnutls_x509_crq_get_subject_alt_name
gnutls-3.6.7/doc/functions/gnutls_x509_crq_get_subject_alt_name.short
gnutls-3.6.7/doc/functions/gnutls_x509_crq_get_subject_alt_othername_oid
gnutls-3.6.7/doc/functions/gnutls_x509_crq_get_subject_alt_othername_oid.short
gnutls-3.6.7/doc/functions/gnutls_x509_crq_get_tlsfeatures
gnutls-3.6.7/doc/functions/gnutls_x509_crq_get_tlsfeatures.short
gnutls-3.6.7/doc/functions/gnutls_x509_crq_get_version
gnutls-3.6.7/doc/functions/gnutls_x509_crq_get_version.short
gnutls-3.6.7/doc/functions/gnutls_x509_crq_import
gnutls-3.6.7/doc/functions/gnutls_x509_crq_import.short
gnutls-3.6.7/doc/functions/gnutls_x509_crq_init
gnutls-3.6.7/doc/functions/gnutls_x509_crq_init.short
gnutls-3.6.7/doc/functions/gnutls_x509_crq_print
gnutls-3.6.7/doc/functions/gnutls_x509_crq_print.short
gnutls-3.6.7/doc/functions/gnutls_x509_crq_privkey_sign
gnutls-3.6.7/doc/functions/gnutls_x509_crq_privkey_sign.short
gnutls-3.6.7/doc/functions/gnutls_x509_crq_set_attribute_by_oid
gnutls-3.6.7/doc/functions/gnutls_x509_crq_set_attribute_by_oid.short
gnutls-3.6.7/doc/functions/gnutls_x509_crq_set_basic_constraints
gnutls-3.6.7/doc/functions/gnutls_x509_crq_set_basic_constraints.short
gnutls-3.6.7/doc/functions/gnutls_x509_crq_set_challenge_password
gnutls-3.6.7/doc/functions/gnutls_x509_crq_set_challenge_password.short
gnutls-3.6.7/doc/functions/gnutls_x509_crq_set_dn
gnutls-3.6.7/doc/functions/gnutls_x509_crq_set_dn.short
gnutls-3.6.7/doc/functions/gnutls_x509_crq_set_dn_by_oid
gnutls-3.6.7/doc/functions/gnutls_x509_crq_set_dn_by_oid.short
gnutls-3.6.7/doc/functions/gnutls_x509_crq_set_extension_by_oid
gnutls-3.6.7/doc/functions/gnutls_x509_crq_set_extension_by_oid.short
gnutls-3.6.7/doc/functions/gnutls_x509_crq_set_key
gnutls-3.6.7/doc/functions/gnutls_x509_crq_set_key.short
gnutls-3.6.7/doc/functions/gnutls_x509_crq_set_key_purpose_oid
gnutls-3.6.7/doc/functions/gnutls_x509_crq_set_key_purpose_oid.short
gnutls-3.6.7/doc/functions/gnutls_x509_crq_set_key_rsa_raw
gnutls-3.6.7/doc/functions/gnutls_x509_crq_set_key_rsa_raw.short
gnutls-3.6.7/doc/functions/gnutls_x509_crq_set_key_usage
gnutls-3.6.7/doc/functions/gnutls_x509_crq_set_key_usage.short
gnutls-3.6.7/doc/functions/gnutls_x509_crq_set_private_key_usage_period
gnutls-3.6.7/doc/functions/gnutls_x509_crq_set_private_key_usage_period.short
gnutls-3.6.7/doc/functions/gnutls_x509_crq_set_pubkey
gnutls-3.6.7/doc/functions/gnutls_x509_crq_set_pubkey.short
gnutls-3.6.7/doc/functions/gnutls_x509_crq_set_spki
gnutls-3.6.7/doc/functions/gnutls_x509_crq_set_spki.short
gnutls-3.6.7/doc/functions/gnutls_x509_crq_set_subject_alt_name
gnutls-3.6.7/doc/functions/gnutls_x509_crq_set_subject_alt_name.short
gnutls-3.6.7/doc/functions/gnutls_x509_crq_set_subject_alt_othername
gnutls-3.6.7/doc/functions/gnutls_x509_crq_set_subject_alt_othername.short
gnutls-3.6.7/doc/functions/gnutls_x509_crq_set_tlsfeatures
gnutls-3.6.7/doc/functions/gnutls_x509_crq_set_tlsfeatures.short
gnutls-3.6.7/doc/functions/gnutls_x509_crq_set_version
gnutls-3.6.7/doc/functions/gnutls_x509_crq_set_version.short
gnutls-3.6.7/doc/functions/gnutls_x509_crq_sign
gnutls-3.6.7/doc/functions/gnutls_x509_crq_sign.short
gnutls-3.6.7/doc/functions/gnutls_x509_crq_sign2
gnutls-3.6.7/doc/functions/gnutls_x509_crq_sign2.short
gnutls-3.6.7/doc/functions/gnutls_x509_crq_verify
gnutls-3.6.7/doc/functions/gnutls_x509_crq_verify.short
gnutls-3.6.7/doc/functions/gnutls_x509_crt_check_email
gnutls-3.6.7/doc/functions/gnutls_x509_crt_check_email.short
gnutls-3.6.7/doc/functions/gnutls_x509_crt_check_hostname
gnutls-3.6.7/doc/functions/gnutls_x509_crt_check_hostname.short
gnutls-3.6.7/doc/functions/gnutls_x509_crt_check_hostname2
gnutls-3.6.7/doc/functions/gnutls_x509_crt_check_hostname2.short
gnutls-3.6.7/doc/functions/gnutls_x509_crt_check_ip
gnutls-3.6.7/doc/functions/gnutls_x509_crt_check_ip.short
gnutls-3.6.7/doc/functions/gnutls_x509_crt_check_issuer
gnutls-3.6.7/doc/functions/gnutls_x509_crt_check_issuer.short
gnutls-3.6.7/doc/functions/gnutls_x509_crt_check_key_purpose
gnutls-3.6.7/doc/functions/gnutls_x509_crt_check_key_purpose.short
gnutls-3.6.7/doc/functions/gnutls_x509_crt_check_revocation
gnutls-3.6.7/doc/functions/gnutls_x509_crt_check_revocation.short
gnutls-3.6.7/doc/functions/gnutls_x509_crt_cpy_crl_dist_points
gnutls-3.6.7/doc/functions/gnutls_x509_crt_cpy_crl_dist_points.short
gnutls-3.6.7/doc/functions/gnutls_x509_crt_deinit
gnutls-3.6.7/doc/functions/gnutls_x509_crt_deinit.short
gnutls-3.6.7/doc/functions/gnutls_x509_crt_equals
gnutls-3.6.7/doc/functions/gnutls_x509_crt_equals.short
gnutls-3.6.7/doc/functions/gnutls_x509_crt_equals2
gnutls-3.6.7/doc/functions/gnutls_x509_crt_equals2.short
gnutls-3.6.7/doc/functions/gnutls_x509_crt_export
gnutls-3.6.7/doc/functions/gnutls_x509_crt_export.short
gnutls-3.6.7/doc/functions/gnutls_x509_crt_export2
gnutls-3.6.7/doc/functions/gnutls_x509_crt_export2.short
gnutls-3.6.7/doc/functions/gnutls_x509_crt_get_activation_time
gnutls-3.6.7/doc/functions/gnutls_x509_crt_get_activation_time.short
gnutls-3.6.7/doc/functions/gnutls_x509_crt_get_authority_info_access
gnutls-3.6.7/doc/functions/gnutls_x509_crt_get_authority_info_access.short
gnutls-3.6.7/doc/functions/gnutls_x509_crt_get_authority_key_gn_serial
gnutls-3.6.7/doc/functions/gnutls_x509_crt_get_authority_key_gn_serial.short
gnutls-3.6.7/doc/functions/gnutls_x509_crt_get_authority_key_id
gnutls-3.6.7/doc/functions/gnutls_x509_crt_get_authority_key_id.short
gnutls-3.6.7/doc/functions/gnutls_x509_crt_get_basic_constraints
gnutls-3.6.7/doc/functions/gnutls_x509_crt_get_basic_constraints.short
gnutls-3.6.7/doc/functions/gnutls_x509_crt_get_ca_status
gnutls-3.6.7/doc/functions/gnutls_x509_crt_get_ca_status.short
gnutls-3.6.7/doc/functions/gnutls_x509_crt_get_crl_dist_points
gnutls-3.6.7/doc/functions/gnutls_x509_crt_get_crl_dist_points.short
gnutls-3.6.7/doc/functions/gnutls_x509_crt_get_dn
gnutls-3.6.7/doc/functions/gnutls_x509_crt_get_dn.short
gnutls-3.6.7/doc/functions/gnutls_x509_crt_get_dn2
gnutls-3.6.7/doc/functions/gnutls_x509_crt_get_dn2.short
gnutls-3.6.7/doc/functions/gnutls_x509_crt_get_dn3
gnutls-3.6.7/doc/functions/gnutls_x509_crt_get_dn3.short
gnutls-3.6.7/doc/functions/gnutls_x509_crt_get_dn_by_oid
gnutls-3.6.7/doc/functions/gnutls_x509_crt_get_dn_by_oid.short
gnutls-3.6.7/doc/functions/gnutls_x509_crt_get_dn_oid
gnutls-3.6.7/doc/functions/gnutls_x509_crt_get_dn_oid.short
gnutls-3.6.7/doc/functions/gnutls_x509_crt_get_expiration_time
gnutls-3.6.7/doc/functions/gnutls_x509_crt_get_expiration_time.short
gnutls-3.6.7/doc/functions/gnutls_x509_crt_get_extension_by_oid
gnutls-3.6.7/doc/functions/gnutls_x509_crt_get_extension_by_oid.short
gnutls-3.6.7/doc/functions/gnutls_x509_crt_get_extension_by_oid2
gnutls-3.6.7/doc/functions/gnutls_x509_crt_get_extension_by_oid2.short
gnutls-3.6.7/doc/functions/gnutls_x509_crt_get_extension_data
gnutls-3.6.7/doc/functions/gnutls_x509_crt_get_extension_data.short
gnutls-3.6.7/doc/functions/gnutls_x509_crt_get_extension_data2
gnutls-3.6.7/doc/functions/gnutls_x509_crt_get_extension_data2.short
gnutls-3.6.7/doc/functions/gnutls_x509_crt_get_extension_info
gnutls-3.6.7/doc/functions/gnutls_x509_crt_get_extension_info.short
gnutls-3.6.7/doc/functions/gnutls_x509_crt_get_extension_oid
gnutls-3.6.7/doc/functions/gnutls_x509_crt_get_extension_oid.short
gnutls-3.6.7/doc/functions/gnutls_x509_crt_get_fingerprint
gnutls-3.6.7/doc/functions/gnutls_x509_crt_get_fingerprint.short
gnutls-3.6.7/doc/functions/gnutls_x509_crt_get_inhibit_anypolicy
gnutls-3.6.7/doc/functions/gnutls_x509_crt_get_inhibit_anypolicy.short
gnutls-3.6.7/doc/functions/gnutls_x509_crt_get_issuer
gnutls-3.6.7/doc/functions/gnutls_x509_crt_get_issuer.short
gnutls-3.6.7/doc/functions/gnutls_x509_crt_get_issuer_alt_name
gnutls-3.6.7/doc/functions/gnutls_x509_crt_get_issuer_alt_name.short
gnutls-3.6.7/doc/functions/gnutls_x509_crt_get_issuer_alt_name2
gnutls-3.6.7/doc/functions/gnutls_x509_crt_get_issuer_alt_name2.short
gnutls-3.6.7/doc/functions/gnutls_x509_crt_get_issuer_alt_othername_oid
gnutls-3.6.7/doc/functions/gnutls_x509_crt_get_issuer_alt_othername_oid.short
gnutls-3.6.7/doc/functions/gnutls_x509_crt_get_issuer_dn
gnutls-3.6.7/doc/functions/gnutls_x509_crt_get_issuer_dn.short
gnutls-3.6.7/doc/functions/gnutls_x509_crt_get_issuer_dn2
gnutls-3.6.7/doc/functions/gnutls_x509_crt_get_issuer_dn2.short
gnutls-3.6.7/doc/functions/gnutls_x509_crt_get_issuer_dn3
gnutls-3.6.7/doc/functions/gnutls_x509_crt_get_issuer_dn3.short
gnutls-3.6.7/doc/functions/gnutls_x509_crt_get_issuer_dn_by_oid
gnutls-3.6.7/doc/functions/gnutls_x509_crt_get_issuer_dn_by_oid.short
gnutls-3.6.7/doc/functions/gnutls_x509_crt_get_issuer_dn_oid
gnutls-3.6.7/doc/functions/gnutls_x509_crt_get_issuer_dn_oid.short
gnutls-3.6.7/doc/functions/gnutls_x509_crt_get_issuer_unique_id
gnutls-3.6.7/doc/functions/gnutls_x509_crt_get_issuer_unique_id.short
gnutls-3.6.7/doc/functions/gnutls_x509_crt_get_key_id
gnutls-3.6.7/doc/functions/gnutls_x509_crt_get_key_id.short
gnutls-3.6.7/doc/functions/gnutls_x509_crt_get_key_purpose_oid
gnutls-3.6.7/doc/functions/gnutls_x509_crt_get_key_purpose_oid.short
gnutls-3.6.7/doc/functions/gnutls_x509_crt_get_key_usage
gnutls-3.6.7/doc/functions/gnutls_x509_crt_get_key_usage.short
gnutls-3.6.7/doc/functions/gnutls_x509_crt_get_name_constraints
gnutls-3.6.7/doc/functions/gnutls_x509_crt_get_name_constraints.short
gnutls-3.6.7/doc/functions/gnutls_x509_crt_get_pk_algorithm
gnutls-3.6.7/doc/functions/gnutls_x509_crt_get_pk_algorithm.short
gnutls-3.6.7/doc/functions/gnutls_x509_crt_get_pk_dsa_raw
gnutls-3.6.7/doc/functions/gnutls_x509_crt_get_pk_dsa_raw.short
gnutls-3.6.7/doc/functions/gnutls_x509_crt_get_pk_ecc_raw
gnutls-3.6.7/doc/functions/gnutls_x509_crt_get_pk_ecc_raw.short
gnutls-3.6.7/doc/functions/gnutls_x509_crt_get_pk_gost_raw
gnutls-3.6.7/doc/functions/gnutls_x509_crt_get_pk_gost_raw.short
gnutls-3.6.7/doc/functions/gnutls_x509_crt_get_pk_oid
gnutls-3.6.7/doc/functions/gnutls_x509_crt_get_pk_oid.short
gnutls-3.6.7/doc/functions/gnutls_x509_crt_get_pk_rsa_raw
gnutls-3.6.7/doc/functions/gnutls_x509_crt_get_pk_rsa_raw.short
gnutls-3.6.7/doc/functions/gnutls_x509_crt_get_policy
gnutls-3.6.7/doc/functions/gnutls_x509_crt_get_policy.short
gnutls-3.6.7/doc/functions/gnutls_x509_crt_get_preferred_hash_algorithm
gnutls-3.6.7/doc/functions/gnutls_x509_crt_get_preferred_hash_algorithm.short
gnutls-3.6.7/doc/functions/gnutls_x509_crt_get_private_key_usage_period
gnutls-3.6.7/doc/functions/gnutls_x509_crt_get_private_key_usage_period.short
gnutls-3.6.7/doc/functions/gnutls_x509_crt_get_proxy
gnutls-3.6.7/doc/functions/gnutls_x509_crt_get_proxy.short
gnutls-3.6.7/doc/functions/gnutls_x509_crt_get_raw_dn
gnutls-3.6.7/doc/functions/gnutls_x509_crt_get_raw_dn.short
gnutls-3.6.7/doc/functions/gnutls_x509_crt_get_raw_issuer_dn
gnutls-3.6.7/doc/functions/gnutls_x509_crt_get_raw_issuer_dn.short
gnutls-3.6.7/doc/functions/gnutls_x509_crt_get_serial
gnutls-3.6.7/doc/functions/gnutls_x509_crt_get_serial.short
gnutls-3.6.7/doc/functions/gnutls_x509_crt_get_signature
gnutls-3.6.7/doc/functions/gnutls_x509_crt_get_signature.short
gnutls-3.6.7/doc/functions/gnutls_x509_crt_get_signature_algorithm
gnutls-3.6.7/doc/functions/gnutls_x509_crt_get_signature_algorithm.short
gnutls-3.6.7/doc/functions/gnutls_x509_crt_get_signature_oid
gnutls-3.6.7/doc/functions/gnutls_x509_crt_get_signature_oid.short
gnutls-3.6.7/doc/functions/gnutls_x509_crt_get_spki
gnutls-3.6.7/doc/functions/gnutls_x509_crt_get_spki.short
gnutls-3.6.7/doc/functions/gnutls_x509_crt_get_subject
gnutls-3.6.7/doc/functions/gnutls_x509_crt_get_subject.short
gnutls-3.6.7/doc/functions/gnutls_x509_crt_get_subject_alt_name
gnutls-3.6.7/doc/functions/gnutls_x509_crt_get_subject_alt_name.short
gnutls-3.6.7/doc/functions/gnutls_x509_crt_get_subject_alt_name2
gnutls-3.6.7/doc/functions/gnutls_x509_crt_get_subject_alt_name2.short
gnutls-3.6.7/doc/functions/gnutls_x509_crt_get_subject_alt_othername_oid
gnutls-3.6.7/doc/functions/gnutls_x509_crt_get_subject_alt_othername_oid.short
gnutls-3.6.7/doc/functions/gnutls_x509_crt_get_subject_key_id
gnutls-3.6.7/doc/functions/gnutls_x509_crt_get_subject_key_id.short
gnutls-3.6.7/doc/functions/gnutls_x509_crt_get_subject_unique_id
gnutls-3.6.7/doc/functions/gnutls_x509_crt_get_subject_unique_id.short
gnutls-3.6.7/doc/functions/gnutls_x509_crt_get_tlsfeatures
gnutls-3.6.7/doc/functions/gnutls_x509_crt_get_tlsfeatures.short
gnutls-3.6.7/doc/functions/gnutls_x509_crt_get_version
gnutls-3.6.7/doc/functions/gnutls_x509_crt_get_version.short
gnutls-3.6.7/doc/functions/gnutls_x509_crt_import
gnutls-3.6.7/doc/functions/gnutls_x509_crt_import.short
gnutls-3.6.7/doc/functions/gnutls_x509_crt_import_pkcs11
gnutls-3.6.7/doc/functions/gnutls_x509_crt_import_pkcs11.short
gnutls-3.6.7/doc/functions/gnutls_x509_crt_import_url
gnutls-3.6.7/doc/functions/gnutls_x509_crt_import_url.short
gnutls-3.6.7/doc/functions/gnutls_x509_crt_init
gnutls-3.6.7/doc/functions/gnutls_x509_crt_init.short
gnutls-3.6.7/doc/functions/gnutls_x509_crt_list_import
gnutls-3.6.7/doc/functions/gnutls_x509_crt_list_import.short
gnutls-3.6.7/doc/functions/gnutls_x509_crt_list_import2
gnutls-3.6.7/doc/functions/gnutls_x509_crt_list_import2.short
gnutls-3.6.7/doc/functions/gnutls_x509_crt_list_import_pkcs11
gnutls-3.6.7/doc/functions/gnutls_x509_crt_list_import_pkcs11.short
gnutls-3.6.7/doc/functions/gnutls_x509_crt_list_import_url
gnutls-3.6.7/doc/functions/gnutls_x509_crt_list_import_url.short
gnutls-3.6.7/doc/functions/gnutls_x509_crt_list_verify
gnutls-3.6.7/doc/functions/gnutls_x509_crt_list_verify.short
gnutls-3.6.7/doc/functions/gnutls_x509_crt_print
gnutls-3.6.7/doc/functions/gnutls_x509_crt_print.short
gnutls-3.6.7/doc/functions/gnutls_x509_crt_privkey_sign
gnutls-3.6.7/doc/functions/gnutls_x509_crt_privkey_sign.short
gnutls-3.6.7/doc/functions/gnutls_x509_crt_set_activation_time
gnutls-3.6.7/doc/functions/gnutls_x509_crt_set_activation_time.short
gnutls-3.6.7/doc/functions/gnutls_x509_crt_set_authority_info_access
gnutls-3.6.7/doc/functions/gnutls_x509_crt_set_authority_info_access.short
gnutls-3.6.7/doc/functions/gnutls_x509_crt_set_authority_key_id
gnutls-3.6.7/doc/functions/gnutls_x509_crt_set_authority_key_id.short
gnutls-3.6.7/doc/functions/gnutls_x509_crt_set_basic_constraints
gnutls-3.6.7/doc/functions/gnutls_x509_crt_set_basic_constraints.short
gnutls-3.6.7/doc/functions/gnutls_x509_crt_set_ca_status
gnutls-3.6.7/doc/functions/gnutls_x509_crt_set_ca_status.short
gnutls-3.6.7/doc/functions/gnutls_x509_crt_set_crl_dist_points
gnutls-3.6.7/doc/functions/gnutls_x509_crt_set_crl_dist_points.short
gnutls-3.6.7/doc/functions/gnutls_x509_crt_set_crl_dist_points2
gnutls-3.6.7/doc/functions/gnutls_x509_crt_set_crl_dist_points2.short
gnutls-3.6.7/doc/functions/gnutls_x509_crt_set_crq
gnutls-3.6.7/doc/functions/gnutls_x509_crt_set_crq.short
gnutls-3.6.7/doc/functions/gnutls_x509_crt_set_crq_extension_by_oid
gnutls-3.6.7/doc/functions/gnutls_x509_crt_set_crq_extension_by_oid.short
gnutls-3.6.7/doc/functions/gnutls_x509_crt_set_crq_extensions
gnutls-3.6.7/doc/functions/gnutls_x509_crt_set_crq_extensions.short
gnutls-3.6.7/doc/functions/gnutls_x509_crt_set_dn
gnutls-3.6.7/doc/functions/gnutls_x509_crt_set_dn.short
gnutls-3.6.7/doc/functions/gnutls_x509_crt_set_dn_by_oid
gnutls-3.6.7/doc/functions/gnutls_x509_crt_set_dn_by_oid.short
gnutls-3.6.7/doc/functions/gnutls_x509_crt_set_expiration_time
gnutls-3.6.7/doc/functions/gnutls_x509_crt_set_expiration_time.short
gnutls-3.6.7/doc/functions/gnutls_x509_crt_set_extension_by_oid
gnutls-3.6.7/doc/functions/gnutls_x509_crt_set_extension_by_oid.short
gnutls-3.6.7/doc/functions/gnutls_x509_crt_set_flags
gnutls-3.6.7/doc/functions/gnutls_x509_crt_set_flags.short
gnutls-3.6.7/doc/functions/gnutls_x509_crt_set_inhibit_anypolicy
gnutls-3.6.7/doc/functions/gnutls_x509_crt_set_inhibit_anypolicy.short
gnutls-3.6.7/doc/functions/gnutls_x509_crt_set_issuer_alt_name
gnutls-3.6.7/doc/functions/gnutls_x509_crt_set_issuer_alt_name.short
gnutls-3.6.7/doc/functions/gnutls_x509_crt_set_issuer_alt_othername
gnutls-3.6.7/doc/functions/gnutls_x509_crt_set_issuer_alt_othername.short
gnutls-3.6.7/doc/functions/gnutls_x509_crt_set_issuer_dn
gnutls-3.6.7/doc/functions/gnutls_x509_crt_set_issuer_dn.short
gnutls-3.6.7/doc/functions/gnutls_x509_crt_set_issuer_dn_by_oid
gnutls-3.6.7/doc/functions/gnutls_x509_crt_set_issuer_dn_by_oid.short
gnutls-3.6.7/doc/functions/gnutls_x509_crt_set_issuer_unique_id
gnutls-3.6.7/doc/functions/gnutls_x509_crt_set_issuer_unique_id.short
gnutls-3.6.7/doc/functions/gnutls_x509_crt_set_key
gnutls-3.6.7/doc/functions/gnutls_x509_crt_set_key.short
gnutls-3.6.7/doc/functions/gnutls_x509_crt_set_key_purpose_oid
gnutls-3.6.7/doc/functions/gnutls_x509_crt_set_key_purpose_oid.short
gnutls-3.6.7/doc/functions/gnutls_x509_crt_set_key_usage
gnutls-3.6.7/doc/functions/gnutls_x509_crt_set_key_usage.short
gnutls-3.6.7/doc/functions/gnutls_x509_crt_set_name_constraints
gnutls-3.6.7/doc/functions/gnutls_x509_crt_set_name_constraints.short
gnutls-3.6.7/doc/functions/gnutls_x509_crt_set_pin_function
gnutls-3.6.7/doc/functions/gnutls_x509_crt_set_pin_function.short
gnutls-3.6.7/doc/functions/gnutls_x509_crt_set_policy
gnutls-3.6.7/doc/functions/gnutls_x509_crt_set_policy.short
gnutls-3.6.7/doc/functions/gnutls_x509_crt_set_private_key_usage_period
gnutls-3.6.7/doc/functions/gnutls_x509_crt_set_private_key_usage_period.short
gnutls-3.6.7/doc/functions/gnutls_x509_crt_set_proxy
gnutls-3.6.7/doc/functions/gnutls_x509_crt_set_proxy.short
gnutls-3.6.7/doc/functions/gnutls_x509_crt_set_proxy_dn
gnutls-3.6.7/doc/functions/gnutls_x509_crt_set_proxy_dn.short
gnutls-3.6.7/doc/functions/gnutls_x509_crt_set_pubkey
gnutls-3.6.7/doc/functions/gnutls_x509_crt_set_pubkey.short
gnutls-3.6.7/doc/functions/gnutls_x509_crt_set_serial
gnutls-3.6.7/doc/functions/gnutls_x509_crt_set_serial.short
gnutls-3.6.7/doc/functions/gnutls_x509_crt_set_spki
gnutls-3.6.7/doc/functions/gnutls_x509_crt_set_spki.short
gnutls-3.6.7/doc/functions/gnutls_x509_crt_set_subject_alt_name
gnutls-3.6.7/doc/functions/gnutls_x509_crt_set_subject_alt_name.short
gnutls-3.6.7/doc/functions/gnutls_x509_crt_set_subject_alt_othername
gnutls-3.6.7/doc/functions/gnutls_x509_crt_set_subject_alt_othername.short
gnutls-3.6.7/doc/functions/gnutls_x509_crt_set_subject_alternative_name
gnutls-3.6.7/doc/functions/gnutls_x509_crt_set_subject_alternative_name.short
gnutls-3.6.7/doc/functions/gnutls_x509_crt_set_subject_key_id
gnutls-3.6.7/doc/functions/gnutls_x509_crt_set_subject_key_id.short
gnutls-3.6.7/doc/functions/gnutls_x509_crt_set_subject_unique_id
gnutls-3.6.7/doc/functions/gnutls_x509_crt_set_subject_unique_id.short
gnutls-3.6.7/doc/functions/gnutls_x509_crt_set_tlsfeatures
gnutls-3.6.7/doc/functions/gnutls_x509_crt_set_tlsfeatures.short
gnutls-3.6.7/doc/functions/gnutls_x509_crt_set_version
gnutls-3.6.7/doc/functions/gnutls_x509_crt_set_version.short
gnutls-3.6.7/doc/functions/gnutls_x509_crt_sign
gnutls-3.6.7/doc/functions/gnutls_x509_crt_sign.short
gnutls-3.6.7/doc/functions/gnutls_x509_crt_sign2
gnutls-3.6.7/doc/functions/gnutls_x509_crt_sign2.short
gnutls-3.6.7/doc/functions/gnutls_x509_crt_verify
gnutls-3.6.7/doc/functions/gnutls_x509_crt_verify.short
gnutls-3.6.7/doc/functions/gnutls_x509_crt_verify_data2
gnutls-3.6.7/doc/functions/gnutls_x509_crt_verify_data2.short
gnutls-3.6.7/doc/functions/gnutls_x509_dn_deinit
gnutls-3.6.7/doc/functions/gnutls_x509_dn_deinit.short
gnutls-3.6.7/doc/functions/gnutls_x509_dn_export
gnutls-3.6.7/doc/functions/gnutls_x509_dn_export.short
gnutls-3.6.7/doc/functions/gnutls_x509_dn_export2
gnutls-3.6.7/doc/functions/gnutls_x509_dn_export2.short
gnutls-3.6.7/doc/functions/gnutls_x509_dn_get_rdn_ava
gnutls-3.6.7/doc/functions/gnutls_x509_dn_get_rdn_ava.short
gnutls-3.6.7/doc/functions/gnutls_x509_dn_get_str
gnutls-3.6.7/doc/functions/gnutls_x509_dn_get_str.short
gnutls-3.6.7/doc/functions/gnutls_x509_dn_get_str2
gnutls-3.6.7/doc/functions/gnutls_x509_dn_get_str2.short
gnutls-3.6.7/doc/functions/gnutls_x509_dn_import
gnutls-3.6.7/doc/functions/gnutls_x509_dn_import.short
gnutls-3.6.7/doc/functions/gnutls_x509_dn_init
gnutls-3.6.7/doc/functions/gnutls_x509_dn_init.short
gnutls-3.6.7/doc/functions/gnutls_x509_dn_oid_known
gnutls-3.6.7/doc/functions/gnutls_x509_dn_oid_known.short
gnutls-3.6.7/doc/functions/gnutls_x509_dn_oid_name
gnutls-3.6.7/doc/functions/gnutls_x509_dn_oid_name.short
gnutls-3.6.7/doc/functions/gnutls_x509_dn_set_str
gnutls-3.6.7/doc/functions/gnutls_x509_dn_set_str.short
gnutls-3.6.7/doc/functions/gnutls_x509_ext_deinit
gnutls-3.6.7/doc/functions/gnutls_x509_ext_deinit.short
gnutls-3.6.7/doc/functions/gnutls_x509_ext_export_aia
gnutls-3.6.7/doc/functions/gnutls_x509_ext_export_aia.short
gnutls-3.6.7/doc/functions/gnutls_x509_ext_export_authority_key_id
gnutls-3.6.7/doc/functions/gnutls_x509_ext_export_authority_key_id.short
gnutls-3.6.7/doc/functions/gnutls_x509_ext_export_basic_constraints
gnutls-3.6.7/doc/functions/gnutls_x509_ext_export_basic_constraints.short
gnutls-3.6.7/doc/functions/gnutls_x509_ext_export_crl_dist_points
gnutls-3.6.7/doc/functions/gnutls_x509_ext_export_crl_dist_points.short
gnutls-3.6.7/doc/functions/gnutls_x509_ext_export_inhibit_anypolicy
gnutls-3.6.7/doc/functions/gnutls_x509_ext_export_inhibit_anypolicy.short
gnutls-3.6.7/doc/functions/gnutls_x509_ext_export_key_purposes
gnutls-3.6.7/doc/functions/gnutls_x509_ext_export_key_purposes.short
gnutls-3.6.7/doc/functions/gnutls_x509_ext_export_key_usage
gnutls-3.6.7/doc/functions/gnutls_x509_ext_export_key_usage.short
gnutls-3.6.7/doc/functions/gnutls_x509_ext_export_name_constraints
gnutls-3.6.7/doc/functions/gnutls_x509_ext_export_name_constraints.short
gnutls-3.6.7/doc/functions/gnutls_x509_ext_export_policies
gnutls-3.6.7/doc/functions/gnutls_x509_ext_export_policies.short
gnutls-3.6.7/doc/functions/gnutls_x509_ext_export_private_key_usage_period
gnutls-3.6.7/doc/functions/gnutls_x509_ext_export_private_key_usage_period.short
gnutls-3.6.7/doc/functions/gnutls_x509_ext_export_proxy
gnutls-3.6.7/doc/functions/gnutls_x509_ext_export_proxy.short
gnutls-3.6.7/doc/functions/gnutls_x509_ext_export_subject_alt_names
gnutls-3.6.7/doc/functions/gnutls_x509_ext_export_subject_alt_names.short
gnutls-3.6.7/doc/functions/gnutls_x509_ext_export_subject_key_id
gnutls-3.6.7/doc/functions/gnutls_x509_ext_export_subject_key_id.short
gnutls-3.6.7/doc/functions/gnutls_x509_ext_export_tlsfeatures
gnutls-3.6.7/doc/functions/gnutls_x509_ext_export_tlsfeatures.short
gnutls-3.6.7/doc/functions/gnutls_x509_ext_import_aia
gnutls-3.6.7/doc/functions/gnutls_x509_ext_import_aia.short
gnutls-3.6.7/doc/functions/gnutls_x509_ext_import_authority_key_id
gnutls-3.6.7/doc/functions/gnutls_x509_ext_import_authority_key_id.short
gnutls-3.6.7/doc/functions/gnutls_x509_ext_import_basic_constraints
gnutls-3.6.7/doc/functions/gnutls_x509_ext_import_basic_constraints.short
gnutls-3.6.7/doc/functions/gnutls_x509_ext_import_crl_dist_points
gnutls-3.6.7/doc/functions/gnutls_x509_ext_import_crl_dist_points.short
gnutls-3.6.7/doc/functions/gnutls_x509_ext_import_inhibit_anypolicy
gnutls-3.6.7/doc/functions/gnutls_x509_ext_import_inhibit_anypolicy.short
gnutls-3.6.7/doc/functions/gnutls_x509_ext_import_key_purposes
gnutls-3.6.7/doc/functions/gnutls_x509_ext_import_key_purposes.short
gnutls-3.6.7/doc/functions/gnutls_x509_ext_import_key_usage
gnutls-3.6.7/doc/functions/gnutls_x509_ext_import_key_usage.short
gnutls-3.6.7/doc/functions/gnutls_x509_ext_import_name_constraints
gnutls-3.6.7/doc/functions/gnutls_x509_ext_import_name_constraints.short
gnutls-3.6.7/doc/functions/gnutls_x509_ext_import_policies
gnutls-3.6.7/doc/functions/gnutls_x509_ext_import_policies.short
gnutls-3.6.7/doc/functions/gnutls_x509_ext_import_private_key_usage_period
gnutls-3.6.7/doc/functions/gnutls_x509_ext_import_private_key_usage_period.short
gnutls-3.6.7/doc/functions/gnutls_x509_ext_import_proxy
gnutls-3.6.7/doc/functions/gnutls_x509_ext_import_proxy.short
gnutls-3.6.7/doc/functions/gnutls_x509_ext_import_subject_alt_names
gnutls-3.6.7/doc/functions/gnutls_x509_ext_import_subject_alt_names.short
gnutls-3.6.7/doc/functions/gnutls_x509_ext_import_subject_key_id
gnutls-3.6.7/doc/functions/gnutls_x509_ext_import_subject_key_id.short
gnutls-3.6.7/doc/functions/gnutls_x509_ext_import_tlsfeatures
gnutls-3.6.7/doc/functions/gnutls_x509_ext_import_tlsfeatures.short
gnutls-3.6.7/doc/functions/gnutls_x509_ext_print
gnutls-3.6.7/doc/functions/gnutls_x509_ext_print.short
gnutls-3.6.7/doc/functions/gnutls_x509_key_purpose_deinit
gnutls-3.6.7/doc/functions/gnutls_x509_key_purpose_deinit.short
gnutls-3.6.7/doc/functions/gnutls_x509_key_purpose_get
gnutls-3.6.7/doc/functions/gnutls_x509_key_purpose_get.short
gnutls-3.6.7/doc/functions/gnutls_x509_key_purpose_init
gnutls-3.6.7/doc/functions/gnutls_x509_key_purpose_init.short
gnutls-3.6.7/doc/functions/gnutls_x509_key_purpose_set
gnutls-3.6.7/doc/functions/gnutls_x509_key_purpose_set.short
gnutls-3.6.7/doc/functions/gnutls_x509_name_constraints_add_excluded
gnutls-3.6.7/doc/functions/gnutls_x509_name_constraints_add_excluded.short
gnutls-3.6.7/doc/functions/gnutls_x509_name_constraints_add_permitted
gnutls-3.6.7/doc/functions/gnutls_x509_name_constraints_add_permitted.short
gnutls-3.6.7/doc/functions/gnutls_x509_name_constraints_check
gnutls-3.6.7/doc/functions/gnutls_x509_name_constraints_check.short
gnutls-3.6.7/doc/functions/gnutls_x509_name_constraints_check_crt
gnutls-3.6.7/doc/functions/gnutls_x509_name_constraints_check_crt.short
gnutls-3.6.7/doc/functions/gnutls_x509_name_constraints_deinit
gnutls-3.6.7/doc/functions/gnutls_x509_name_constraints_deinit.short
gnutls-3.6.7/doc/functions/gnutls_x509_name_constraints_get_excluded
gnutls-3.6.7/doc/functions/gnutls_x509_name_constraints_get_excluded.short
gnutls-3.6.7/doc/functions/gnutls_x509_name_constraints_get_permitted
gnutls-3.6.7/doc/functions/gnutls_x509_name_constraints_get_permitted.short
gnutls-3.6.7/doc/functions/gnutls_x509_name_constraints_init
gnutls-3.6.7/doc/functions/gnutls_x509_name_constraints_init.short
gnutls-3.6.7/doc/functions/gnutls_x509_othername_to_virtual
gnutls-3.6.7/doc/functions/gnutls_x509_othername_to_virtual.short
gnutls-3.6.7/doc/functions/gnutls_x509_policies_deinit
gnutls-3.6.7/doc/functions/gnutls_x509_policies_deinit.short
gnutls-3.6.7/doc/functions/gnutls_x509_policies_get
gnutls-3.6.7/doc/functions/gnutls_x509_policies_get.short
gnutls-3.6.7/doc/functions/gnutls_x509_policies_init
gnutls-3.6.7/doc/functions/gnutls_x509_policies_init.short
gnutls-3.6.7/doc/functions/gnutls_x509_policies_set
gnutls-3.6.7/doc/functions/gnutls_x509_policies_set.short
gnutls-3.6.7/doc/functions/gnutls_x509_policy_release
gnutls-3.6.7/doc/functions/gnutls_x509_policy_release.short
gnutls-3.6.7/doc/functions/gnutls_x509_privkey_cpy
gnutls-3.6.7/doc/functions/gnutls_x509_privkey_cpy.short
gnutls-3.6.7/doc/functions/gnutls_x509_privkey_deinit
gnutls-3.6.7/doc/functions/gnutls_x509_privkey_deinit.short
gnutls-3.6.7/doc/functions/gnutls_x509_privkey_export
gnutls-3.6.7/doc/functions/gnutls_x509_privkey_export.short
gnutls-3.6.7/doc/functions/gnutls_x509_privkey_export2
gnutls-3.6.7/doc/functions/gnutls_x509_privkey_export2.short
gnutls-3.6.7/doc/functions/gnutls_x509_privkey_export2_pkcs8
gnutls-3.6.7/doc/functions/gnutls_x509_privkey_export2_pkcs8.short
gnutls-3.6.7/doc/functions/gnutls_x509_privkey_export_dsa_raw
gnutls-3.6.7/doc/functions/gnutls_x509_privkey_export_dsa_raw.short
gnutls-3.6.7/doc/functions/gnutls_x509_privkey_export_ecc_raw
gnutls-3.6.7/doc/functions/gnutls_x509_privkey_export_ecc_raw.short
gnutls-3.6.7/doc/functions/gnutls_x509_privkey_export_gost_raw
gnutls-3.6.7/doc/functions/gnutls_x509_privkey_export_gost_raw.short
gnutls-3.6.7/doc/functions/gnutls_x509_privkey_export_pkcs8
gnutls-3.6.7/doc/functions/gnutls_x509_privkey_export_pkcs8.short
gnutls-3.6.7/doc/functions/gnutls_x509_privkey_export_rsa_raw
gnutls-3.6.7/doc/functions/gnutls_x509_privkey_export_rsa_raw.short
gnutls-3.6.7/doc/functions/gnutls_x509_privkey_export_rsa_raw2
gnutls-3.6.7/doc/functions/gnutls_x509_privkey_export_rsa_raw2.short
gnutls-3.6.7/doc/functions/gnutls_x509_privkey_fix
gnutls-3.6.7/doc/functions/gnutls_x509_privkey_fix.short
gnutls-3.6.7/doc/functions/gnutls_x509_privkey_generate
gnutls-3.6.7/doc/functions/gnutls_x509_privkey_generate.short
gnutls-3.6.7/doc/functions/gnutls_x509_privkey_generate2
gnutls-3.6.7/doc/functions/gnutls_x509_privkey_generate2.short
gnutls-3.6.7/doc/functions/gnutls_x509_privkey_get_key_id
gnutls-3.6.7/doc/functions/gnutls_x509_privkey_get_key_id.short
gnutls-3.6.7/doc/functions/gnutls_x509_privkey_get_pk_algorithm
gnutls-3.6.7/doc/functions/gnutls_x509_privkey_get_pk_algorithm.short
gnutls-3.6.7/doc/functions/gnutls_x509_privkey_get_pk_algorithm2
gnutls-3.6.7/doc/functions/gnutls_x509_privkey_get_pk_algorithm2.short
gnutls-3.6.7/doc/functions/gnutls_x509_privkey_get_seed
gnutls-3.6.7/doc/functions/gnutls_x509_privkey_get_seed.short
gnutls-3.6.7/doc/functions/gnutls_x509_privkey_get_spki
gnutls-3.6.7/doc/functions/gnutls_x509_privkey_get_spki.short
gnutls-3.6.7/doc/functions/gnutls_x509_privkey_import
gnutls-3.6.7/doc/functions/gnutls_x509_privkey_import.short
gnutls-3.6.7/doc/functions/gnutls_x509_privkey_import2
gnutls-3.6.7/doc/functions/gnutls_x509_privkey_import2.short
gnutls-3.6.7/doc/functions/gnutls_x509_privkey_import_dsa_raw
gnutls-3.6.7/doc/functions/gnutls_x509_privkey_import_dsa_raw.short
gnutls-3.6.7/doc/functions/gnutls_x509_privkey_import_ecc_raw
gnutls-3.6.7/doc/functions/gnutls_x509_privkey_import_ecc_raw.short
gnutls-3.6.7/doc/functions/gnutls_x509_privkey_import_gost_raw
gnutls-3.6.7/doc/functions/gnutls_x509_privkey_import_gost_raw.short
gnutls-3.6.7/doc/functions/gnutls_x509_privkey_import_openssl
gnutls-3.6.7/doc/functions/gnutls_x509_privkey_import_openssl.short
gnutls-3.6.7/doc/functions/gnutls_x509_privkey_import_pkcs8
gnutls-3.6.7/doc/functions/gnutls_x509_privkey_import_pkcs8.short
gnutls-3.6.7/doc/functions/gnutls_x509_privkey_import_rsa_raw
gnutls-3.6.7/doc/functions/gnutls_x509_privkey_import_rsa_raw.short
gnutls-3.6.7/doc/functions/gnutls_x509_privkey_import_rsa_raw2
gnutls-3.6.7/doc/functions/gnutls_x509_privkey_import_rsa_raw2.short
gnutls-3.6.7/doc/functions/gnutls_x509_privkey_init
gnutls-3.6.7/doc/functions/gnutls_x509_privkey_init.short
gnutls-3.6.7/doc/functions/gnutls_x509_privkey_sec_param
gnutls-3.6.7/doc/functions/gnutls_x509_privkey_sec_param.short
gnutls-3.6.7/doc/functions/gnutls_x509_privkey_set_flags
gnutls-3.6.7/doc/functions/gnutls_x509_privkey_set_flags.short
gnutls-3.6.7/doc/functions/gnutls_x509_privkey_set_pin_function
gnutls-3.6.7/doc/functions/gnutls_x509_privkey_set_pin_function.short
gnutls-3.6.7/doc/functions/gnutls_x509_privkey_set_spki
gnutls-3.6.7/doc/functions/gnutls_x509_privkey_set_spki.short
gnutls-3.6.7/doc/functions/gnutls_x509_privkey_sign_data
gnutls-3.6.7/doc/functions/gnutls_x509_privkey_sign_data.short
gnutls-3.6.7/doc/functions/gnutls_x509_privkey_sign_hash
gnutls-3.6.7/doc/functions/gnutls_x509_privkey_sign_hash.short
gnutls-3.6.7/doc/functions/gnutls_x509_privkey_verify_params
gnutls-3.6.7/doc/functions/gnutls_x509_privkey_verify_params.short
gnutls-3.6.7/doc/functions/gnutls_x509_privkey_verify_seed
gnutls-3.6.7/doc/functions/gnutls_x509_privkey_verify_seed.short
gnutls-3.6.7/doc/functions/gnutls_x509_rdn_get
gnutls-3.6.7/doc/functions/gnutls_x509_rdn_get.short
gnutls-3.6.7/doc/functions/gnutls_x509_rdn_get2
gnutls-3.6.7/doc/functions/gnutls_x509_rdn_get2.short
gnutls-3.6.7/doc/functions/gnutls_x509_rdn_get_by_oid
gnutls-3.6.7/doc/functions/gnutls_x509_rdn_get_by_oid.short
gnutls-3.6.7/doc/functions/gnutls_x509_rdn_get_oid
gnutls-3.6.7/doc/functions/gnutls_x509_rdn_get_oid.short
gnutls-3.6.7/doc/functions/gnutls_x509_spki_deinit
gnutls-3.6.7/doc/functions/gnutls_x509_spki_deinit.short
gnutls-3.6.7/doc/functions/gnutls_x509_spki_get_rsa_pss_params
gnutls-3.6.7/doc/functions/gnutls_x509_spki_get_rsa_pss_params.short
gnutls-3.6.7/doc/functions/gnutls_x509_spki_init
gnutls-3.6.7/doc/functions/gnutls_x509_spki_init.short
gnutls-3.6.7/doc/functions/gnutls_x509_spki_set_rsa_pss_params
gnutls-3.6.7/doc/functions/gnutls_x509_spki_set_rsa_pss_params.short
gnutls-3.6.7/doc/functions/gnutls_x509_tlsfeatures_add
gnutls-3.6.7/doc/functions/gnutls_x509_tlsfeatures_add.short
gnutls-3.6.7/doc/functions/gnutls_x509_tlsfeatures_check_crt
gnutls-3.6.7/doc/functions/gnutls_x509_tlsfeatures_check_crt.short
gnutls-3.6.7/doc/functions/gnutls_x509_tlsfeatures_deinit
gnutls-3.6.7/doc/functions/gnutls_x509_tlsfeatures_deinit.short
gnutls-3.6.7/doc/functions/gnutls_x509_tlsfeatures_get
gnutls-3.6.7/doc/functions/gnutls_x509_tlsfeatures_get.short
gnutls-3.6.7/doc/functions/gnutls_x509_tlsfeatures_init
gnutls-3.6.7/doc/functions/gnutls_x509_tlsfeatures_init.short
gnutls-3.6.7/doc/functions/gnutls_x509_trust_list_add_cas
gnutls-3.6.7/doc/functions/gnutls_x509_trust_list_add_cas.short
gnutls-3.6.7/doc/functions/gnutls_x509_trust_list_add_crls
gnutls-3.6.7/doc/functions/gnutls_x509_trust_list_add_crls.short
gnutls-3.6.7/doc/functions/gnutls_x509_trust_list_add_named_crt
gnutls-3.6.7/doc/functions/gnutls_x509_trust_list_add_named_crt.short
gnutls-3.6.7/doc/functions/gnutls_x509_trust_list_add_system_trust
gnutls-3.6.7/doc/functions/gnutls_x509_trust_list_add_system_trust.short
gnutls-3.6.7/doc/functions/gnutls_x509_trust_list_add_trust_dir
gnutls-3.6.7/doc/functions/gnutls_x509_trust_list_add_trust_dir.short
gnutls-3.6.7/doc/functions/gnutls_x509_trust_list_add_trust_file
gnutls-3.6.7/doc/functions/gnutls_x509_trust_list_add_trust_file.short
gnutls-3.6.7/doc/functions/gnutls_x509_trust_list_add_trust_mem
gnutls-3.6.7/doc/functions/gnutls_x509_trust_list_add_trust_mem.short
gnutls-3.6.7/doc/functions/gnutls_x509_trust_list_deinit
gnutls-3.6.7/doc/functions/gnutls_x509_trust_list_deinit.short
gnutls-3.6.7/doc/functions/gnutls_x509_trust_list_get_issuer
gnutls-3.6.7/doc/functions/gnutls_x509_trust_list_get_issuer.short
gnutls-3.6.7/doc/functions/gnutls_x509_trust_list_get_issuer_by_dn
gnutls-3.6.7/doc/functions/gnutls_x509_trust_list_get_issuer_by_dn.short
gnutls-3.6.7/doc/functions/gnutls_x509_trust_list_get_issuer_by_subject_key_id
gnutls-3.6.7/doc/functions/gnutls_x509_trust_list_get_issuer_by_subject_key_id.short
gnutls-3.6.7/doc/functions/gnutls_x509_trust_list_init
gnutls-3.6.7/doc/functions/gnutls_x509_trust_list_init.short
gnutls-3.6.7/doc/functions/gnutls_x509_trust_list_iter_deinit
gnutls-3.6.7/doc/functions/gnutls_x509_trust_list_iter_deinit.short
gnutls-3.6.7/doc/functions/gnutls_x509_trust_list_iter_get_ca
gnutls-3.6.7/doc/functions/gnutls_x509_trust_list_iter_get_ca.short
gnutls-3.6.7/doc/functions/gnutls_x509_trust_list_remove_cas
gnutls-3.6.7/doc/functions/gnutls_x509_trust_list_remove_cas.short
gnutls-3.6.7/doc/functions/gnutls_x509_trust_list_remove_trust_file
gnutls-3.6.7/doc/functions/gnutls_x509_trust_list_remove_trust_file.short
gnutls-3.6.7/doc/functions/gnutls_x509_trust_list_remove_trust_mem
gnutls-3.6.7/doc/functions/gnutls_x509_trust_list_remove_trust_mem.short
gnutls-3.6.7/doc/functions/gnutls_x509_trust_list_verify_crt
gnutls-3.6.7/doc/functions/gnutls_x509_trust_list_verify_crt.short
gnutls-3.6.7/doc/functions/gnutls_x509_trust_list_verify_crt2
gnutls-3.6.7/doc/functions/gnutls_x509_trust_list_verify_crt2.short
gnutls-3.6.7/doc/functions/gnutls_x509_trust_list_verify_named_crt
gnutls-3.6.7/doc/functions/gnutls_x509_trust_list_verify_named_crt.short
gnutls-3.6.7/doc/gnutls-api.texi
gnutls-3.6.7/doc/gnutls-client-server-use-case.dia
gnutls-3.6.7/doc/gnutls-client-server-use-case.eps
gnutls-3.6.7/doc/gnutls-client-server-use-case.png
gnutls-3.6.7/doc/gnutls-crypto-layers.dia
gnutls-3.6.7/doc/gnutls-crypto-layers.eps
gnutls-3.6.7/doc/gnutls-crypto-layers.png
gnutls-3.6.7/doc/gnutls-guile.html
gnutls-3.6.7/doc/gnutls-guile.info
gnutls-3.6.7/doc/gnutls-guile.pdf
gnutls-3.6.7/doc/gnutls-guile.texi
gnutls-3.6.7/doc/gnutls-handshake-sequence.dia
gnutls-3.6.7/doc/gnutls-handshake-sequence.eps
gnutls-3.6.7/doc/gnutls-handshake-sequence.png
gnutls-3.6.7/doc/gnutls-handshake-state.dia
gnutls-3.6.7/doc/gnutls-handshake-state.eps
gnutls-3.6.7/doc/gnutls-handshake-state.png
gnutls-3.6.7/doc/gnutls-internals.dia
gnutls-3.6.7/doc/gnutls-internals.eps
gnutls-3.6.7/doc/gnutls-internals.png
gnutls-3.6.7/doc/gnutls-layers.dia
gnutls-3.6.7/doc/gnutls-layers.eps
gnutls-3.6.7/doc/gnutls-layers.png
gnutls-3.6.7/doc/gnutls-logo.eps
gnutls-3.6.7/doc/gnutls-logo.png
gnutls-3.6.7/doc/gnutls-modauth.dia
gnutls-3.6.7/doc/gnutls-modauth.eps
gnutls-3.6.7/doc/gnutls-modauth.png
gnutls-3.6.7/doc/gnutls-x509.dia
gnutls-3.6.7/doc/gnutls-x509.eps
gnutls-3.6.7/doc/gnutls-x509.png
gnutls-3.6.7/doc/gnutls.html
gnutls-3.6.7/doc/gnutls.info
gnutls-3.6.7/doc/gnutls.info-1
gnutls-3.6.7/doc/gnutls.info-2
gnutls-3.6.7/doc/gnutls.info-3
gnutls-3.6.7/doc/gnutls.info-4
gnutls-3.6.7/doc/gnutls.info-5
gnutls-3.6.7/doc/gnutls.info-6
gnutls-3.6.7/doc/gnutls.info-7
gnutls-3.6.7/doc/gnutls.pdf
gnutls-3.6.7/doc/gnutls.texi
gnutls-3.6.7/doc/invoke-certtool.texi
gnutls-3.6.7/doc/invoke-danetool.texi
gnutls-3.6.7/doc/invoke-gnutls-cli-debug.texi
gnutls-3.6.7/doc/invoke-gnutls-cli.texi
gnutls-3.6.7/doc/invoke-gnutls-serv.texi
gnutls-3.6.7/doc/invoke-ocsptool.texi
gnutls-3.6.7/doc/invoke-p11tool.texi
gnutls-3.6.7/doc/invoke-psktool.texi
gnutls-3.6.7/doc/invoke-srptool.texi
gnutls-3.6.7/doc/invoke-tpmtool.texi
gnutls-3.6.7/doc/latex/
gnutls-3.6.7/doc/latex/Makefile.am
gnutls-3.6.7/doc/latex/Makefile.in
gnutls-3.6.7/doc/manpages/
gnutls-3.6.7/doc/manpages/Makefile.am
gnutls-3.6.7/doc/manpages/Makefile.in
gnutls-3.6.7/doc/manpages/certtool.1
gnutls-3.6.7/doc/manpages/dane_cert_type_name.3
gnutls-3.6.7/doc/manpages/dane_cert_usage_name.3
gnutls-3.6.7/doc/manpages/dane_match_type_name.3
gnutls-3.6.7/doc/manpages/dane_query_data.3
gnutls-3.6.7/doc/manpages/dane_query_deinit.3
gnutls-3.6.7/doc/manpages/dane_query_entries.3
gnutls-3.6.7/doc/manpages/dane_query_status.3
gnutls-3.6.7/doc/manpages/dane_query_tlsa.3
gnutls-3.6.7/doc/manpages/dane_query_to_raw_tlsa.3
gnutls-3.6.7/doc/manpages/dane_raw_tlsa.3
gnutls-3.6.7/doc/manpages/dane_state_deinit.3
gnutls-3.6.7/doc/manpages/dane_state_init.3
gnutls-3.6.7/doc/manpages/dane_state_set_dlv_file.3
gnutls-3.6.7/doc/manpages/dane_strerror.3
gnutls-3.6.7/doc/manpages/dane_verification_status_print.3
gnutls-3.6.7/doc/manpages/dane_verify_crt.3
gnutls-3.6.7/doc/manpages/dane_verify_crt_raw.3
gnutls-3.6.7/doc/manpages/dane_verify_session_crt.3
gnutls-3.6.7/doc/manpages/danetool.1
gnutls-3.6.7/doc/manpages/gnutls-cli-debug.1
gnutls-3.6.7/doc/manpages/gnutls-cli.1
gnutls-3.6.7/doc/manpages/gnutls-serv.1
gnutls-3.6.7/doc/manpages/gnutls_aead_cipher_decrypt.3
gnutls-3.6.7/doc/manpages/gnutls_aead_cipher_deinit.3
gnutls-3.6.7/doc/manpages/gnutls_aead_cipher_encrypt.3
gnutls-3.6.7/doc/manpages/gnutls_aead_cipher_encryptv.3
gnutls-3.6.7/doc/manpages/gnutls_aead_cipher_init.3
gnutls-3.6.7/doc/manpages/gnutls_alert_get.3
gnutls-3.6.7/doc/manpages/gnutls_alert_get_name.3
gnutls-3.6.7/doc/manpages/gnutls_alert_get_strname.3
gnutls-3.6.7/doc/manpages/gnutls_alert_send.3
gnutls-3.6.7/doc/manpages/gnutls_alert_send_appropriate.3
gnutls-3.6.7/doc/manpages/gnutls_alpn_get_selected_protocol.3
gnutls-3.6.7/doc/manpages/gnutls_alpn_set_protocols.3
gnutls-3.6.7/doc/manpages/gnutls_anon_allocate_client_credentials.3
gnutls-3.6.7/doc/manpages/gnutls_anon_allocate_server_credentials.3
gnutls-3.6.7/doc/manpages/gnutls_anon_free_client_credentials.3
gnutls-3.6.7/doc/manpages/gnutls_anon_free_server_credentials.3
gnutls-3.6.7/doc/manpages/gnutls_anon_set_params_function.3
gnutls-3.6.7/doc/manpages/gnutls_anon_set_server_dh_params.3
gnutls-3.6.7/doc/manpages/gnutls_anon_set_server_known_dh_params.3
gnutls-3.6.7/doc/manpages/gnutls_anon_set_server_params_function.3
gnutls-3.6.7/doc/manpages/gnutls_anti_replay_deinit.3
gnutls-3.6.7/doc/manpages/gnutls_anti_replay_enable.3
gnutls-3.6.7/doc/manpages/gnutls_anti_replay_init.3
gnutls-3.6.7/doc/manpages/gnutls_anti_replay_set_add_function.3
gnutls-3.6.7/doc/manpages/gnutls_anti_replay_set_ptr.3
gnutls-3.6.7/doc/manpages/gnutls_anti_replay_set_window.3
gnutls-3.6.7/doc/manpages/gnutls_auth_client_get_type.3
gnutls-3.6.7/doc/manpages/gnutls_auth_get_type.3
gnutls-3.6.7/doc/manpages/gnutls_auth_server_get_type.3
gnutls-3.6.7/doc/manpages/gnutls_base64_decode2.3
gnutls-3.6.7/doc/manpages/gnutls_base64_encode2.3
gnutls-3.6.7/doc/manpages/gnutls_buffer_append_data.3
gnutls-3.6.7/doc/manpages/gnutls_bye.3
gnutls-3.6.7/doc/manpages/gnutls_certificate_activation_time_peers.3
gnutls-3.6.7/doc/manpages/gnutls_certificate_allocate_credentials.3
gnutls-3.6.7/doc/manpages/gnutls_certificate_client_get_request_status.3
gnutls-3.6.7/doc/manpages/gnutls_certificate_expiration_time_peers.3
gnutls-3.6.7/doc/manpages/gnutls_certificate_free_ca_names.3
gnutls-3.6.7/doc/manpages/gnutls_certificate_free_cas.3
gnutls-3.6.7/doc/manpages/gnutls_certificate_free_credentials.3
gnutls-3.6.7/doc/manpages/gnutls_certificate_free_crls.3
gnutls-3.6.7/doc/manpages/gnutls_certificate_free_keys.3
gnutls-3.6.7/doc/manpages/gnutls_certificate_get_crt_raw.3
gnutls-3.6.7/doc/manpages/gnutls_certificate_get_issuer.3
gnutls-3.6.7/doc/manpages/gnutls_certificate_get_ocsp_expiration.3
gnutls-3.6.7/doc/manpages/gnutls_certificate_get_ours.3
gnutls-3.6.7/doc/manpages/gnutls_certificate_get_peers.3
gnutls-3.6.7/doc/manpages/gnutls_certificate_get_peers_subkey_id.3
gnutls-3.6.7/doc/manpages/gnutls_certificate_get_trust_list.3
gnutls-3.6.7/doc/manpages/gnutls_certificate_get_verify_flags.3
gnutls-3.6.7/doc/manpages/gnutls_certificate_get_x509_crt.3
gnutls-3.6.7/doc/manpages/gnutls_certificate_get_x509_key.3
gnutls-3.6.7/doc/manpages/gnutls_certificate_send_x509_rdn_sequence.3
gnutls-3.6.7/doc/manpages/gnutls_certificate_server_set_request.3
gnutls-3.6.7/doc/manpages/gnutls_certificate_set_dh_params.3
gnutls-3.6.7/doc/manpages/gnutls_certificate_set_flags.3
gnutls-3.6.7/doc/manpages/gnutls_certificate_set_key.3
gnutls-3.6.7/doc/manpages/gnutls_certificate_set_known_dh_params.3
gnutls-3.6.7/doc/manpages/gnutls_certificate_set_ocsp_status_request_file.3
gnutls-3.6.7/doc/manpages/gnutls_certificate_set_ocsp_status_request_file2.3
gnutls-3.6.7/doc/manpages/gnutls_certificate_set_ocsp_status_request_function.3
gnutls-3.6.7/doc/manpages/gnutls_certificate_set_ocsp_status_request_function2.3
gnutls-3.6.7/doc/manpages/gnutls_certificate_set_ocsp_status_request_mem.3
gnutls-3.6.7/doc/manpages/gnutls_certificate_set_params_function.3
gnutls-3.6.7/doc/manpages/gnutls_certificate_set_pin_function.3
gnutls-3.6.7/doc/manpages/gnutls_certificate_set_rawpk_key_file.3
gnutls-3.6.7/doc/manpages/gnutls_certificate_set_rawpk_key_mem.3
gnutls-3.6.7/doc/manpages/gnutls_certificate_set_retrieve_function.3
gnutls-3.6.7/doc/manpages/gnutls_certificate_set_retrieve_function2.3
gnutls-3.6.7/doc/manpages/gnutls_certificate_set_retrieve_function3.3
gnutls-3.6.7/doc/manpages/gnutls_certificate_set_trust_list.3
gnutls-3.6.7/doc/manpages/gnutls_certificate_set_verify_flags.3
gnutls-3.6.7/doc/manpages/gnutls_certificate_set_verify_function.3
gnutls-3.6.7/doc/manpages/gnutls_certificate_set_verify_limits.3
gnutls-3.6.7/doc/manpages/gnutls_certificate_set_x509_crl.3
gnutls-3.6.7/doc/manpages/gnutls_certificate_set_x509_crl_file.3
gnutls-3.6.7/doc/manpages/gnutls_certificate_set_x509_crl_mem.3
gnutls-3.6.7/doc/manpages/gnutls_certificate_set_x509_key.3
gnutls-3.6.7/doc/manpages/gnutls_certificate_set_x509_key_file.3
gnutls-3.6.7/doc/manpages/gnutls_certificate_set_x509_key_file2.3
gnutls-3.6.7/doc/manpages/gnutls_certificate_set_x509_key_mem.3
gnutls-3.6.7/doc/manpages/gnutls_certificate_set_x509_key_mem2.3
gnutls-3.6.7/doc/manpages/gnutls_certificate_set_x509_simple_pkcs12_file.3
gnutls-3.6.7/doc/manpages/gnutls_certificate_set_x509_simple_pkcs12_mem.3
gnutls-3.6.7/doc/manpages/gnutls_certificate_set_x509_system_trust.3
gnutls-3.6.7/doc/manpages/gnutls_certificate_set_x509_trust.3
gnutls-3.6.7/doc/manpages/gnutls_certificate_set_x509_trust_dir.3
gnutls-3.6.7/doc/manpages/gnutls_certificate_set_x509_trust_file.3
gnutls-3.6.7/doc/manpages/gnutls_certificate_set_x509_trust_mem.3
gnutls-3.6.7/doc/manpages/gnutls_certificate_type_get.3
gnutls-3.6.7/doc/manpages/gnutls_certificate_type_get2.3
gnutls-3.6.7/doc/manpages/gnutls_certificate_type_get_id.3
gnutls-3.6.7/doc/manpages/gnutls_certificate_type_get_name.3
gnutls-3.6.7/doc/manpages/gnutls_certificate_type_list.3
gnutls-3.6.7/doc/manpages/gnutls_certificate_verification_status_print.3
gnutls-3.6.7/doc/manpages/gnutls_certificate_verify_peers.3
gnutls-3.6.7/doc/manpages/gnutls_certificate_verify_peers2.3
gnutls-3.6.7/doc/manpages/gnutls_certificate_verify_peers3.3
gnutls-3.6.7/doc/manpages/gnutls_check_version.3
gnutls-3.6.7/doc/manpages/gnutls_cipher_add_auth.3
gnutls-3.6.7/doc/manpages/gnutls_cipher_decrypt.3
gnutls-3.6.7/doc/manpages/gnutls_cipher_decrypt2.3
gnutls-3.6.7/doc/manpages/gnutls_cipher_deinit.3
gnutls-3.6.7/doc/manpages/gnutls_cipher_encrypt.3
gnutls-3.6.7/doc/manpages/gnutls_cipher_encrypt2.3
gnutls-3.6.7/doc/manpages/gnutls_cipher_get.3
gnutls-3.6.7/doc/manpages/gnutls_cipher_get_block_size.3
gnutls-3.6.7/doc/manpages/gnutls_cipher_get_id.3
gnutls-3.6.7/doc/manpages/gnutls_cipher_get_iv_size.3
gnutls-3.6.7/doc/manpages/gnutls_cipher_get_key_size.3
gnutls-3.6.7/doc/manpages/gnutls_cipher_get_name.3
gnutls-3.6.7/doc/manpages/gnutls_cipher_get_tag_size.3
gnutls-3.6.7/doc/manpages/gnutls_cipher_init.3
gnutls-3.6.7/doc/manpages/gnutls_cipher_list.3
gnutls-3.6.7/doc/manpages/gnutls_cipher_set_iv.3
gnutls-3.6.7/doc/manpages/gnutls_cipher_suite_get_name.3
gnutls-3.6.7/doc/manpages/gnutls_cipher_suite_info.3
gnutls-3.6.7/doc/manpages/gnutls_cipher_tag.3
gnutls-3.6.7/doc/manpages/gnutls_compression_get.3
gnutls-3.6.7/doc/manpages/gnutls_compression_get_id.3
gnutls-3.6.7/doc/manpages/gnutls_compression_get_name.3
gnutls-3.6.7/doc/manpages/gnutls_compression_list.3
gnutls-3.6.7/doc/manpages/gnutls_credentials_clear.3
gnutls-3.6.7/doc/manpages/gnutls_credentials_get.3
gnutls-3.6.7/doc/manpages/gnutls_credentials_set.3
gnutls-3.6.7/doc/manpages/gnutls_crypto_register_aead_cipher.3
gnutls-3.6.7/doc/manpages/gnutls_crypto_register_cipher.3
gnutls-3.6.7/doc/manpages/gnutls_crypto_register_digest.3
gnutls-3.6.7/doc/manpages/gnutls_crypto_register_mac.3
gnutls-3.6.7/doc/manpages/gnutls_db_check_entry.3
gnutls-3.6.7/doc/manpages/gnutls_db_check_entry_expire_time.3
gnutls-3.6.7/doc/manpages/gnutls_db_check_entry_time.3
gnutls-3.6.7/doc/manpages/gnutls_db_get_default_cache_expiration.3
gnutls-3.6.7/doc/manpages/gnutls_db_get_ptr.3
gnutls-3.6.7/doc/manpages/gnutls_db_remove_session.3
gnutls-3.6.7/doc/manpages/gnutls_db_set_cache_expiration.3
gnutls-3.6.7/doc/manpages/gnutls_db_set_ptr.3
gnutls-3.6.7/doc/manpages/gnutls_db_set_remove_function.3
gnutls-3.6.7/doc/manpages/gnutls_db_set_retrieve_function.3
gnutls-3.6.7/doc/manpages/gnutls_db_set_store_function.3
gnutls-3.6.7/doc/manpages/gnutls_decode_ber_digest_info.3
gnutls-3.6.7/doc/manpages/gnutls_decode_gost_rs_value.3
gnutls-3.6.7/doc/manpages/gnutls_decode_rs_value.3
gnutls-3.6.7/doc/manpages/gnutls_deinit.3
gnutls-3.6.7/doc/manpages/gnutls_dh_get_group.3
gnutls-3.6.7/doc/manpages/gnutls_dh_get_peers_public_bits.3
gnutls-3.6.7/doc/manpages/gnutls_dh_get_prime_bits.3
gnutls-3.6.7/doc/manpages/gnutls_dh_get_pubkey.3
gnutls-3.6.7/doc/manpages/gnutls_dh_get_secret_bits.3
gnutls-3.6.7/doc/manpages/gnutls_dh_params_cpy.3
gnutls-3.6.7/doc/manpages/gnutls_dh_params_deinit.3
gnutls-3.6.7/doc/manpages/gnutls_dh_params_export2_pkcs3.3
gnutls-3.6.7/doc/manpages/gnutls_dh_params_export_pkcs3.3
gnutls-3.6.7/doc/manpages/gnutls_dh_params_export_raw.3
gnutls-3.6.7/doc/manpages/gnutls_dh_params_generate2.3
gnutls-3.6.7/doc/manpages/gnutls_dh_params_import_dsa.3
gnutls-3.6.7/doc/manpages/gnutls_dh_params_import_pkcs3.3
gnutls-3.6.7/doc/manpages/gnutls_dh_params_import_raw.3
gnutls-3.6.7/doc/manpages/gnutls_dh_params_import_raw2.3
gnutls-3.6.7/doc/manpages/gnutls_dh_params_init.3
gnutls-3.6.7/doc/manpages/gnutls_dh_set_prime_bits.3
gnutls-3.6.7/doc/manpages/gnutls_digest_get_id.3
gnutls-3.6.7/doc/manpages/gnutls_digest_get_name.3
gnutls-3.6.7/doc/manpages/gnutls_digest_get_oid.3
gnutls-3.6.7/doc/manpages/gnutls_digest_list.3
gnutls-3.6.7/doc/manpages/gnutls_dtls_cookie_send.3
gnutls-3.6.7/doc/manpages/gnutls_dtls_cookie_verify.3
gnutls-3.6.7/doc/manpages/gnutls_dtls_get_data_mtu.3
gnutls-3.6.7/doc/manpages/gnutls_dtls_get_mtu.3
gnutls-3.6.7/doc/manpages/gnutls_dtls_get_timeout.3
gnutls-3.6.7/doc/manpages/gnutls_dtls_prestate_set.3
gnutls-3.6.7/doc/manpages/gnutls_dtls_set_data_mtu.3
gnutls-3.6.7/doc/manpages/gnutls_dtls_set_mtu.3
gnutls-3.6.7/doc/manpages/gnutls_dtls_set_timeouts.3
gnutls-3.6.7/doc/manpages/gnutls_ecc_curve_get.3
gnutls-3.6.7/doc/manpages/gnutls_ecc_curve_get_id.3
gnutls-3.6.7/doc/manpages/gnutls_ecc_curve_get_name.3
gnutls-3.6.7/doc/manpages/gnutls_ecc_curve_get_oid.3
gnutls-3.6.7/doc/manpages/gnutls_ecc_curve_get_pk.3
gnutls-3.6.7/doc/manpages/gnutls_ecc_curve_get_size.3
gnutls-3.6.7/doc/manpages/gnutls_ecc_curve_list.3
gnutls-3.6.7/doc/manpages/gnutls_encode_ber_digest_info.3
gnutls-3.6.7/doc/manpages/gnutls_encode_gost_rs_value.3
gnutls-3.6.7/doc/manpages/gnutls_encode_rs_value.3
gnutls-3.6.7/doc/manpages/gnutls_error_is_fatal.3
gnutls-3.6.7/doc/manpages/gnutls_error_to_alert.3
gnutls-3.6.7/doc/manpages/gnutls_est_record_overhead_size.3
gnutls-3.6.7/doc/manpages/gnutls_ext_get_current_msg.3
gnutls-3.6.7/doc/manpages/gnutls_ext_get_data.3
gnutls-3.6.7/doc/manpages/gnutls_ext_get_name.3
gnutls-3.6.7/doc/manpages/gnutls_ext_raw_parse.3
gnutls-3.6.7/doc/manpages/gnutls_ext_register.3
gnutls-3.6.7/doc/manpages/gnutls_ext_set_data.3
gnutls-3.6.7/doc/manpages/gnutls_fingerprint.3
gnutls-3.6.7/doc/manpages/gnutls_fips140_mode_enabled.3
gnutls-3.6.7/doc/manpages/gnutls_fips140_set_mode.3
gnutls-3.6.7/doc/manpages/gnutls_global_deinit.3
gnutls-3.6.7/doc/manpages/gnutls_global_init.3
gnutls-3.6.7/doc/manpages/gnutls_global_set_audit_log_function.3
gnutls-3.6.7/doc/manpages/gnutls_global_set_log_function.3
gnutls-3.6.7/doc/manpages/gnutls_global_set_log_level.3
gnutls-3.6.7/doc/manpages/gnutls_global_set_mem_functions.3
gnutls-3.6.7/doc/manpages/gnutls_global_set_mutex.3
gnutls-3.6.7/doc/manpages/gnutls_global_set_time_function.3
gnutls-3.6.7/doc/manpages/gnutls_gost_paramset_get_name.3
gnutls-3.6.7/doc/manpages/gnutls_gost_paramset_get_oid.3
gnutls-3.6.7/doc/manpages/gnutls_group_get.3
gnutls-3.6.7/doc/manpages/gnutls_group_get_id.3
gnutls-3.6.7/doc/manpages/gnutls_group_get_name.3
gnutls-3.6.7/doc/manpages/gnutls_group_list.3
gnutls-3.6.7/doc/manpages/gnutls_handshake.3
gnutls-3.6.7/doc/manpages/gnutls_handshake_description_get_name.3
gnutls-3.6.7/doc/manpages/gnutls_handshake_get_last_in.3
gnutls-3.6.7/doc/manpages/gnutls_handshake_get_last_out.3
gnutls-3.6.7/doc/manpages/gnutls_handshake_set_hook_function.3
gnutls-3.6.7/doc/manpages/gnutls_handshake_set_max_packet_length.3
gnutls-3.6.7/doc/manpages/gnutls_handshake_set_post_client_hello_function.3
gnutls-3.6.7/doc/manpages/gnutls_handshake_set_private_extensions.3
gnutls-3.6.7/doc/manpages/gnutls_handshake_set_random.3
gnutls-3.6.7/doc/manpages/gnutls_handshake_set_timeout.3
gnutls-3.6.7/doc/manpages/gnutls_hash.3
gnutls-3.6.7/doc/manpages/gnutls_hash_deinit.3
gnutls-3.6.7/doc/manpages/gnutls_hash_fast.3
gnutls-3.6.7/doc/manpages/gnutls_hash_get_len.3
gnutls-3.6.7/doc/manpages/gnutls_hash_init.3
gnutls-3.6.7/doc/manpages/gnutls_hash_output.3
gnutls-3.6.7/doc/manpages/gnutls_heartbeat_allowed.3
gnutls-3.6.7/doc/manpages/gnutls_heartbeat_enable.3
gnutls-3.6.7/doc/manpages/gnutls_heartbeat_get_timeout.3
gnutls-3.6.7/doc/manpages/gnutls_heartbeat_ping.3
gnutls-3.6.7/doc/manpages/gnutls_heartbeat_pong.3
gnutls-3.6.7/doc/manpages/gnutls_heartbeat_set_timeouts.3
gnutls-3.6.7/doc/manpages/gnutls_hex2bin.3
gnutls-3.6.7/doc/manpages/gnutls_hex_decode.3
gnutls-3.6.7/doc/manpages/gnutls_hex_decode2.3
gnutls-3.6.7/doc/manpages/gnutls_hex_encode.3
gnutls-3.6.7/doc/manpages/gnutls_hex_encode2.3
gnutls-3.6.7/doc/manpages/gnutls_hmac.3
gnutls-3.6.7/doc/manpages/gnutls_hmac_deinit.3
gnutls-3.6.7/doc/manpages/gnutls_hmac_fast.3
gnutls-3.6.7/doc/manpages/gnutls_hmac_get_len.3
gnutls-3.6.7/doc/manpages/gnutls_hmac_init.3
gnutls-3.6.7/doc/manpages/gnutls_hmac_output.3
gnutls-3.6.7/doc/manpages/gnutls_hmac_set_nonce.3
gnutls-3.6.7/doc/manpages/gnutls_idna_map.3
gnutls-3.6.7/doc/manpages/gnutls_idna_reverse_map.3
gnutls-3.6.7/doc/manpages/gnutls_init.3
gnutls-3.6.7/doc/manpages/gnutls_key_generate.3
gnutls-3.6.7/doc/manpages/gnutls_kx_get.3
gnutls-3.6.7/doc/manpages/gnutls_kx_get_id.3
gnutls-3.6.7/doc/manpages/gnutls_kx_get_name.3
gnutls-3.6.7/doc/manpages/gnutls_kx_list.3
gnutls-3.6.7/doc/manpages/gnutls_load_file.3
gnutls-3.6.7/doc/manpages/gnutls_mac_get.3
gnutls-3.6.7/doc/manpages/gnutls_mac_get_id.3
gnutls-3.6.7/doc/manpages/gnutls_mac_get_key_size.3
gnutls-3.6.7/doc/manpages/gnutls_mac_get_name.3
gnutls-3.6.7/doc/manpages/gnutls_mac_get_nonce_size.3
gnutls-3.6.7/doc/manpages/gnutls_mac_list.3
gnutls-3.6.7/doc/manpages/gnutls_memcmp.3
gnutls-3.6.7/doc/manpages/gnutls_memset.3
gnutls-3.6.7/doc/manpages/gnutls_ocsp_req_add_cert.3
gnutls-3.6.7/doc/manpages/gnutls_ocsp_req_add_cert_id.3
gnutls-3.6.7/doc/manpages/gnutls_ocsp_req_deinit.3
gnutls-3.6.7/doc/manpages/gnutls_ocsp_req_export.3
gnutls-3.6.7/doc/manpages/gnutls_ocsp_req_get_cert_id.3
gnutls-3.6.7/doc/manpages/gnutls_ocsp_req_get_extension.3
gnutls-3.6.7/doc/manpages/gnutls_ocsp_req_get_nonce.3
gnutls-3.6.7/doc/manpages/gnutls_ocsp_req_get_version.3
gnutls-3.6.7/doc/manpages/gnutls_ocsp_req_import.3
gnutls-3.6.7/doc/manpages/gnutls_ocsp_req_init.3
gnutls-3.6.7/doc/manpages/gnutls_ocsp_req_print.3
gnutls-3.6.7/doc/manpages/gnutls_ocsp_req_randomize_nonce.3
gnutls-3.6.7/doc/manpages/gnutls_ocsp_req_set_extension.3
gnutls-3.6.7/doc/manpages/gnutls_ocsp_req_set_nonce.3
gnutls-3.6.7/doc/manpages/gnutls_ocsp_resp_check_crt.3
gnutls-3.6.7/doc/manpages/gnutls_ocsp_resp_deinit.3
gnutls-3.6.7/doc/manpages/gnutls_ocsp_resp_export.3
gnutls-3.6.7/doc/manpages/gnutls_ocsp_resp_export2.3
gnutls-3.6.7/doc/manpages/gnutls_ocsp_resp_get_certs.3
gnutls-3.6.7/doc/manpages/gnutls_ocsp_resp_get_extension.3
gnutls-3.6.7/doc/manpages/gnutls_ocsp_resp_get_nonce.3
gnutls-3.6.7/doc/manpages/gnutls_ocsp_resp_get_produced.3
gnutls-3.6.7/doc/manpages/gnutls_ocsp_resp_get_responder.3
gnutls-3.6.7/doc/manpages/gnutls_ocsp_resp_get_responder2.3
gnutls-3.6.7/doc/manpages/gnutls_ocsp_resp_get_responder_raw_id.3
gnutls-3.6.7/doc/manpages/gnutls_ocsp_resp_get_response.3
gnutls-3.6.7/doc/manpages/gnutls_ocsp_resp_get_signature.3
gnutls-3.6.7/doc/manpages/gnutls_ocsp_resp_get_signature_algorithm.3
gnutls-3.6.7/doc/manpages/gnutls_ocsp_resp_get_single.3
gnutls-3.6.7/doc/manpages/gnutls_ocsp_resp_get_status.3
gnutls-3.6.7/doc/manpages/gnutls_ocsp_resp_get_version.3
gnutls-3.6.7/doc/manpages/gnutls_ocsp_resp_import.3
gnutls-3.6.7/doc/manpages/gnutls_ocsp_resp_import2.3
gnutls-3.6.7/doc/manpages/gnutls_ocsp_resp_init.3
gnutls-3.6.7/doc/manpages/gnutls_ocsp_resp_list_import2.3
gnutls-3.6.7/doc/manpages/gnutls_ocsp_resp_print.3
gnutls-3.6.7/doc/manpages/gnutls_ocsp_resp_verify.3
gnutls-3.6.7/doc/manpages/gnutls_ocsp_resp_verify_direct.3
gnutls-3.6.7/doc/manpages/gnutls_ocsp_status_request_enable_client.3
gnutls-3.6.7/doc/manpages/gnutls_ocsp_status_request_get.3
gnutls-3.6.7/doc/manpages/gnutls_ocsp_status_request_get2.3
gnutls-3.6.7/doc/manpages/gnutls_ocsp_status_request_is_checked.3
gnutls-3.6.7/doc/manpages/gnutls_oid_to_digest.3
gnutls-3.6.7/doc/manpages/gnutls_oid_to_ecc_curve.3
gnutls-3.6.7/doc/manpages/gnutls_oid_to_gost_paramset.3
gnutls-3.6.7/doc/manpages/gnutls_oid_to_mac.3
gnutls-3.6.7/doc/manpages/gnutls_oid_to_pk.3
gnutls-3.6.7/doc/manpages/gnutls_oid_to_sign.3
gnutls-3.6.7/doc/manpages/gnutls_openpgp_privkey_sign_hash.3
gnutls-3.6.7/doc/manpages/gnutls_openpgp_send_cert.3
gnutls-3.6.7/doc/manpages/gnutls_packet_deinit.3
gnutls-3.6.7/doc/manpages/gnutls_packet_get.3
gnutls-3.6.7/doc/manpages/gnutls_pcert_deinit.3
gnutls-3.6.7/doc/manpages/gnutls_pcert_export_openpgp.3
gnutls-3.6.7/doc/manpages/gnutls_pcert_export_x509.3
gnutls-3.6.7/doc/manpages/gnutls_pcert_import_openpgp.3
gnutls-3.6.7/doc/manpages/gnutls_pcert_import_openpgp_raw.3
gnutls-3.6.7/doc/manpages/gnutls_pcert_import_rawpk.3
gnutls-3.6.7/doc/manpages/gnutls_pcert_import_rawpk_raw.3
gnutls-3.6.7/doc/manpages/gnutls_pcert_import_x509.3
gnutls-3.6.7/doc/manpages/gnutls_pcert_import_x509_list.3
gnutls-3.6.7/doc/manpages/gnutls_pcert_import_x509_raw.3
gnutls-3.6.7/doc/manpages/gnutls_pcert_list_import_x509_file.3
gnutls-3.6.7/doc/manpages/gnutls_pcert_list_import_x509_raw.3
gnutls-3.6.7/doc/manpages/gnutls_pem_base64_decode.3
gnutls-3.6.7/doc/manpages/gnutls_pem_base64_decode2.3
gnutls-3.6.7/doc/manpages/gnutls_pem_base64_encode.3
gnutls-3.6.7/doc/manpages/gnutls_pem_base64_encode2.3
gnutls-3.6.7/doc/manpages/gnutls_perror.3
gnutls-3.6.7/doc/manpages/gnutls_pk_algorithm_get_name.3
gnutls-3.6.7/doc/manpages/gnutls_pk_bits_to_sec_param.3
gnutls-3.6.7/doc/manpages/gnutls_pk_get_id.3
gnutls-3.6.7/doc/manpages/gnutls_pk_get_name.3
gnutls-3.6.7/doc/manpages/gnutls_pk_get_oid.3
gnutls-3.6.7/doc/manpages/gnutls_pk_list.3
gnutls-3.6.7/doc/manpages/gnutls_pk_to_sign.3
gnutls-3.6.7/doc/manpages/gnutls_pkcs11_add_provider.3
gnutls-3.6.7/doc/manpages/gnutls_pkcs11_copy_attached_extension.3
gnutls-3.6.7/doc/manpages/gnutls_pkcs11_copy_pubkey.3
gnutls-3.6.7/doc/manpages/gnutls_pkcs11_copy_secret_key.3
gnutls-3.6.7/doc/manpages/gnutls_pkcs11_copy_x509_crt.3
gnutls-3.6.7/doc/manpages/gnutls_pkcs11_copy_x509_crt2.3
gnutls-3.6.7/doc/manpages/gnutls_pkcs11_copy_x509_privkey.3
gnutls-3.6.7/doc/manpages/gnutls_pkcs11_copy_x509_privkey2.3
gnutls-3.6.7/doc/manpages/gnutls_pkcs11_crt_is_known.3
gnutls-3.6.7/doc/manpages/gnutls_pkcs11_deinit.3
gnutls-3.6.7/doc/manpages/gnutls_pkcs11_delete_url.3
gnutls-3.6.7/doc/manpages/gnutls_pkcs11_get_pin_function.3
gnutls-3.6.7/doc/manpages/gnutls_pkcs11_get_raw_issuer.3
gnutls-3.6.7/doc/manpages/gnutls_pkcs11_get_raw_issuer_by_dn.3
gnutls-3.6.7/doc/manpages/gnutls_pkcs11_get_raw_issuer_by_subject_key_id.3
gnutls-3.6.7/doc/manpages/gnutls_pkcs11_init.3
gnutls-3.6.7/doc/manpages/gnutls_pkcs11_obj_deinit.3
gnutls-3.6.7/doc/manpages/gnutls_pkcs11_obj_export.3
gnutls-3.6.7/doc/manpages/gnutls_pkcs11_obj_export2.3
gnutls-3.6.7/doc/manpages/gnutls_pkcs11_obj_export3.3
gnutls-3.6.7/doc/manpages/gnutls_pkcs11_obj_export_url.3
gnutls-3.6.7/doc/manpages/gnutls_pkcs11_obj_flags_get_str.3
gnutls-3.6.7/doc/manpages/gnutls_pkcs11_obj_get_exts.3
gnutls-3.6.7/doc/manpages/gnutls_pkcs11_obj_get_flags.3
gnutls-3.6.7/doc/manpages/gnutls_pkcs11_obj_get_info.3
gnutls-3.6.7/doc/manpages/gnutls_pkcs11_obj_get_ptr.3
gnutls-3.6.7/doc/manpages/gnutls_pkcs11_obj_get_type.3
gnutls-3.6.7/doc/manpages/gnutls_pkcs11_obj_import_url.3
gnutls-3.6.7/doc/manpages/gnutls_pkcs11_obj_init.3
gnutls-3.6.7/doc/manpages/gnutls_pkcs11_obj_list_import_url3.3
gnutls-3.6.7/doc/manpages/gnutls_pkcs11_obj_list_import_url4.3
gnutls-3.6.7/doc/manpages/gnutls_pkcs11_obj_set_info.3
gnutls-3.6.7/doc/manpages/gnutls_pkcs11_obj_set_pin_function.3
gnutls-3.6.7/doc/manpages/gnutls_pkcs11_privkey_cpy.3
gnutls-3.6.7/doc/manpages/gnutls_pkcs11_privkey_deinit.3
gnutls-3.6.7/doc/manpages/gnutls_pkcs11_privkey_export_pubkey.3
gnutls-3.6.7/doc/manpages/gnutls_pkcs11_privkey_export_url.3
gnutls-3.6.7/doc/manpages/gnutls_pkcs11_privkey_generate.3
gnutls-3.6.7/doc/manpages/gnutls_pkcs11_privkey_generate2.3
gnutls-3.6.7/doc/manpages/gnutls_pkcs11_privkey_generate3.3
gnutls-3.6.7/doc/manpages/gnutls_pkcs11_privkey_get_info.3
gnutls-3.6.7/doc/manpages/gnutls_pkcs11_privkey_get_pk_algorithm.3
gnutls-3.6.7/doc/manpages/gnutls_pkcs11_privkey_import_url.3
gnutls-3.6.7/doc/manpages/gnutls_pkcs11_privkey_init.3
gnutls-3.6.7/doc/manpages/gnutls_pkcs11_privkey_set_pin_function.3
gnutls-3.6.7/doc/manpages/gnutls_pkcs11_privkey_status.3
gnutls-3.6.7/doc/manpages/gnutls_pkcs11_reinit.3
gnutls-3.6.7/doc/manpages/gnutls_pkcs11_set_pin_function.3
gnutls-3.6.7/doc/manpages/gnutls_pkcs11_set_token_function.3
gnutls-3.6.7/doc/manpages/gnutls_pkcs11_token_check_mechanism.3
gnutls-3.6.7/doc/manpages/gnutls_pkcs11_token_get_flags.3
gnutls-3.6.7/doc/manpages/gnutls_pkcs11_token_get_info.3
gnutls-3.6.7/doc/manpages/gnutls_pkcs11_token_get_mechanism.3
gnutls-3.6.7/doc/manpages/gnutls_pkcs11_token_get_ptr.3
gnutls-3.6.7/doc/manpages/gnutls_pkcs11_token_get_random.3
gnutls-3.6.7/doc/manpages/gnutls_pkcs11_token_get_url.3
gnutls-3.6.7/doc/manpages/gnutls_pkcs11_token_init.3
gnutls-3.6.7/doc/manpages/gnutls_pkcs11_token_set_pin.3
gnutls-3.6.7/doc/manpages/gnutls_pkcs11_type_get_name.3
gnutls-3.6.7/doc/manpages/gnutls_pkcs12_bag_decrypt.3
gnutls-3.6.7/doc/manpages/gnutls_pkcs12_bag_deinit.3
gnutls-3.6.7/doc/manpages/gnutls_pkcs12_bag_enc_info.3
gnutls-3.6.7/doc/manpages/gnutls_pkcs12_bag_encrypt.3
gnutls-3.6.7/doc/manpages/gnutls_pkcs12_bag_get_count.3
gnutls-3.6.7/doc/manpages/gnutls_pkcs12_bag_get_data.3
gnutls-3.6.7/doc/manpages/gnutls_pkcs12_bag_get_friendly_name.3
gnutls-3.6.7/doc/manpages/gnutls_pkcs12_bag_get_key_id.3
gnutls-3.6.7/doc/manpages/gnutls_pkcs12_bag_get_type.3
gnutls-3.6.7/doc/manpages/gnutls_pkcs12_bag_init.3
gnutls-3.6.7/doc/manpages/gnutls_pkcs12_bag_set_crl.3
gnutls-3.6.7/doc/manpages/gnutls_pkcs12_bag_set_crt.3
gnutls-3.6.7/doc/manpages/gnutls_pkcs12_bag_set_data.3
gnutls-3.6.7/doc/manpages/gnutls_pkcs12_bag_set_friendly_name.3
gnutls-3.6.7/doc/manpages/gnutls_pkcs12_bag_set_key_id.3
gnutls-3.6.7/doc/manpages/gnutls_pkcs12_bag_set_privkey.3
gnutls-3.6.7/doc/manpages/gnutls_pkcs12_deinit.3
gnutls-3.6.7/doc/manpages/gnutls_pkcs12_export.3
gnutls-3.6.7/doc/manpages/gnutls_pkcs12_export2.3
gnutls-3.6.7/doc/manpages/gnutls_pkcs12_generate_mac.3
gnutls-3.6.7/doc/manpages/gnutls_pkcs12_generate_mac2.3
gnutls-3.6.7/doc/manpages/gnutls_pkcs12_get_bag.3
gnutls-3.6.7/doc/manpages/gnutls_pkcs12_import.3
gnutls-3.6.7/doc/manpages/gnutls_pkcs12_init.3
gnutls-3.6.7/doc/manpages/gnutls_pkcs12_mac_info.3
gnutls-3.6.7/doc/manpages/gnutls_pkcs12_set_bag.3
gnutls-3.6.7/doc/manpages/gnutls_pkcs12_simple_parse.3
gnutls-3.6.7/doc/manpages/gnutls_pkcs12_verify_mac.3
gnutls-3.6.7/doc/manpages/gnutls_pkcs7_add_attr.3
gnutls-3.6.7/doc/manpages/gnutls_pkcs7_attrs_deinit.3
gnutls-3.6.7/doc/manpages/gnutls_pkcs7_deinit.3
gnutls-3.6.7/doc/manpages/gnutls_pkcs7_delete_crl.3
gnutls-3.6.7/doc/manpages/gnutls_pkcs7_delete_crt.3
gnutls-3.6.7/doc/manpages/gnutls_pkcs7_export.3
gnutls-3.6.7/doc/manpages/gnutls_pkcs7_export2.3
gnutls-3.6.7/doc/manpages/gnutls_pkcs7_get_attr.3
gnutls-3.6.7/doc/manpages/gnutls_pkcs7_get_crl_count.3
gnutls-3.6.7/doc/manpages/gnutls_pkcs7_get_crl_raw.3
gnutls-3.6.7/doc/manpages/gnutls_pkcs7_get_crl_raw2.3
gnutls-3.6.7/doc/manpages/gnutls_pkcs7_get_crt_count.3
gnutls-3.6.7/doc/manpages/gnutls_pkcs7_get_crt_raw.3
gnutls-3.6.7/doc/manpages/gnutls_pkcs7_get_crt_raw2.3
gnutls-3.6.7/doc/manpages/gnutls_pkcs7_get_embedded_data.3
gnutls-3.6.7/doc/manpages/gnutls_pkcs7_get_embedded_data_oid.3
gnutls-3.6.7/doc/manpages/gnutls_pkcs7_get_signature_count.3
gnutls-3.6.7/doc/manpages/gnutls_pkcs7_get_signature_info.3
gnutls-3.6.7/doc/manpages/gnutls_pkcs7_import.3
gnutls-3.6.7/doc/manpages/gnutls_pkcs7_init.3
gnutls-3.6.7/doc/manpages/gnutls_pkcs7_print.3
gnutls-3.6.7/doc/manpages/gnutls_pkcs7_set_crl.3
gnutls-3.6.7/doc/manpages/gnutls_pkcs7_set_crl_raw.3
gnutls-3.6.7/doc/manpages/gnutls_pkcs7_set_crt.3
gnutls-3.6.7/doc/manpages/gnutls_pkcs7_set_crt_raw.3
gnutls-3.6.7/doc/manpages/gnutls_pkcs7_sign.3
gnutls-3.6.7/doc/manpages/gnutls_pkcs7_signature_info_deinit.3
gnutls-3.6.7/doc/manpages/gnutls_pkcs7_verify.3
gnutls-3.6.7/doc/manpages/gnutls_pkcs7_verify_direct.3
gnutls-3.6.7/doc/manpages/gnutls_pkcs8_info.3
gnutls-3.6.7/doc/manpages/gnutls_pkcs_schema_get_name.3
gnutls-3.6.7/doc/manpages/gnutls_pkcs_schema_get_oid.3
gnutls-3.6.7/doc/manpages/gnutls_prf.3
gnutls-3.6.7/doc/manpages/gnutls_prf_raw.3
gnutls-3.6.7/doc/manpages/gnutls_prf_rfc5705.3
gnutls-3.6.7/doc/manpages/gnutls_priority_certificate_type_list.3
gnutls-3.6.7/doc/manpages/gnutls_priority_certificate_type_list2.3
gnutls-3.6.7/doc/manpages/gnutls_priority_cipher_list.3
gnutls-3.6.7/doc/manpages/gnutls_priority_compression_list.3
gnutls-3.6.7/doc/manpages/gnutls_priority_deinit.3
gnutls-3.6.7/doc/manpages/gnutls_priority_ecc_curve_list.3
gnutls-3.6.7/doc/manpages/gnutls_priority_get_cipher_suite_index.3
gnutls-3.6.7/doc/manpages/gnutls_priority_group_list.3
gnutls-3.6.7/doc/manpages/gnutls_priority_init.3
gnutls-3.6.7/doc/manpages/gnutls_priority_init2.3
gnutls-3.6.7/doc/manpages/gnutls_priority_kx_list.3
gnutls-3.6.7/doc/manpages/gnutls_priority_mac_list.3
gnutls-3.6.7/doc/manpages/gnutls_priority_protocol_list.3
gnutls-3.6.7/doc/manpages/gnutls_priority_set.3
gnutls-3.6.7/doc/manpages/gnutls_priority_set_direct.3
gnutls-3.6.7/doc/manpages/gnutls_priority_sign_list.3
gnutls-3.6.7/doc/manpages/gnutls_priority_string_list.3
gnutls-3.6.7/doc/manpages/gnutls_privkey_decrypt_data.3
gnutls-3.6.7/doc/manpages/gnutls_privkey_decrypt_data2.3
gnutls-3.6.7/doc/manpages/gnutls_privkey_deinit.3
gnutls-3.6.7/doc/manpages/gnutls_privkey_export_dsa_raw.3
gnutls-3.6.7/doc/manpages/gnutls_privkey_export_dsa_raw2.3
gnutls-3.6.7/doc/manpages/gnutls_privkey_export_ecc_raw.3
gnutls-3.6.7/doc/manpages/gnutls_privkey_export_ecc_raw2.3
gnutls-3.6.7/doc/manpages/gnutls_privkey_export_gost_raw2.3
gnutls-3.6.7/doc/manpages/gnutls_privkey_export_openpgp.3
gnutls-3.6.7/doc/manpages/gnutls_privkey_export_pkcs11.3
gnutls-3.6.7/doc/manpages/gnutls_privkey_export_rsa_raw.3
gnutls-3.6.7/doc/manpages/gnutls_privkey_export_rsa_raw2.3
gnutls-3.6.7/doc/manpages/gnutls_privkey_export_x509.3
gnutls-3.6.7/doc/manpages/gnutls_privkey_generate.3
gnutls-3.6.7/doc/manpages/gnutls_privkey_generate2.3
gnutls-3.6.7/doc/manpages/gnutls_privkey_get_pk_algorithm.3
gnutls-3.6.7/doc/manpages/gnutls_privkey_get_seed.3
gnutls-3.6.7/doc/manpages/gnutls_privkey_get_spki.3
gnutls-3.6.7/doc/manpages/gnutls_privkey_get_type.3
gnutls-3.6.7/doc/manpages/gnutls_privkey_import_dsa_raw.3
gnutls-3.6.7/doc/manpages/gnutls_privkey_import_ecc_raw.3
gnutls-3.6.7/doc/manpages/gnutls_privkey_import_ext.3
gnutls-3.6.7/doc/manpages/gnutls_privkey_import_ext2.3
gnutls-3.6.7/doc/manpages/gnutls_privkey_import_ext3.3
gnutls-3.6.7/doc/manpages/gnutls_privkey_import_ext4.3
gnutls-3.6.7/doc/manpages/gnutls_privkey_import_gost_raw.3
gnutls-3.6.7/doc/manpages/gnutls_privkey_import_openpgp.3
gnutls-3.6.7/doc/manpages/gnutls_privkey_import_openpgp_raw.3
gnutls-3.6.7/doc/manpages/gnutls_privkey_import_pkcs11.3
gnutls-3.6.7/doc/manpages/gnutls_privkey_import_pkcs11_url.3
gnutls-3.6.7/doc/manpages/gnutls_privkey_import_rsa_raw.3
gnutls-3.6.7/doc/manpages/gnutls_privkey_import_tpm_raw.3
gnutls-3.6.7/doc/manpages/gnutls_privkey_import_tpm_url.3
gnutls-3.6.7/doc/manpages/gnutls_privkey_import_url.3
gnutls-3.6.7/doc/manpages/gnutls_privkey_import_x509.3
gnutls-3.6.7/doc/manpages/gnutls_privkey_import_x509_raw.3
gnutls-3.6.7/doc/manpages/gnutls_privkey_init.3
gnutls-3.6.7/doc/manpages/gnutls_privkey_set_flags.3
gnutls-3.6.7/doc/manpages/gnutls_privkey_set_pin_function.3
gnutls-3.6.7/doc/manpages/gnutls_privkey_set_spki.3
gnutls-3.6.7/doc/manpages/gnutls_privkey_sign_data.3
gnutls-3.6.7/doc/manpages/gnutls_privkey_sign_data2.3
gnutls-3.6.7/doc/manpages/gnutls_privkey_sign_hash.3
gnutls-3.6.7/doc/manpages/gnutls_privkey_sign_hash2.3
gnutls-3.6.7/doc/manpages/gnutls_privkey_status.3
gnutls-3.6.7/doc/manpages/gnutls_privkey_verify_params.3
gnutls-3.6.7/doc/manpages/gnutls_privkey_verify_seed.3
gnutls-3.6.7/doc/manpages/gnutls_protocol_get_id.3
gnutls-3.6.7/doc/manpages/gnutls_protocol_get_name.3
gnutls-3.6.7/doc/manpages/gnutls_protocol_get_version.3
gnutls-3.6.7/doc/manpages/gnutls_protocol_list.3
gnutls-3.6.7/doc/manpages/gnutls_psk_allocate_client_credentials.3
gnutls-3.6.7/doc/manpages/gnutls_psk_allocate_server_credentials.3
gnutls-3.6.7/doc/manpages/gnutls_psk_client_get_hint.3
gnutls-3.6.7/doc/manpages/gnutls_psk_free_client_credentials.3
gnutls-3.6.7/doc/manpages/gnutls_psk_free_server_credentials.3
gnutls-3.6.7/doc/manpages/gnutls_psk_server_get_username.3
gnutls-3.6.7/doc/manpages/gnutls_psk_set_client_credentials.3
gnutls-3.6.7/doc/manpages/gnutls_psk_set_client_credentials_function.3
gnutls-3.6.7/doc/manpages/gnutls_psk_set_params_function.3
gnutls-3.6.7/doc/manpages/gnutls_psk_set_server_credentials_file.3
gnutls-3.6.7/doc/manpages/gnutls_psk_set_server_credentials_function.3
gnutls-3.6.7/doc/manpages/gnutls_psk_set_server_credentials_hint.3
gnutls-3.6.7/doc/manpages/gnutls_psk_set_server_dh_params.3
gnutls-3.6.7/doc/manpages/gnutls_psk_set_server_known_dh_params.3
gnutls-3.6.7/doc/manpages/gnutls_psk_set_server_params_function.3
gnutls-3.6.7/doc/manpages/gnutls_pubkey_deinit.3
gnutls-3.6.7/doc/manpages/gnutls_pubkey_encrypt_data.3
gnutls-3.6.7/doc/manpages/gnutls_pubkey_export.3
gnutls-3.6.7/doc/manpages/gnutls_pubkey_export2.3
gnutls-3.6.7/doc/manpages/gnutls_pubkey_export_dsa_raw.3
gnutls-3.6.7/doc/manpages/gnutls_pubkey_export_dsa_raw2.3
gnutls-3.6.7/doc/manpages/gnutls_pubkey_export_ecc_raw.3
gnutls-3.6.7/doc/manpages/gnutls_pubkey_export_ecc_raw2.3
gnutls-3.6.7/doc/manpages/gnutls_pubkey_export_ecc_x962.3
gnutls-3.6.7/doc/manpages/gnutls_pubkey_export_gost_raw2.3
gnutls-3.6.7/doc/manpages/gnutls_pubkey_export_rsa_raw.3
gnutls-3.6.7/doc/manpages/gnutls_pubkey_export_rsa_raw2.3
gnutls-3.6.7/doc/manpages/gnutls_pubkey_get_key_id.3
gnutls-3.6.7/doc/manpages/gnutls_pubkey_get_key_usage.3
gnutls-3.6.7/doc/manpages/gnutls_pubkey_get_openpgp_key_id.3
gnutls-3.6.7/doc/manpages/gnutls_pubkey_get_pk_algorithm.3
gnutls-3.6.7/doc/manpages/gnutls_pubkey_get_preferred_hash_algorithm.3
gnutls-3.6.7/doc/manpages/gnutls_pubkey_get_spki.3
gnutls-3.6.7/doc/manpages/gnutls_pubkey_import.3
gnutls-3.6.7/doc/manpages/gnutls_pubkey_import_dsa_raw.3
gnutls-3.6.7/doc/manpages/gnutls_pubkey_import_ecc_raw.3
gnutls-3.6.7/doc/manpages/gnutls_pubkey_import_ecc_x962.3
gnutls-3.6.7/doc/manpages/gnutls_pubkey_import_gost_raw.3
gnutls-3.6.7/doc/manpages/gnutls_pubkey_import_openpgp.3
gnutls-3.6.7/doc/manpages/gnutls_pubkey_import_openpgp_raw.3
gnutls-3.6.7/doc/manpages/gnutls_pubkey_import_pkcs11.3
gnutls-3.6.7/doc/manpages/gnutls_pubkey_import_privkey.3
gnutls-3.6.7/doc/manpages/gnutls_pubkey_import_rsa_raw.3
gnutls-3.6.7/doc/manpages/gnutls_pubkey_import_tpm_raw.3
gnutls-3.6.7/doc/manpages/gnutls_pubkey_import_tpm_url.3
gnutls-3.6.7/doc/manpages/gnutls_pubkey_import_url.3
gnutls-3.6.7/doc/manpages/gnutls_pubkey_import_x509.3
gnutls-3.6.7/doc/manpages/gnutls_pubkey_import_x509_crq.3
gnutls-3.6.7/doc/manpages/gnutls_pubkey_import_x509_raw.3
gnutls-3.6.7/doc/manpages/gnutls_pubkey_init.3
gnutls-3.6.7/doc/manpages/gnutls_pubkey_print.3
gnutls-3.6.7/doc/manpages/gnutls_pubkey_set_key_usage.3
gnutls-3.6.7/doc/manpages/gnutls_pubkey_set_pin_function.3
gnutls-3.6.7/doc/manpages/gnutls_pubkey_set_spki.3
gnutls-3.6.7/doc/manpages/gnutls_pubkey_verify_data2.3
gnutls-3.6.7/doc/manpages/gnutls_pubkey_verify_hash2.3
gnutls-3.6.7/doc/manpages/gnutls_pubkey_verify_params.3
gnutls-3.6.7/doc/manpages/gnutls_random_art.3
gnutls-3.6.7/doc/manpages/gnutls_range_split.3
gnutls-3.6.7/doc/manpages/gnutls_reauth.3
gnutls-3.6.7/doc/manpages/gnutls_record_can_use_length_hiding.3
gnutls-3.6.7/doc/manpages/gnutls_record_check_corked.3
gnutls-3.6.7/doc/manpages/gnutls_record_check_pending.3
gnutls-3.6.7/doc/manpages/gnutls_record_cork.3
gnutls-3.6.7/doc/manpages/gnutls_record_disable_padding.3
gnutls-3.6.7/doc/manpages/gnutls_record_discard_queued.3
gnutls-3.6.7/doc/manpages/gnutls_record_get_direction.3
gnutls-3.6.7/doc/manpages/gnutls_record_get_discarded.3
gnutls-3.6.7/doc/manpages/gnutls_record_get_max_early_data_size.3
gnutls-3.6.7/doc/manpages/gnutls_record_get_max_size.3
gnutls-3.6.7/doc/manpages/gnutls_record_get_state.3
gnutls-3.6.7/doc/manpages/gnutls_record_overhead_size.3
gnutls-3.6.7/doc/manpages/gnutls_record_recv.3
gnutls-3.6.7/doc/manpages/gnutls_record_recv_early_data.3
gnutls-3.6.7/doc/manpages/gnutls_record_recv_packet.3
gnutls-3.6.7/doc/manpages/gnutls_record_recv_seq.3
gnutls-3.6.7/doc/manpages/gnutls_record_send.3
gnutls-3.6.7/doc/manpages/gnutls_record_send2.3
gnutls-3.6.7/doc/manpages/gnutls_record_send_early_data.3
gnutls-3.6.7/doc/manpages/gnutls_record_send_range.3
gnutls-3.6.7/doc/manpages/gnutls_record_set_max_early_data_size.3
gnutls-3.6.7/doc/manpages/gnutls_record_set_max_size.3
gnutls-3.6.7/doc/manpages/gnutls_record_set_state.3
gnutls-3.6.7/doc/manpages/gnutls_record_set_timeout.3
gnutls-3.6.7/doc/manpages/gnutls_record_uncork.3
gnutls-3.6.7/doc/manpages/gnutls_register_custom_url.3
gnutls-3.6.7/doc/manpages/gnutls_rehandshake.3
gnutls-3.6.7/doc/manpages/gnutls_rnd.3
gnutls-3.6.7/doc/manpages/gnutls_rnd_refresh.3
gnutls-3.6.7/doc/manpages/gnutls_safe_renegotiation_status.3
gnutls-3.6.7/doc/manpages/gnutls_sec_param_get_name.3
gnutls-3.6.7/doc/manpages/gnutls_sec_param_to_pk_bits.3
gnutls-3.6.7/doc/manpages/gnutls_sec_param_to_symmetric_bits.3
gnutls-3.6.7/doc/manpages/gnutls_server_name_get.3
gnutls-3.6.7/doc/manpages/gnutls_server_name_set.3
gnutls-3.6.7/doc/manpages/gnutls_session_channel_binding.3
gnutls-3.6.7/doc/manpages/gnutls_session_enable_compatibility_mode.3
gnutls-3.6.7/doc/manpages/gnutls_session_etm_status.3
gnutls-3.6.7/doc/manpages/gnutls_session_ext_master_secret_status.3
gnutls-3.6.7/doc/manpages/gnutls_session_ext_register.3
gnutls-3.6.7/doc/manpages/gnutls_session_force_valid.3
gnutls-3.6.7/doc/manpages/gnutls_session_get_data.3
gnutls-3.6.7/doc/manpages/gnutls_session_get_data2.3
gnutls-3.6.7/doc/manpages/gnutls_session_get_desc.3
gnutls-3.6.7/doc/manpages/gnutls_session_get_flags.3
gnutls-3.6.7/doc/manpages/gnutls_session_get_id.3
gnutls-3.6.7/doc/manpages/gnutls_session_get_id2.3
gnutls-3.6.7/doc/manpages/gnutls_session_get_master_secret.3
gnutls-3.6.7/doc/manpages/gnutls_session_get_ptr.3
gnutls-3.6.7/doc/manpages/gnutls_session_get_random.3
gnutls-3.6.7/doc/manpages/gnutls_session_get_verify_cert_status.3
gnutls-3.6.7/doc/manpages/gnutls_session_is_resumed.3
gnutls-3.6.7/doc/manpages/gnutls_session_key_update.3
gnutls-3.6.7/doc/manpages/gnutls_session_resumption_requested.3
gnutls-3.6.7/doc/manpages/gnutls_session_set_data.3
gnutls-3.6.7/doc/manpages/gnutls_session_set_id.3
gnutls-3.6.7/doc/manpages/gnutls_session_set_premaster.3
gnutls-3.6.7/doc/manpages/gnutls_session_set_ptr.3
gnutls-3.6.7/doc/manpages/gnutls_session_set_verify_cert.3
gnutls-3.6.7/doc/manpages/gnutls_session_set_verify_cert2.3
gnutls-3.6.7/doc/manpages/gnutls_session_set_verify_function.3
gnutls-3.6.7/doc/manpages/gnutls_session_supplemental_register.3
gnutls-3.6.7/doc/manpages/gnutls_session_ticket_enable_client.3
gnutls-3.6.7/doc/manpages/gnutls_session_ticket_enable_server.3
gnutls-3.6.7/doc/manpages/gnutls_session_ticket_key_generate.3
gnutls-3.6.7/doc/manpages/gnutls_session_ticket_send.3
gnutls-3.6.7/doc/manpages/gnutls_set_default_priority.3
gnutls-3.6.7/doc/manpages/gnutls_set_default_priority_append.3
gnutls-3.6.7/doc/manpages/gnutls_sign_algorithm_get.3
gnutls-3.6.7/doc/manpages/gnutls_sign_algorithm_get_client.3
gnutls-3.6.7/doc/manpages/gnutls_sign_algorithm_get_requested.3
gnutls-3.6.7/doc/manpages/gnutls_sign_get_hash_algorithm.3
gnutls-3.6.7/doc/manpages/gnutls_sign_get_id.3
gnutls-3.6.7/doc/manpages/gnutls_sign_get_name.3
gnutls-3.6.7/doc/manpages/gnutls_sign_get_oid.3
gnutls-3.6.7/doc/manpages/gnutls_sign_get_pk_algorithm.3
gnutls-3.6.7/doc/manpages/gnutls_sign_is_secure.3
gnutls-3.6.7/doc/manpages/gnutls_sign_is_secure2.3
gnutls-3.6.7/doc/manpages/gnutls_sign_list.3
gnutls-3.6.7/doc/manpages/gnutls_sign_supports_pk_algorithm.3
gnutls-3.6.7/doc/manpages/gnutls_srp_allocate_client_credentials.3
gnutls-3.6.7/doc/manpages/gnutls_srp_allocate_server_credentials.3
gnutls-3.6.7/doc/manpages/gnutls_srp_base64_decode.3
gnutls-3.6.7/doc/manpages/gnutls_srp_base64_decode2.3
gnutls-3.6.7/doc/manpages/gnutls_srp_base64_encode.3
gnutls-3.6.7/doc/manpages/gnutls_srp_base64_encode2.3
gnutls-3.6.7/doc/manpages/gnutls_srp_free_client_credentials.3
gnutls-3.6.7/doc/manpages/gnutls_srp_free_server_credentials.3
gnutls-3.6.7/doc/manpages/gnutls_srp_server_get_username.3
gnutls-3.6.7/doc/manpages/gnutls_srp_set_client_credentials.3
gnutls-3.6.7/doc/manpages/gnutls_srp_set_client_credentials_function.3
gnutls-3.6.7/doc/manpages/gnutls_srp_set_prime_bits.3
gnutls-3.6.7/doc/manpages/gnutls_srp_set_server_credentials_file.3
gnutls-3.6.7/doc/manpages/gnutls_srp_set_server_credentials_function.3
gnutls-3.6.7/doc/manpages/gnutls_srp_set_server_fake_salt_seed.3
gnutls-3.6.7/doc/manpages/gnutls_srp_verifier.3
gnutls-3.6.7/doc/manpages/gnutls_srtp_get_keys.3
gnutls-3.6.7/doc/manpages/gnutls_srtp_get_mki.3
gnutls-3.6.7/doc/manpages/gnutls_srtp_get_profile_id.3
gnutls-3.6.7/doc/manpages/gnutls_srtp_get_profile_name.3
gnutls-3.6.7/doc/manpages/gnutls_srtp_get_selected_profile.3
gnutls-3.6.7/doc/manpages/gnutls_srtp_set_mki.3
gnutls-3.6.7/doc/manpages/gnutls_srtp_set_profile.3
gnutls-3.6.7/doc/manpages/gnutls_srtp_set_profile_direct.3
gnutls-3.6.7/doc/manpages/gnutls_store_commitment.3
gnutls-3.6.7/doc/manpages/gnutls_store_pubkey.3
gnutls-3.6.7/doc/manpages/gnutls_strerror.3
gnutls-3.6.7/doc/manpages/gnutls_strerror_name.3
gnutls-3.6.7/doc/manpages/gnutls_subject_alt_names_deinit.3
gnutls-3.6.7/doc/manpages/gnutls_subject_alt_names_get.3
gnutls-3.6.7/doc/manpages/gnutls_subject_alt_names_init.3
gnutls-3.6.7/doc/manpages/gnutls_subject_alt_names_set.3
gnutls-3.6.7/doc/manpages/gnutls_supplemental_get_name.3
gnutls-3.6.7/doc/manpages/gnutls_supplemental_recv.3
gnutls-3.6.7/doc/manpages/gnutls_supplemental_register.3
gnutls-3.6.7/doc/manpages/gnutls_supplemental_send.3
gnutls-3.6.7/doc/manpages/gnutls_system_key_add_x509.3
gnutls-3.6.7/doc/manpages/gnutls_system_key_delete.3
gnutls-3.6.7/doc/manpages/gnutls_system_key_iter_deinit.3
gnutls-3.6.7/doc/manpages/gnutls_system_key_iter_get_info.3
gnutls-3.6.7/doc/manpages/gnutls_system_recv_timeout.3
gnutls-3.6.7/doc/manpages/gnutls_tdb_deinit.3
gnutls-3.6.7/doc/manpages/gnutls_tdb_init.3
gnutls-3.6.7/doc/manpages/gnutls_tdb_set_store_commitment_func.3
gnutls-3.6.7/doc/manpages/gnutls_tdb_set_store_func.3
gnutls-3.6.7/doc/manpages/gnutls_tdb_set_verify_func.3
gnutls-3.6.7/doc/manpages/gnutls_tpm_get_registered.3
gnutls-3.6.7/doc/manpages/gnutls_tpm_key_list_deinit.3
gnutls-3.6.7/doc/manpages/gnutls_tpm_key_list_get_url.3
gnutls-3.6.7/doc/manpages/gnutls_tpm_privkey_delete.3
gnutls-3.6.7/doc/manpages/gnutls_tpm_privkey_generate.3
gnutls-3.6.7/doc/manpages/gnutls_transport_get_int.3
gnutls-3.6.7/doc/manpages/gnutls_transport_get_int2.3
gnutls-3.6.7/doc/manpages/gnutls_transport_get_ptr.3
gnutls-3.6.7/doc/manpages/gnutls_transport_get_ptr2.3
gnutls-3.6.7/doc/manpages/gnutls_transport_set_errno.3
gnutls-3.6.7/doc/manpages/gnutls_transport_set_errno_function.3
gnutls-3.6.7/doc/manpages/gnutls_transport_set_fastopen.3
gnutls-3.6.7/doc/manpages/gnutls_transport_set_int.3
gnutls-3.6.7/doc/manpages/gnutls_transport_set_int2.3
gnutls-3.6.7/doc/manpages/gnutls_transport_set_ptr.3
gnutls-3.6.7/doc/manpages/gnutls_transport_set_ptr2.3
gnutls-3.6.7/doc/manpages/gnutls_transport_set_pull_function.3
gnutls-3.6.7/doc/manpages/gnutls_transport_set_pull_timeout_function.3
gnutls-3.6.7/doc/manpages/gnutls_transport_set_push_function.3
gnutls-3.6.7/doc/manpages/gnutls_transport_set_vec_push_function.3
gnutls-3.6.7/doc/manpages/gnutls_url_is_supported.3
gnutls-3.6.7/doc/manpages/gnutls_utf8_password_normalize.3
gnutls-3.6.7/doc/manpages/gnutls_verify_stored_pubkey.3
gnutls-3.6.7/doc/manpages/gnutls_x509_aia_deinit.3
gnutls-3.6.7/doc/manpages/gnutls_x509_aia_get.3
gnutls-3.6.7/doc/manpages/gnutls_x509_aia_init.3
gnutls-3.6.7/doc/manpages/gnutls_x509_aia_set.3
gnutls-3.6.7/doc/manpages/gnutls_x509_aki_deinit.3
gnutls-3.6.7/doc/manpages/gnutls_x509_aki_get_cert_issuer.3
gnutls-3.6.7/doc/manpages/gnutls_x509_aki_get_id.3
gnutls-3.6.7/doc/manpages/gnutls_x509_aki_init.3
gnutls-3.6.7/doc/manpages/gnutls_x509_aki_set_cert_issuer.3
gnutls-3.6.7/doc/manpages/gnutls_x509_aki_set_id.3
gnutls-3.6.7/doc/manpages/gnutls_x509_cidr_to_rfc5280.3
gnutls-3.6.7/doc/manpages/gnutls_x509_crl_check_issuer.3
gnutls-3.6.7/doc/manpages/gnutls_x509_crl_deinit.3
gnutls-3.6.7/doc/manpages/gnutls_x509_crl_dist_points_deinit.3
gnutls-3.6.7/doc/manpages/gnutls_x509_crl_dist_points_get.3
gnutls-3.6.7/doc/manpages/gnutls_x509_crl_dist_points_init.3
gnutls-3.6.7/doc/manpages/gnutls_x509_crl_dist_points_set.3
gnutls-3.6.7/doc/manpages/gnutls_x509_crl_export.3
gnutls-3.6.7/doc/manpages/gnutls_x509_crl_export2.3
gnutls-3.6.7/doc/manpages/gnutls_x509_crl_get_authority_key_gn_serial.3
gnutls-3.6.7/doc/manpages/gnutls_x509_crl_get_authority_key_id.3
gnutls-3.6.7/doc/manpages/gnutls_x509_crl_get_crt_count.3
gnutls-3.6.7/doc/manpages/gnutls_x509_crl_get_crt_serial.3
gnutls-3.6.7/doc/manpages/gnutls_x509_crl_get_dn_oid.3
gnutls-3.6.7/doc/manpages/gnutls_x509_crl_get_extension_data.3
gnutls-3.6.7/doc/manpages/gnutls_x509_crl_get_extension_data2.3
gnutls-3.6.7/doc/manpages/gnutls_x509_crl_get_extension_info.3
gnutls-3.6.7/doc/manpages/gnutls_x509_crl_get_extension_oid.3
gnutls-3.6.7/doc/manpages/gnutls_x509_crl_get_issuer_dn.3
gnutls-3.6.7/doc/manpages/gnutls_x509_crl_get_issuer_dn2.3
gnutls-3.6.7/doc/manpages/gnutls_x509_crl_get_issuer_dn3.3
gnutls-3.6.7/doc/manpages/gnutls_x509_crl_get_issuer_dn_by_oid.3
gnutls-3.6.7/doc/manpages/gnutls_x509_crl_get_next_update.3
gnutls-3.6.7/doc/manpages/gnutls_x509_crl_get_number.3
gnutls-3.6.7/doc/manpages/gnutls_x509_crl_get_raw_issuer_dn.3
gnutls-3.6.7/doc/manpages/gnutls_x509_crl_get_signature.3
gnutls-3.6.7/doc/manpages/gnutls_x509_crl_get_signature_algorithm.3
gnutls-3.6.7/doc/manpages/gnutls_x509_crl_get_signature_oid.3
gnutls-3.6.7/doc/manpages/gnutls_x509_crl_get_this_update.3
gnutls-3.6.7/doc/manpages/gnutls_x509_crl_get_version.3
gnutls-3.6.7/doc/manpages/gnutls_x509_crl_import.3
gnutls-3.6.7/doc/manpages/gnutls_x509_crl_init.3
gnutls-3.6.7/doc/manpages/gnutls_x509_crl_iter_crt_serial.3
gnutls-3.6.7/doc/manpages/gnutls_x509_crl_iter_deinit.3
gnutls-3.6.7/doc/manpages/gnutls_x509_crl_list_import.3
gnutls-3.6.7/doc/manpages/gnutls_x509_crl_list_import2.3
gnutls-3.6.7/doc/manpages/gnutls_x509_crl_print.3
gnutls-3.6.7/doc/manpages/gnutls_x509_crl_privkey_sign.3
gnutls-3.6.7/doc/manpages/gnutls_x509_crl_set_authority_key_id.3
gnutls-3.6.7/doc/manpages/gnutls_x509_crl_set_crt.3
gnutls-3.6.7/doc/manpages/gnutls_x509_crl_set_crt_serial.3
gnutls-3.6.7/doc/manpages/gnutls_x509_crl_set_next_update.3
gnutls-3.6.7/doc/manpages/gnutls_x509_crl_set_number.3
gnutls-3.6.7/doc/manpages/gnutls_x509_crl_set_this_update.3
gnutls-3.6.7/doc/manpages/gnutls_x509_crl_set_version.3
gnutls-3.6.7/doc/manpages/gnutls_x509_crl_sign.3
gnutls-3.6.7/doc/manpages/gnutls_x509_crl_sign2.3
gnutls-3.6.7/doc/manpages/gnutls_x509_crl_verify.3
gnutls-3.6.7/doc/manpages/gnutls_x509_crq_deinit.3
gnutls-3.6.7/doc/manpages/gnutls_x509_crq_export.3
gnutls-3.6.7/doc/manpages/gnutls_x509_crq_export2.3
gnutls-3.6.7/doc/manpages/gnutls_x509_crq_get_attribute_by_oid.3
gnutls-3.6.7/doc/manpages/gnutls_x509_crq_get_attribute_data.3
gnutls-3.6.7/doc/manpages/gnutls_x509_crq_get_attribute_info.3
gnutls-3.6.7/doc/manpages/gnutls_x509_crq_get_basic_constraints.3
gnutls-3.6.7/doc/manpages/gnutls_x509_crq_get_challenge_password.3
gnutls-3.6.7/doc/manpages/gnutls_x509_crq_get_dn.3
gnutls-3.6.7/doc/manpages/gnutls_x509_crq_get_dn2.3
gnutls-3.6.7/doc/manpages/gnutls_x509_crq_get_dn3.3
gnutls-3.6.7/doc/manpages/gnutls_x509_crq_get_dn_by_oid.3
gnutls-3.6.7/doc/manpages/gnutls_x509_crq_get_dn_oid.3
gnutls-3.6.7/doc/manpages/gnutls_x509_crq_get_extension_by_oid.3
gnutls-3.6.7/doc/manpages/gnutls_x509_crq_get_extension_by_oid2.3
gnutls-3.6.7/doc/manpages/gnutls_x509_crq_get_extension_data.3
gnutls-3.6.7/doc/manpages/gnutls_x509_crq_get_extension_data2.3
gnutls-3.6.7/doc/manpages/gnutls_x509_crq_get_extension_info.3
gnutls-3.6.7/doc/manpages/gnutls_x509_crq_get_key_id.3
gnutls-3.6.7/doc/manpages/gnutls_x509_crq_get_key_purpose_oid.3
gnutls-3.6.7/doc/manpages/gnutls_x509_crq_get_key_rsa_raw.3
gnutls-3.6.7/doc/manpages/gnutls_x509_crq_get_key_usage.3
gnutls-3.6.7/doc/manpages/gnutls_x509_crq_get_pk_algorithm.3
gnutls-3.6.7/doc/manpages/gnutls_x509_crq_get_pk_oid.3
gnutls-3.6.7/doc/manpages/gnutls_x509_crq_get_private_key_usage_period.3
gnutls-3.6.7/doc/manpages/gnutls_x509_crq_get_signature_algorithm.3
gnutls-3.6.7/doc/manpages/gnutls_x509_crq_get_signature_oid.3
gnutls-3.6.7/doc/manpages/gnutls_x509_crq_get_spki.3
gnutls-3.6.7/doc/manpages/gnutls_x509_crq_get_subject_alt_name.3
gnutls-3.6.7/doc/manpages/gnutls_x509_crq_get_subject_alt_othername_oid.3
gnutls-3.6.7/doc/manpages/gnutls_x509_crq_get_tlsfeatures.3
gnutls-3.6.7/doc/manpages/gnutls_x509_crq_get_version.3
gnutls-3.6.7/doc/manpages/gnutls_x509_crq_import.3
gnutls-3.6.7/doc/manpages/gnutls_x509_crq_init.3
gnutls-3.6.7/doc/manpages/gnutls_x509_crq_print.3
gnutls-3.6.7/doc/manpages/gnutls_x509_crq_privkey_sign.3
gnutls-3.6.7/doc/manpages/gnutls_x509_crq_set_attribute_by_oid.3
gnutls-3.6.7/doc/manpages/gnutls_x509_crq_set_basic_constraints.3
gnutls-3.6.7/doc/manpages/gnutls_x509_crq_set_challenge_password.3
gnutls-3.6.7/doc/manpages/gnutls_x509_crq_set_dn.3
gnutls-3.6.7/doc/manpages/gnutls_x509_crq_set_dn_by_oid.3
gnutls-3.6.7/doc/manpages/gnutls_x509_crq_set_extension_by_oid.3
gnutls-3.6.7/doc/manpages/gnutls_x509_crq_set_key.3
gnutls-3.6.7/doc/manpages/gnutls_x509_crq_set_key_purpose_oid.3
gnutls-3.6.7/doc/manpages/gnutls_x509_crq_set_key_rsa_raw.3
gnutls-3.6.7/doc/manpages/gnutls_x509_crq_set_key_usage.3
gnutls-3.6.7/doc/manpages/gnutls_x509_crq_set_private_key_usage_period.3
gnutls-3.6.7/doc/manpages/gnutls_x509_crq_set_pubkey.3
gnutls-3.6.7/doc/manpages/gnutls_x509_crq_set_spki.3
gnutls-3.6.7/doc/manpages/gnutls_x509_crq_set_subject_alt_name.3
gnutls-3.6.7/doc/manpages/gnutls_x509_crq_set_subject_alt_othername.3
gnutls-3.6.7/doc/manpages/gnutls_x509_crq_set_tlsfeatures.3
gnutls-3.6.7/doc/manpages/gnutls_x509_crq_set_version.3
gnutls-3.6.7/doc/manpages/gnutls_x509_crq_sign.3
gnutls-3.6.7/doc/manpages/gnutls_x509_crq_sign2.3
gnutls-3.6.7/doc/manpages/gnutls_x509_crq_verify.3
gnutls-3.6.7/doc/manpages/gnutls_x509_crt_check_email.3
gnutls-3.6.7/doc/manpages/gnutls_x509_crt_check_hostname.3
gnutls-3.6.7/doc/manpages/gnutls_x509_crt_check_hostname2.3
gnutls-3.6.7/doc/manpages/gnutls_x509_crt_check_ip.3
gnutls-3.6.7/doc/manpages/gnutls_x509_crt_check_issuer.3
gnutls-3.6.7/doc/manpages/gnutls_x509_crt_check_key_purpose.3
gnutls-3.6.7/doc/manpages/gnutls_x509_crt_check_revocation.3
gnutls-3.6.7/doc/manpages/gnutls_x509_crt_cpy_crl_dist_points.3
gnutls-3.6.7/doc/manpages/gnutls_x509_crt_deinit.3
gnutls-3.6.7/doc/manpages/gnutls_x509_crt_equals.3
gnutls-3.6.7/doc/manpages/gnutls_x509_crt_equals2.3
gnutls-3.6.7/doc/manpages/gnutls_x509_crt_export.3
gnutls-3.6.7/doc/manpages/gnutls_x509_crt_export2.3
gnutls-3.6.7/doc/manpages/gnutls_x509_crt_get_activation_time.3
gnutls-3.6.7/doc/manpages/gnutls_x509_crt_get_authority_info_access.3
gnutls-3.6.7/doc/manpages/gnutls_x509_crt_get_authority_key_gn_serial.3
gnutls-3.6.7/doc/manpages/gnutls_x509_crt_get_authority_key_id.3
gnutls-3.6.7/doc/manpages/gnutls_x509_crt_get_basic_constraints.3
gnutls-3.6.7/doc/manpages/gnutls_x509_crt_get_ca_status.3
gnutls-3.6.7/doc/manpages/gnutls_x509_crt_get_crl_dist_points.3
gnutls-3.6.7/doc/manpages/gnutls_x509_crt_get_dn.3
gnutls-3.6.7/doc/manpages/gnutls_x509_crt_get_dn2.3
gnutls-3.6.7/doc/manpages/gnutls_x509_crt_get_dn3.3
gnutls-3.6.7/doc/manpages/gnutls_x509_crt_get_dn_by_oid.3
gnutls-3.6.7/doc/manpages/gnutls_x509_crt_get_dn_oid.3
gnutls-3.6.7/doc/manpages/gnutls_x509_crt_get_expiration_time.3
gnutls-3.6.7/doc/manpages/gnutls_x509_crt_get_extension_by_oid.3
gnutls-3.6.7/doc/manpages/gnutls_x509_crt_get_extension_by_oid2.3
gnutls-3.6.7/doc/manpages/gnutls_x509_crt_get_extension_data.3
gnutls-3.6.7/doc/manpages/gnutls_x509_crt_get_extension_data2.3
gnutls-3.6.7/doc/manpages/gnutls_x509_crt_get_extension_info.3
gnutls-3.6.7/doc/manpages/gnutls_x509_crt_get_extension_oid.3
gnutls-3.6.7/doc/manpages/gnutls_x509_crt_get_fingerprint.3
gnutls-3.6.7/doc/manpages/gnutls_x509_crt_get_inhibit_anypolicy.3
gnutls-3.6.7/doc/manpages/gnutls_x509_crt_get_issuer.3
gnutls-3.6.7/doc/manpages/gnutls_x509_crt_get_issuer_alt_name.3
gnutls-3.6.7/doc/manpages/gnutls_x509_crt_get_issuer_alt_name2.3
gnutls-3.6.7/doc/manpages/gnutls_x509_crt_get_issuer_alt_othername_oid.3
gnutls-3.6.7/doc/manpages/gnutls_x509_crt_get_issuer_dn.3
gnutls-3.6.7/doc/manpages/gnutls_x509_crt_get_issuer_dn2.3
gnutls-3.6.7/doc/manpages/gnutls_x509_crt_get_issuer_dn3.3
gnutls-3.6.7/doc/manpages/gnutls_x509_crt_get_issuer_dn_by_oid.3
gnutls-3.6.7/doc/manpages/gnutls_x509_crt_get_issuer_dn_oid.3
gnutls-3.6.7/doc/manpages/gnutls_x509_crt_get_issuer_unique_id.3
gnutls-3.6.7/doc/manpages/gnutls_x509_crt_get_key_id.3
gnutls-3.6.7/doc/manpages/gnutls_x509_crt_get_key_purpose_oid.3
gnutls-3.6.7/doc/manpages/gnutls_x509_crt_get_key_usage.3
gnutls-3.6.7/doc/manpages/gnutls_x509_crt_get_name_constraints.3
gnutls-3.6.7/doc/manpages/gnutls_x509_crt_get_pk_algorithm.3
gnutls-3.6.7/doc/manpages/gnutls_x509_crt_get_pk_dsa_raw.3
gnutls-3.6.7/doc/manpages/gnutls_x509_crt_get_pk_ecc_raw.3
gnutls-3.6.7/doc/manpages/gnutls_x509_crt_get_pk_gost_raw.3
gnutls-3.6.7/doc/manpages/gnutls_x509_crt_get_pk_oid.3
gnutls-3.6.7/doc/manpages/gnutls_x509_crt_get_pk_rsa_raw.3
gnutls-3.6.7/doc/manpages/gnutls_x509_crt_get_policy.3
gnutls-3.6.7/doc/manpages/gnutls_x509_crt_get_preferred_hash_algorithm.3
gnutls-3.6.7/doc/manpages/gnutls_x509_crt_get_private_key_usage_period.3
gnutls-3.6.7/doc/manpages/gnutls_x509_crt_get_proxy.3
gnutls-3.6.7/doc/manpages/gnutls_x509_crt_get_raw_dn.3
gnutls-3.6.7/doc/manpages/gnutls_x509_crt_get_raw_issuer_dn.3
gnutls-3.6.7/doc/manpages/gnutls_x509_crt_get_serial.3
gnutls-3.6.7/doc/manpages/gnutls_x509_crt_get_signature.3
gnutls-3.6.7/doc/manpages/gnutls_x509_crt_get_signature_algorithm.3
gnutls-3.6.7/doc/manpages/gnutls_x509_crt_get_signature_oid.3
gnutls-3.6.7/doc/manpages/gnutls_x509_crt_get_spki.3
gnutls-3.6.7/doc/manpages/gnutls_x509_crt_get_subject.3
gnutls-3.6.7/doc/manpages/gnutls_x509_crt_get_subject_alt_name.3
gnutls-3.6.7/doc/manpages/gnutls_x509_crt_get_subject_alt_name2.3
gnutls-3.6.7/doc/manpages/gnutls_x509_crt_get_subject_alt_othername_oid.3
gnutls-3.6.7/doc/manpages/gnutls_x509_crt_get_subject_key_id.3
gnutls-3.6.7/doc/manpages/gnutls_x509_crt_get_subject_unique_id.3
gnutls-3.6.7/doc/manpages/gnutls_x509_crt_get_tlsfeatures.3
gnutls-3.6.7/doc/manpages/gnutls_x509_crt_get_version.3
gnutls-3.6.7/doc/manpages/gnutls_x509_crt_import.3
gnutls-3.6.7/doc/manpages/gnutls_x509_crt_import_pkcs11.3
gnutls-3.6.7/doc/manpages/gnutls_x509_crt_import_url.3
gnutls-3.6.7/doc/manpages/gnutls_x509_crt_init.3
gnutls-3.6.7/doc/manpages/gnutls_x509_crt_list_import.3
gnutls-3.6.7/doc/manpages/gnutls_x509_crt_list_import2.3
gnutls-3.6.7/doc/manpages/gnutls_x509_crt_list_import_pkcs11.3
gnutls-3.6.7/doc/manpages/gnutls_x509_crt_list_import_url.3
gnutls-3.6.7/doc/manpages/gnutls_x509_crt_list_verify.3
gnutls-3.6.7/doc/manpages/gnutls_x509_crt_print.3
gnutls-3.6.7/doc/manpages/gnutls_x509_crt_privkey_sign.3
gnutls-3.6.7/doc/manpages/gnutls_x509_crt_set_activation_time.3
gnutls-3.6.7/doc/manpages/gnutls_x509_crt_set_authority_info_access.3
gnutls-3.6.7/doc/manpages/gnutls_x509_crt_set_authority_key_id.3
gnutls-3.6.7/doc/manpages/gnutls_x509_crt_set_basic_constraints.3
gnutls-3.6.7/doc/manpages/gnutls_x509_crt_set_ca_status.3
gnutls-3.6.7/doc/manpages/gnutls_x509_crt_set_crl_dist_points.3
gnutls-3.6.7/doc/manpages/gnutls_x509_crt_set_crl_dist_points2.3
gnutls-3.6.7/doc/manpages/gnutls_x509_crt_set_crq.3
gnutls-3.6.7/doc/manpages/gnutls_x509_crt_set_crq_extension_by_oid.3
gnutls-3.6.7/doc/manpages/gnutls_x509_crt_set_crq_extensions.3
gnutls-3.6.7/doc/manpages/gnutls_x509_crt_set_dn.3
gnutls-3.6.7/doc/manpages/gnutls_x509_crt_set_dn_by_oid.3
gnutls-3.6.7/doc/manpages/gnutls_x509_crt_set_expiration_time.3
gnutls-3.6.7/doc/manpages/gnutls_x509_crt_set_extension_by_oid.3
gnutls-3.6.7/doc/manpages/gnutls_x509_crt_set_flags.3
gnutls-3.6.7/doc/manpages/gnutls_x509_crt_set_inhibit_anypolicy.3
gnutls-3.6.7/doc/manpages/gnutls_x509_crt_set_issuer_alt_name.3
gnutls-3.6.7/doc/manpages/gnutls_x509_crt_set_issuer_alt_othername.3
gnutls-3.6.7/doc/manpages/gnutls_x509_crt_set_issuer_dn.3
gnutls-3.6.7/doc/manpages/gnutls_x509_crt_set_issuer_dn_by_oid.3
gnutls-3.6.7/doc/manpages/gnutls_x509_crt_set_issuer_unique_id.3
gnutls-3.6.7/doc/manpages/gnutls_x509_crt_set_key.3
gnutls-3.6.7/doc/manpages/gnutls_x509_crt_set_key_purpose_oid.3
gnutls-3.6.7/doc/manpages/gnutls_x509_crt_set_key_usage.3
gnutls-3.6.7/doc/manpages/gnutls_x509_crt_set_name_constraints.3
gnutls-3.6.7/doc/manpages/gnutls_x509_crt_set_pin_function.3
gnutls-3.6.7/doc/manpages/gnutls_x509_crt_set_policy.3
gnutls-3.6.7/doc/manpages/gnutls_x509_crt_set_private_key_usage_period.3
gnutls-3.6.7/doc/manpages/gnutls_x509_crt_set_proxy.3
gnutls-3.6.7/doc/manpages/gnutls_x509_crt_set_proxy_dn.3
gnutls-3.6.7/doc/manpages/gnutls_x509_crt_set_pubkey.3
gnutls-3.6.7/doc/manpages/gnutls_x509_crt_set_serial.3
gnutls-3.6.7/doc/manpages/gnutls_x509_crt_set_spki.3
gnutls-3.6.7/doc/manpages/gnutls_x509_crt_set_subject_alt_name.3
gnutls-3.6.7/doc/manpages/gnutls_x509_crt_set_subject_alt_othername.3
gnutls-3.6.7/doc/manpages/gnutls_x509_crt_set_subject_alternative_name.3
gnutls-3.6.7/doc/manpages/gnutls_x509_crt_set_subject_key_id.3
gnutls-3.6.7/doc/manpages/gnutls_x509_crt_set_subject_unique_id.3
gnutls-3.6.7/doc/manpages/gnutls_x509_crt_set_tlsfeatures.3
gnutls-3.6.7/doc/manpages/gnutls_x509_crt_set_version.3
gnutls-3.6.7/doc/manpages/gnutls_x509_crt_sign.3
gnutls-3.6.7/doc/manpages/gnutls_x509_crt_sign2.3
gnutls-3.6.7/doc/manpages/gnutls_x509_crt_verify.3
gnutls-3.6.7/doc/manpages/gnutls_x509_crt_verify_data2.3
gnutls-3.6.7/doc/manpages/gnutls_x509_dn_deinit.3
gnutls-3.6.7/doc/manpages/gnutls_x509_dn_export.3
gnutls-3.6.7/doc/manpages/gnutls_x509_dn_export2.3
gnutls-3.6.7/doc/manpages/gnutls_x509_dn_get_rdn_ava.3
gnutls-3.6.7/doc/manpages/gnutls_x509_dn_get_str.3
gnutls-3.6.7/doc/manpages/gnutls_x509_dn_get_str2.3
gnutls-3.6.7/doc/manpages/gnutls_x509_dn_import.3
gnutls-3.6.7/doc/manpages/gnutls_x509_dn_init.3
gnutls-3.6.7/doc/manpages/gnutls_x509_dn_oid_known.3
gnutls-3.6.7/doc/manpages/gnutls_x509_dn_oid_name.3
gnutls-3.6.7/doc/manpages/gnutls_x509_dn_set_str.3
gnutls-3.6.7/doc/manpages/gnutls_x509_ext_deinit.3
gnutls-3.6.7/doc/manpages/gnutls_x509_ext_export_aia.3
gnutls-3.6.7/doc/manpages/gnutls_x509_ext_export_authority_key_id.3
gnutls-3.6.7/doc/manpages/gnutls_x509_ext_export_basic_constraints.3
gnutls-3.6.7/doc/manpages/gnutls_x509_ext_export_crl_dist_points.3
gnutls-3.6.7/doc/manpages/gnutls_x509_ext_export_inhibit_anypolicy.3
gnutls-3.6.7/doc/manpages/gnutls_x509_ext_export_key_purposes.3
gnutls-3.6.7/doc/manpages/gnutls_x509_ext_export_key_usage.3
gnutls-3.6.7/doc/manpages/gnutls_x509_ext_export_name_constraints.3
gnutls-3.6.7/doc/manpages/gnutls_x509_ext_export_policies.3
gnutls-3.6.7/doc/manpages/gnutls_x509_ext_export_private_key_usage_period.3
gnutls-3.6.7/doc/manpages/gnutls_x509_ext_export_proxy.3
gnutls-3.6.7/doc/manpages/gnutls_x509_ext_export_subject_alt_names.3
gnutls-3.6.7/doc/manpages/gnutls_x509_ext_export_subject_key_id.3
gnutls-3.6.7/doc/manpages/gnutls_x509_ext_export_tlsfeatures.3
gnutls-3.6.7/doc/manpages/gnutls_x509_ext_import_aia.3
gnutls-3.6.7/doc/manpages/gnutls_x509_ext_import_authority_key_id.3
gnutls-3.6.7/doc/manpages/gnutls_x509_ext_import_basic_constraints.3
gnutls-3.6.7/doc/manpages/gnutls_x509_ext_import_crl_dist_points.3
gnutls-3.6.7/doc/manpages/gnutls_x509_ext_import_inhibit_anypolicy.3
gnutls-3.6.7/doc/manpages/gnutls_x509_ext_import_key_purposes.3
gnutls-3.6.7/doc/manpages/gnutls_x509_ext_import_key_usage.3
gnutls-3.6.7/doc/manpages/gnutls_x509_ext_import_name_constraints.3
gnutls-3.6.7/doc/manpages/gnutls_x509_ext_import_policies.3
gnutls-3.6.7/doc/manpages/gnutls_x509_ext_import_private_key_usage_period.3
gnutls-3.6.7/doc/manpages/gnutls_x509_ext_import_proxy.3
gnutls-3.6.7/doc/manpages/gnutls_x509_ext_import_subject_alt_names.3
gnutls-3.6.7/doc/manpages/gnutls_x509_ext_import_subject_key_id.3
gnutls-3.6.7/doc/manpages/gnutls_x509_ext_import_tlsfeatures.3
gnutls-3.6.7/doc/manpages/gnutls_x509_ext_print.3
gnutls-3.6.7/doc/manpages/gnutls_x509_key_purpose_deinit.3
gnutls-3.6.7/doc/manpages/gnutls_x509_key_purpose_get.3
gnutls-3.6.7/doc/manpages/gnutls_x509_key_purpose_init.3
gnutls-3.6.7/doc/manpages/gnutls_x509_key_purpose_set.3
gnutls-3.6.7/doc/manpages/gnutls_x509_name_constraints_add_excluded.3
gnutls-3.6.7/doc/manpages/gnutls_x509_name_constraints_add_permitted.3
gnutls-3.6.7/doc/manpages/gnutls_x509_name_constraints_check.3
gnutls-3.6.7/doc/manpages/gnutls_x509_name_constraints_check_crt.3
gnutls-3.6.7/doc/manpages/gnutls_x509_name_constraints_deinit.3
gnutls-3.6.7/doc/manpages/gnutls_x509_name_constraints_get_excluded.3
gnutls-3.6.7/doc/manpages/gnutls_x509_name_constraints_get_permitted.3
gnutls-3.6.7/doc/manpages/gnutls_x509_name_constraints_init.3
gnutls-3.6.7/doc/manpages/gnutls_x509_othername_to_virtual.3
gnutls-3.6.7/doc/manpages/gnutls_x509_policies_deinit.3
gnutls-3.6.7/doc/manpages/gnutls_x509_policies_get.3
gnutls-3.6.7/doc/manpages/gnutls_x509_policies_init.3
gnutls-3.6.7/doc/manpages/gnutls_x509_policies_set.3
gnutls-3.6.7/doc/manpages/gnutls_x509_policy_release.3
gnutls-3.6.7/doc/manpages/gnutls_x509_privkey_cpy.3
gnutls-3.6.7/doc/manpages/gnutls_x509_privkey_deinit.3
gnutls-3.6.7/doc/manpages/gnutls_x509_privkey_export.3
gnutls-3.6.7/doc/manpages/gnutls_x509_privkey_export2.3
gnutls-3.6.7/doc/manpages/gnutls_x509_privkey_export2_pkcs8.3
gnutls-3.6.7/doc/manpages/gnutls_x509_privkey_export_dsa_raw.3
gnutls-3.6.7/doc/manpages/gnutls_x509_privkey_export_ecc_raw.3
gnutls-3.6.7/doc/manpages/gnutls_x509_privkey_export_gost_raw.3
gnutls-3.6.7/doc/manpages/gnutls_x509_privkey_export_pkcs8.3
gnutls-3.6.7/doc/manpages/gnutls_x509_privkey_export_rsa_raw.3
gnutls-3.6.7/doc/manpages/gnutls_x509_privkey_export_rsa_raw2.3
gnutls-3.6.7/doc/manpages/gnutls_x509_privkey_fix.3
gnutls-3.6.7/doc/manpages/gnutls_x509_privkey_generate.3
gnutls-3.6.7/doc/manpages/gnutls_x509_privkey_generate2.3
gnutls-3.6.7/doc/manpages/gnutls_x509_privkey_get_key_id.3
gnutls-3.6.7/doc/manpages/gnutls_x509_privkey_get_pk_algorithm.3
gnutls-3.6.7/doc/manpages/gnutls_x509_privkey_get_pk_algorithm2.3
gnutls-3.6.7/doc/manpages/gnutls_x509_privkey_get_seed.3
gnutls-3.6.7/doc/manpages/gnutls_x509_privkey_get_spki.3
gnutls-3.6.7/doc/manpages/gnutls_x509_privkey_import.3
gnutls-3.6.7/doc/manpages/gnutls_x509_privkey_import2.3
gnutls-3.6.7/doc/manpages/gnutls_x509_privkey_import_dsa_raw.3
gnutls-3.6.7/doc/manpages/gnutls_x509_privkey_import_ecc_raw.3
gnutls-3.6.7/doc/manpages/gnutls_x509_privkey_import_gost_raw.3
gnutls-3.6.7/doc/manpages/gnutls_x509_privkey_import_openssl.3
gnutls-3.6.7/doc/manpages/gnutls_x509_privkey_import_pkcs8.3
gnutls-3.6.7/doc/manpages/gnutls_x509_privkey_import_rsa_raw.3
gnutls-3.6.7/doc/manpages/gnutls_x509_privkey_import_rsa_raw2.3
gnutls-3.6.7/doc/manpages/gnutls_x509_privkey_init.3
gnutls-3.6.7/doc/manpages/gnutls_x509_privkey_sec_param.3
gnutls-3.6.7/doc/manpages/gnutls_x509_privkey_set_flags.3
gnutls-3.6.7/doc/manpages/gnutls_x509_privkey_set_pin_function.3
gnutls-3.6.7/doc/manpages/gnutls_x509_privkey_set_spki.3
gnutls-3.6.7/doc/manpages/gnutls_x509_privkey_sign_data.3
gnutls-3.6.7/doc/manpages/gnutls_x509_privkey_sign_hash.3
gnutls-3.6.7/doc/manpages/gnutls_x509_privkey_verify_params.3
gnutls-3.6.7/doc/manpages/gnutls_x509_privkey_verify_seed.3
gnutls-3.6.7/doc/manpages/gnutls_x509_rdn_get.3
gnutls-3.6.7/doc/manpages/gnutls_x509_rdn_get2.3
gnutls-3.6.7/doc/manpages/gnutls_x509_rdn_get_by_oid.3
gnutls-3.6.7/doc/manpages/gnutls_x509_rdn_get_oid.3
gnutls-3.6.7/doc/manpages/gnutls_x509_spki_deinit.3
gnutls-3.6.7/doc/manpages/gnutls_x509_spki_get_rsa_pss_params.3
gnutls-3.6.7/doc/manpages/gnutls_x509_spki_init.3
gnutls-3.6.7/doc/manpages/gnutls_x509_spki_set_rsa_pss_params.3
gnutls-3.6.7/doc/manpages/gnutls_x509_tlsfeatures_add.3
gnutls-3.6.7/doc/manpages/gnutls_x509_tlsfeatures_check_crt.3
gnutls-3.6.7/doc/manpages/gnutls_x509_tlsfeatures_deinit.3
gnutls-3.6.7/doc/manpages/gnutls_x509_tlsfeatures_get.3
gnutls-3.6.7/doc/manpages/gnutls_x509_tlsfeatures_init.3
gnutls-3.6.7/doc/manpages/gnutls_x509_trust_list_add_cas.3
gnutls-3.6.7/doc/manpages/gnutls_x509_trust_list_add_crls.3
gnutls-3.6.7/doc/manpages/gnutls_x509_trust_list_add_named_crt.3
gnutls-3.6.7/doc/manpages/gnutls_x509_trust_list_add_system_trust.3
gnutls-3.6.7/doc/manpages/gnutls_x509_trust_list_add_trust_dir.3
gnutls-3.6.7/doc/manpages/gnutls_x509_trust_list_add_trust_file.3
gnutls-3.6.7/doc/manpages/gnutls_x509_trust_list_add_trust_mem.3
gnutls-3.6.7/doc/manpages/gnutls_x509_trust_list_deinit.3
gnutls-3.6.7/doc/manpages/gnutls_x509_trust_list_get_issuer.3
gnutls-3.6.7/doc/manpages/gnutls_x509_trust_list_get_issuer_by_dn.3
gnutls-3.6.7/doc/manpages/gnutls_x509_trust_list_get_issuer_by_subject_key_id.3
gnutls-3.6.7/doc/manpages/gnutls_x509_trust_list_init.3
gnutls-3.6.7/doc/manpages/gnutls_x509_trust_list_iter_deinit.3
gnutls-3.6.7/doc/manpages/gnutls_x509_trust_list_iter_get_ca.3
gnutls-3.6.7/doc/manpages/gnutls_x509_trust_list_remove_cas.3
gnutls-3.6.7/doc/manpages/gnutls_x509_trust_list_remove_trust_file.3
gnutls-3.6.7/doc/manpages/gnutls_x509_trust_list_remove_trust_mem.3
gnutls-3.6.7/doc/manpages/gnutls_x509_trust_list_verify_crt.3
gnutls-3.6.7/doc/manpages/gnutls_x509_trust_list_verify_crt2.3
gnutls-3.6.7/doc/manpages/gnutls_x509_trust_list_verify_named_crt.3
gnutls-3.6.7/doc/manpages/ocsptool.1
gnutls-3.6.7/doc/manpages/p11tool.1
gnutls-3.6.7/doc/manpages/psktool.1
gnutls-3.6.7/doc/manpages/srptool.1
gnutls-3.6.7/doc/manpages/stamp_mans
gnutls-3.6.7/doc/manpages/tpmtool.1
gnutls-3.6.7/doc/ocsp-api.texi
gnutls-3.6.7/doc/pkcs11-api.texi
gnutls-3.6.7/doc/pkcs11-vision.dia
gnutls-3.6.7/doc/pkcs11-vision.eps
gnutls-3.6.7/doc/pkcs11-vision.png
gnutls-3.6.7/doc/pkcs12-api.texi
gnutls-3.6.7/doc/pkcs7-api.texi
gnutls-3.6.7/doc/printlist.c
gnutls-3.6.7/doc/reference/
gnutls-3.6.7/doc/reference/Makefile.am
gnutls-3.6.7/doc/reference/Makefile.in
gnutls-3.6.7/doc/reference/gnutls-docs.sgml
gnutls-3.6.7/doc/reference/gnutls-overrides.txt
gnutls-3.6.7/doc/reference/gnutls-sections.txt
gnutls-3.6.7/doc/reference/gnutls.types
gnutls-3.6.7/doc/reference/html/
gnutls-3.6.7/doc/reference/html/api-index-full.html
gnutls-3.6.7/doc/reference/html/gnutls.devhelp2
gnutls-3.6.7/doc/reference/html/home.png
gnutls-3.6.7/doc/reference/html/index.html
gnutls-3.6.7/doc/reference/html/intro.html
gnutls-3.6.7/doc/reference/html/left-insensitive.png
gnutls-3.6.7/doc/reference/html/left.png
gnutls-3.6.7/doc/reference/html/right-insensitive.png
gnutls-3.6.7/doc/reference/html/right.png
gnutls-3.6.7/doc/reference/html/style.css
gnutls-3.6.7/doc/reference/html/up-insensitive.png
gnutls-3.6.7/doc/reference/html/up.png
gnutls-3.6.7/doc/reference/version.xml.in
gnutls-3.6.7/doc/scripts/
gnutls-3.6.7/doc/scripts/Makefile.am
gnutls-3.6.7/doc/scripts/Makefile.in
gnutls-3.6.7/doc/scripts/cleanup-autogen.pl
gnutls-3.6.7/doc/scripts/gdoc
gnutls-3.6.7/doc/scripts/getfuncs-map.pl
gnutls-3.6.7/doc/scripts/getfuncs.pl
gnutls-3.6.7/doc/scripts/sort2.pl
gnutls-3.6.7/doc/scripts/split-texi.pl
gnutls-3.6.7/doc/sec-tls-app.texi
gnutls-3.6.7/doc/socket-api.texi
gnutls-3.6.7/doc/stamp-1
gnutls-3.6.7/doc/stamp-vti
gnutls-3.6.7/doc/stamp_enums
gnutls-3.6.7/doc/stamp_functions
gnutls-3.6.7/doc/texinfo.css
gnutls-3.6.7/doc/tpm-api.texi
gnutls-3.6.7/doc/version-guile.texi
gnutls-3.6.7/doc/version.texi
gnutls-3.6.7/doc/x509-api.texi
gnutls-3.6.7/extra/
gnutls-3.6.7/extra/Makefile.am
gnutls-3.6.7/extra/Makefile.in
gnutls-3.6.7/extra/gnutls_openssl.c
gnutls-3.6.7/extra/includes/
gnutls-3.6.7/extra/includes/Makefile.am
gnutls-3.6.7/extra/includes/Makefile.in
gnutls-3.6.7/extra/includes/gnutls/
gnutls-3.6.7/extra/includes/gnutls/openssl.h
gnutls-3.6.7/extra/openssl_compat.c
gnutls-3.6.7/extra/openssl_compat.h
gnutls-3.6.7/fuzz/
gnutls-3.6.7/fuzz/Makefile.am
gnutls-3.6.7/fuzz/Makefile.in
gnutls-3.6.7/fuzz/certs.h
gnutls-3.6.7/fuzz/fuzzer.h
gnutls-3.6.7/fuzz/gnutls_base64_decoder_fuzzer.c
gnutls-3.6.7/fuzz/gnutls_base64_decoder_fuzzer.dict
gnutls-3.6.7/fuzz/gnutls_base64_encoder_fuzzer.c
gnutls-3.6.7/fuzz/gnutls_client_fuzzer.c
gnutls-3.6.7/fuzz/gnutls_dn_parser_fuzzer.c
gnutls-3.6.7/fuzz/gnutls_idna_parser_fuzzer.c
gnutls-3.6.7/fuzz/gnutls_ocsp_req_parser_fuzzer.c
gnutls-3.6.7/fuzz/gnutls_ocsp_resp_parser_fuzzer.c
gnutls-3.6.7/fuzz/gnutls_pkcs12_key_parser_fuzzer.c
gnutls-3.6.7/fuzz/gnutls_pkcs7_parser_fuzzer.c
gnutls-3.6.7/fuzz/gnutls_pkcs8_key_parser_fuzzer.c
gnutls-3.6.7/fuzz/gnutls_private_key_parser_fuzzer.c
gnutls-3.6.7/fuzz/gnutls_psk_client_fuzzer.c
gnutls-3.6.7/fuzz/gnutls_psk_server_fuzzer.c
gnutls-3.6.7/fuzz/gnutls_psk_server_fuzzer.repro/
gnutls-3.6.7/fuzz/gnutls_psk_server_fuzzer.repro/d757b818210bcaec5e297cdb5e30cee9059f9bc3
gnutls-3.6.7/fuzz/gnutls_psk_server_fuzzer.repro/e40a8cc4e868b450a442d905d914aee402b57a15
gnutls-3.6.7/fuzz/gnutls_reverse_idna_parser_fuzzer.c
gnutls-3.6.7/fuzz/gnutls_server_fuzzer.c
gnutls-3.6.7/fuzz/gnutls_set_trust_file_fuzzer.c
gnutls-3.6.7/fuzz/gnutls_set_trust_file_fuzzer.repro/
gnutls-3.6.7/fuzz/gnutls_set_trust_file_fuzzer.repro/ef118c4e773fc81ad3311dae0405b42f2b6ccbe8
gnutls-3.6.7/fuzz/gnutls_set_trust_file_fuzzer.repro/leak-45c99e9c25d7822699485d62af11038c57c364a0
gnutls-3.6.7/fuzz/gnutls_srp_client_fuzzer.c
gnutls-3.6.7/fuzz/gnutls_srp_server_fuzzer.c
gnutls-3.6.7/fuzz/gnutls_x509_parser_fuzzer.c
gnutls-3.6.7/fuzz/gnutls_x509_parser_fuzzer.repro/
gnutls-3.6.7/fuzz/gnutls_x509_parser_fuzzer.repro/crash-c6a115727da400db85941e32cbaa1b65316744a9
gnutls-3.6.7/fuzz/gnutls_x509_parser_fuzzer.repro/leak-45ceff5162bae741d1048cede0d5dfe6b677761d
gnutls-3.6.7/fuzz/gnutls_x509_verify_fuzzer.c
gnutls-3.6.7/fuzz/gnutls_x509_verify_fuzzer.repro/
gnutls-3.6.7/fuzz/gnutls_x509_verify_fuzzer.repro/cacdb69aaf394120d761291f43983336d15c7be3
gnutls-3.6.7/fuzz/main.c
gnutls-3.6.7/fuzz/mem.h
gnutls-3.6.7/fuzz/psk.h
gnutls-3.6.7/fuzz/srp.h
gnutls-3.6.7/gl/
gnutls-3.6.7/gl/Makefile.am
gnutls-3.6.7/gl/Makefile.in
gnutls-3.6.7/gl/_Noreturn.h
gnutls-3.6.7/gl/alloca.c
gnutls-3.6.7/gl/alloca.in.h
gnutls-3.6.7/gl/arg-nonnull.h
gnutls-3.6.7/gl/arpa_inet.in.h
gnutls-3.6.7/gl/asnprintf.c
gnutls-3.6.7/gl/asprintf.c
gnutls-3.6.7/gl/byteswap.in.h
gnutls-3.6.7/gl/c++defs.h
gnutls-3.6.7/gl/c-ctype.c
gnutls-3.6.7/gl/c-ctype.h
gnutls-3.6.7/gl/c-strcase.h
gnutls-3.6.7/gl/c-strcasecmp.c
gnutls-3.6.7/gl/c-strncasecmp.c
gnutls-3.6.7/gl/errno.in.h
gnutls-3.6.7/gl/float+.h
gnutls-3.6.7/gl/float.c
gnutls-3.6.7/gl/float.in.h
gnutls-3.6.7/gl/fstat.c
gnutls-3.6.7/gl/ftell.c
gnutls-3.6.7/gl/ftello.c
gnutls-3.6.7/gl/getdelim.c
gnutls-3.6.7/gl/getline.c
gnutls-3.6.7/gl/gettext.h
gnutls-3.6.7/gl/gettimeofday.c
gnutls-3.6.7/gl/hash-pjw-bare.c
gnutls-3.6.7/gl/hash-pjw-bare.h
gnutls-3.6.7/gl/inet_ntop.c
gnutls-3.6.7/gl/intprops.h
gnutls-3.6.7/gl/itold.c
gnutls-3.6.7/gl/limits.in.h
gnutls-3.6.7/gl/localtime-buffer.c
gnutls-3.6.7/gl/localtime-buffer.h
gnutls-3.6.7/gl/lseek.c
gnutls-3.6.7/gl/malloc.c
gnutls-3.6.7/gl/memchr.c
gnutls-3.6.7/gl/memchr.valgrind
gnutls-3.6.7/gl/memmem.c
gnutls-3.6.7/gl/minmax.h
gnutls-3.6.7/gl/msvc-inval.c
gnutls-3.6.7/gl/msvc-inval.h
gnutls-3.6.7/gl/msvc-nothrow.c
gnutls-3.6.7/gl/msvc-nothrow.h
gnutls-3.6.7/gl/netdb.in.h
gnutls-3.6.7/gl/netinet_in.in.h
gnutls-3.6.7/gl/pathmax.h
gnutls-3.6.7/gl/printf-args.c
gnutls-3.6.7/gl/printf-args.h
gnutls-3.6.7/gl/printf-parse.c
gnutls-3.6.7/gl/printf-parse.h
gnutls-3.6.7/gl/read-file.c
gnutls-3.6.7/gl/read-file.h
gnutls-3.6.7/gl/realloc.c
gnutls-3.6.7/gl/secure_getenv.c
gnutls-3.6.7/gl/size_max.h
gnutls-3.6.7/gl/snprintf.c
gnutls-3.6.7/gl/stat-time.c
gnutls-3.6.7/gl/stat-time.h
gnutls-3.6.7/gl/stat-w32.c
gnutls-3.6.7/gl/stat-w32.h
gnutls-3.6.7/gl/stdalign.in.h
gnutls-3.6.7/gl/stdbool.in.h
gnutls-3.6.7/gl/stddef.in.h
gnutls-3.6.7/gl/stdint.in.h
gnutls-3.6.7/gl/stdio-impl.h
gnutls-3.6.7/gl/stdio.in.h
gnutls-3.6.7/gl/stdlib.in.h
gnutls-3.6.7/gl/str-two-way.h
gnutls-3.6.7/gl/strcasecmp.c
gnutls-3.6.7/gl/strdup.c
gnutls-3.6.7/gl/string.in.h
gnutls-3.6.7/gl/strings.in.h
gnutls-3.6.7/gl/strncasecmp.c
gnutls-3.6.7/gl/strndup.c
gnutls-3.6.7/gl/strnlen.c
gnutls-3.6.7/gl/strtok_r.c
gnutls-3.6.7/gl/strverscmp.c
gnutls-3.6.7/gl/sys_socket.c
gnutls-3.6.7/gl/sys_socket.in.h
gnutls-3.6.7/gl/sys_stat.in.h
gnutls-3.6.7/gl/sys_time.in.h
gnutls-3.6.7/gl/sys_types.in.h
gnutls-3.6.7/gl/sys_uio.in.h
gnutls-3.6.7/gl/tests/
gnutls-3.6.7/gl/tests/Makefile.am
gnutls-3.6.7/gl/tests/Makefile.in
gnutls-3.6.7/gl/tests/_Noreturn.h
gnutls-3.6.7/gl/tests/accept.c
gnutls-3.6.7/gl/tests/arg-nonnull.h
gnutls-3.6.7/gl/tests/binary-io.c
gnutls-3.6.7/gl/tests/binary-io.h
gnutls-3.6.7/gl/tests/bind.c
gnutls-3.6.7/gl/tests/c++defs.h
gnutls-3.6.7/gl/tests/cloexec.c
gnutls-3.6.7/gl/tests/cloexec.h
gnutls-3.6.7/gl/tests/close.c
gnutls-3.6.7/gl/tests/connect.c
gnutls-3.6.7/gl/tests/ctype.in.h
gnutls-3.6.7/gl/tests/dosname.h
gnutls-3.6.7/gl/tests/dup2.c
gnutls-3.6.7/gl/tests/fcntl.c
gnutls-3.6.7/gl/tests/fcntl.in.h
gnutls-3.6.7/gl/tests/fd-hook.c
gnutls-3.6.7/gl/tests/fd-hook.h
gnutls-3.6.7/gl/tests/fdopen.c
gnutls-3.6.7/gl/tests/filename.h
gnutls-3.6.7/gl/tests/flexmember.h
gnutls-3.6.7/gl/tests/fpucw.h
gnutls-3.6.7/gl/tests/ftruncate.c
gnutls-3.6.7/gl/tests/getcwd-lgpl.c
gnutls-3.6.7/gl/tests/getdtablesize.c
gnutls-3.6.7/gl/tests/getpagesize.c
gnutls-3.6.7/gl/tests/glthread/
gnutls-3.6.7/gl/tests/glthread/lock.c
gnutls-3.6.7/gl/tests/glthread/lock.h
gnutls-3.6.7/gl/tests/glthread/threadlib.c
gnutls-3.6.7/gl/tests/ignore-value.h
gnutls-3.6.7/gl/tests/inet_pton.c
gnutls-3.6.7/gl/tests/init.sh
gnutls-3.6.7/gl/tests/inttypes.in.h
gnutls-3.6.7/gl/tests/ioctl.c
gnutls-3.6.7/gl/tests/isblank.c
gnutls-3.6.7/gl/tests/langinfo.in.h
gnutls-3.6.7/gl/tests/listen.c
gnutls-3.6.7/gl/tests/locale.in.h
gnutls-3.6.7/gl/tests/localename-table.c
gnutls-3.6.7/gl/tests/localename-table.h
gnutls-3.6.7/gl/tests/localename.c
gnutls-3.6.7/gl/tests/localename.h
gnutls-3.6.7/gl/tests/lstat.c
gnutls-3.6.7/gl/tests/macros.h
gnutls-3.6.7/gl/tests/malloca.c
gnutls-3.6.7/gl/tests/malloca.h
gnutls-3.6.7/gl/tests/nanosleep.c
gnutls-3.6.7/gl/tests/nap.h
gnutls-3.6.7/gl/tests/open.c
gnutls-3.6.7/gl/tests/perror.c
gnutls-3.6.7/gl/tests/pipe.c
gnutls-3.6.7/gl/tests/putenv.c
gnutls-3.6.7/gl/tests/raise.c
gnutls-3.6.7/gl/tests/same-inode.h
gnutls-3.6.7/gl/tests/select.c
gnutls-3.6.7/gl/tests/setenv.c
gnutls-3.6.7/gl/tests/setlocale.c
gnutls-3.6.7/gl/tests/setsockopt.c
gnutls-3.6.7/gl/tests/sig-handler.c
gnutls-3.6.7/gl/tests/sig-handler.h
gnutls-3.6.7/gl/tests/sigaction.c
gnutls-3.6.7/gl/tests/signal.in.h
gnutls-3.6.7/gl/tests/signature.h
gnutls-3.6.7/gl/tests/sigprocmask.c
gnutls-3.6.7/gl/tests/sleep.c
gnutls-3.6.7/gl/tests/socket.c
gnutls-3.6.7/gl/tests/sockets.c
gnutls-3.6.7/gl/tests/sockets.h
gnutls-3.6.7/gl/tests/stat-w32.c
gnutls-3.6.7/gl/tests/stat-w32.h
gnutls-3.6.7/gl/tests/stat.c
gnutls-3.6.7/gl/tests/strerror-override.c
gnutls-3.6.7/gl/tests/strerror-override.h
gnutls-3.6.7/gl/tests/strerror.c
gnutls-3.6.7/gl/tests/strerror_r.c
gnutls-3.6.7/gl/tests/symlink.c
gnutls-3.6.7/gl/tests/sys_ioctl.in.h
gnutls-3.6.7/gl/tests/sys_select.in.h
gnutls-3.6.7/gl/tests/test-accept.c
gnutls-3.6.7/gl/tests/test-alloca-opt.c
gnutls-3.6.7/gl/tests/test-arpa_inet.c
gnutls-3.6.7/gl/tests/test-binary-io.c
gnutls-3.6.7/gl/tests/test-binary-io.sh
gnutls-3.6.7/gl/tests/test-bind.c
gnutls-3.6.7/gl/tests/test-byteswap.c
gnutls-3.6.7/gl/tests/test-c-ctype.c
gnutls-3.6.7/gl/tests/test-c-strcase.sh
gnutls-3.6.7/gl/tests/test-c-strcasecmp.c
gnutls-3.6.7/gl/tests/test-c-strncasecmp.c
gnutls-3.6.7/gl/tests/test-cloexec.c
gnutls-3.6.7/gl/tests/test-close.c
gnutls-3.6.7/gl/tests/test-connect.c
gnutls-3.6.7/gl/tests/test-ctype.c
gnutls-3.6.7/gl/tests/test-dup2.c
gnutls-3.6.7/gl/tests/test-environ.c
gnutls-3.6.7/gl/tests/test-errno.c
gnutls-3.6.7/gl/tests/test-fcntl-h.c
gnutls-3.6.7/gl/tests/test-fcntl.c
gnutls-3.6.7/gl/tests/test-fdopen.c
gnutls-3.6.7/gl/tests/test-fgetc.c
gnutls-3.6.7/gl/tests/test-float.c
gnutls-3.6.7/gl/tests/test-fputc.c
gnutls-3.6.7/gl/tests/test-fread.c
gnutls-3.6.7/gl/tests/test-fstat.c
gnutls-3.6.7/gl/tests/test-ftell.c
gnutls-3.6.7/gl/tests/test-ftell.sh
gnutls-3.6.7/gl/tests/test-ftell2.sh
gnutls-3.6.7/gl/tests/test-ftell3.c
gnutls-3.6.7/gl/tests/test-ftello.c
gnutls-3.6.7/gl/tests/test-ftello.sh
gnutls-3.6.7/gl/tests/test-ftello2.sh
gnutls-3.6.7/gl/tests/test-ftello3.c
gnutls-3.6.7/gl/tests/test-ftello4.c
gnutls-3.6.7/gl/tests/test-ftello4.sh
gnutls-3.6.7/gl/tests/test-ftruncate.c
gnutls-3.6.7/gl/tests/test-ftruncate.sh
gnutls-3.6.7/gl/tests/test-func.c
gnutls-3.6.7/gl/tests/test-fwrite.c
gnutls-3.6.7/gl/tests/test-getcwd-lgpl.c
gnutls-3.6.7/gl/tests/test-getdelim.c
gnutls-3.6.7/gl/tests/test-getdtablesize.c
gnutls-3.6.7/gl/tests/test-getline.c
gnutls-3.6.7/gl/tests/test-gettimeofday.c
gnutls-3.6.7/gl/tests/test-ignore-value.c
gnutls-3.6.7/gl/tests/test-inet_ntop.c
gnutls-3.6.7/gl/tests/test-inet_pton.c
gnutls-3.6.7/gl/tests/test-init.sh
gnutls-3.6.7/gl/tests/test-intprops.c
gnutls-3.6.7/gl/tests/test-inttypes.c
gnutls-3.6.7/gl/tests/test-ioctl.c
gnutls-3.6.7/gl/tests/test-isblank.c
gnutls-3.6.7/gl/tests/test-langinfo.c
gnutls-3.6.7/gl/tests/test-limits-h.c
gnutls-3.6.7/gl/tests/test-listen.c
gnutls-3.6.7/gl/tests/test-locale.c
gnutls-3.6.7/gl/tests/test-localename.c
gnutls-3.6.7/gl/tests/test-lstat.c
gnutls-3.6.7/gl/tests/test-lstat.h
gnutls-3.6.7/gl/tests/test-malloca.c
gnutls-3.6.7/gl/tests/test-memchr.c
gnutls-3.6.7/gl/tests/test-nanosleep.c
gnutls-3.6.7/gl/tests/test-netdb.c
gnutls-3.6.7/gl/tests/test-netinet_in.c
gnutls-3.6.7/gl/tests/test-open.c
gnutls-3.6.7/gl/tests/test-open.h
gnutls-3.6.7/gl/tests/test-pathmax.c
gnutls-3.6.7/gl/tests/test-perror.c
gnutls-3.6.7/gl/tests/test-perror.sh
gnutls-3.6.7/gl/tests/test-perror2.c
gnutls-3.6.7/gl/tests/test-pipe.c
gnutls-3.6.7/gl/tests/test-raise.c
gnutls-3.6.7/gl/tests/test-read-file.c
gnutls-3.6.7/gl/tests/test-select-fd.c
gnutls-3.6.7/gl/tests/test-select-in.sh
gnutls-3.6.7/gl/tests/test-select-out.sh
gnutls-3.6.7/gl/tests/test-select-stdin.c
gnutls-3.6.7/gl/tests/test-select.c
gnutls-3.6.7/gl/tests/test-select.h
gnutls-3.6.7/gl/tests/test-setenv.c
gnutls-3.6.7/gl/tests/test-setlocale1.c
gnutls-3.6.7/gl/tests/test-setlocale1.sh
gnutls-3.6.7/gl/tests/test-setlocale2.c
gnutls-3.6.7/gl/tests/test-setlocale2.sh
gnutls-3.6.7/gl/tests/test-setsockopt.c
gnutls-3.6.7/gl/tests/test-sigaction.c
gnutls-3.6.7/gl/tests/test-signal-h.c
gnutls-3.6.7/gl/tests/test-sigprocmask.c
gnutls-3.6.7/gl/tests/test-sleep.c
gnutls-3.6.7/gl/tests/test-snprintf.c
gnutls-3.6.7/gl/tests/test-sockets.c
gnutls-3.6.7/gl/tests/test-stat-time.c
gnutls-3.6.7/gl/tests/test-stat.c
gnutls-3.6.7/gl/tests/test-stat.h
gnutls-3.6.7/gl/tests/test-stdalign.c
gnutls-3.6.7/gl/tests/test-stdbool.c
gnutls-3.6.7/gl/tests/test-stddef.c
gnutls-3.6.7/gl/tests/test-stdint.c
gnutls-3.6.7/gl/tests/test-stdio.c
gnutls-3.6.7/gl/tests/test-stdlib.c
gnutls-3.6.7/gl/tests/test-strerror.c
gnutls-3.6.7/gl/tests/test-strerror_r.c
gnutls-3.6.7/gl/tests/test-string.c
gnutls-3.6.7/gl/tests/test-strings.c
gnutls-3.6.7/gl/tests/test-strnlen.c
gnutls-3.6.7/gl/tests/test-strverscmp.c
gnutls-3.6.7/gl/tests/test-symlink.c
gnutls-3.6.7/gl/tests/test-symlink.h
gnutls-3.6.7/gl/tests/test-sys_ioctl.c
gnutls-3.6.7/gl/tests/test-sys_select.c
gnutls-3.6.7/gl/tests/test-sys_socket.c
gnutls-3.6.7/gl/tests/test-sys_stat.c
gnutls-3.6.7/gl/tests/test-sys_time.c
gnutls-3.6.7/gl/tests/test-sys_types.c
gnutls-3.6.7/gl/tests/test-sys_uio.c
gnutls-3.6.7/gl/tests/test-sys_wait.h
gnutls-3.6.7/gl/tests/test-time.c
gnutls-3.6.7/gl/tests/test-unistd.c
gnutls-3.6.7/gl/tests/test-unsetenv.c
gnutls-3.6.7/gl/tests/test-vasnprintf.c
gnutls-3.6.7/gl/tests/test-vasprintf.c
gnutls-3.6.7/gl/tests/test-vc-list-files-cvs.sh
gnutls-3.6.7/gl/tests/test-vc-list-files-git.sh
gnutls-3.6.7/gl/tests/test-verify-try.c
gnutls-3.6.7/gl/tests/test-verify.c
gnutls-3.6.7/gl/tests/test-verify.sh
gnutls-3.6.7/gl/tests/test-vsnprintf.c
gnutls-3.6.7/gl/tests/test-wchar.c
gnutls-3.6.7/gl/tests/unsetenv.c
gnutls-3.6.7/gl/tests/w32sock.h
gnutls-3.6.7/gl/tests/warn-on-use.h
gnutls-3.6.7/gl/tests/xalloc-oversized.h
gnutls-3.6.7/gl/tests/zerosize-ptr.h
gnutls-3.6.7/gl/time.in.h
gnutls-3.6.7/gl/time_r.c
gnutls-3.6.7/gl/unistd.c
gnutls-3.6.7/gl/unistd.in.h
gnutls-3.6.7/gl/vasnprintf.c
gnutls-3.6.7/gl/vasnprintf.h
gnutls-3.6.7/gl/vasprintf.c
gnutls-3.6.7/gl/verify.h
gnutls-3.6.7/gl/vsnprintf.c
gnutls-3.6.7/gl/warn-on-use.h
gnutls-3.6.7/gl/wchar.in.h
gnutls-3.6.7/gl/xsize.c
gnutls-3.6.7/gl/xsize.h
gnutls-3.6.7/gtk-doc.make
gnutls-3.6.7/guile/
gnutls-3.6.7/guile/.dir-locals.el
gnutls-3.6.7/guile/Makefile.am
gnutls-3.6.7/guile/Makefile.in
gnutls-3.6.7/guile/modules/
gnutls-3.6.7/guile/modules/gnutls/
gnutls-3.6.7/guile/modules/gnutls/build/
gnutls-3.6.7/guile/modules/gnutls/build/enums.scm
gnutls-3.6.7/guile/modules/gnutls/build/smobs.scm
gnutls-3.6.7/guile/modules/gnutls/build/tests.scm
gnutls-3.6.7/guile/modules/gnutls/build/utils.scm
gnutls-3.6.7/guile/modules/gnutls/extra.scm
gnutls-3.6.7/guile/modules/gnutls.in
gnutls-3.6.7/guile/modules/system/
gnutls-3.6.7/guile/modules/system/documentation/
gnutls-3.6.7/guile/modules/system/documentation/README
gnutls-3.6.7/guile/modules/system/documentation/c-snarf.scm
gnutls-3.6.7/guile/modules/system/documentation/output.scm
gnutls-3.6.7/guile/pre-inst-guile.in
gnutls-3.6.7/guile/src/
gnutls-3.6.7/guile/src/Makefile.am
gnutls-3.6.7/guile/src/Makefile.in
gnutls-3.6.7/guile/src/core.c
gnutls-3.6.7/guile/src/errors.c
gnutls-3.6.7/guile/src/errors.h
gnutls-3.6.7/guile/src/make-enum-header.scm
gnutls-3.6.7/guile/src/make-enum-map.scm
gnutls-3.6.7/guile/src/make-smob-header.scm
gnutls-3.6.7/guile/src/make-smob-types.scm
gnutls-3.6.7/guile/src/utils.c
gnutls-3.6.7/guile/src/utils.h
gnutls-3.6.7/guile/tests/
gnutls-3.6.7/guile/tests/anonymous-auth.scm
gnutls-3.6.7/guile/tests/dh-parameters.pem
gnutls-3.6.7/guile/tests/errors.scm
gnutls-3.6.7/guile/tests/pkcs-import-export.scm
gnutls-3.6.7/guile/tests/priorities.scm
gnutls-3.6.7/guile/tests/rsa-parameters.pem
gnutls-3.6.7/guile/tests/session-record-port.scm
gnutls-3.6.7/guile/tests/srp-base64.scm
gnutls-3.6.7/guile/tests/x509-auth.scm
gnutls-3.6.7/guile/tests/x509-certificate.pem
gnutls-3.6.7/guile/tests/x509-certificates.scm
gnutls-3.6.7/guile/tests/x509-key.pem
gnutls-3.6.7/lib/
gnutls-3.6.7/lib/Makefile.am
gnutls-3.6.7/lib/Makefile.in
gnutls-3.6.7/lib/README
gnutls-3.6.7/lib/abstract_int.h
gnutls-3.6.7/lib/accelerated/
gnutls-3.6.7/lib/accelerated/Makefile.am
gnutls-3.6.7/lib/accelerated/Makefile.in
gnutls-3.6.7/lib/accelerated/aarch64/
gnutls-3.6.7/lib/accelerated/aarch64/Makefile.am
gnutls-3.6.7/lib/accelerated/aarch64/Makefile.in
gnutls-3.6.7/lib/accelerated/aarch64/README
gnutls-3.6.7/lib/accelerated/aarch64/aarch64-common.c
gnutls-3.6.7/lib/accelerated/aarch64/aarch64-common.h
gnutls-3.6.7/lib/accelerated/aarch64/aes-aarch64.h
gnutls-3.6.7/lib/accelerated/aarch64/aes-cbc-aarch64.c
gnutls-3.6.7/lib/accelerated/aarch64/aes-ccm-aarch64.c
gnutls-3.6.7/lib/accelerated/aarch64/aes-gcm-aarch64.c
gnutls-3.6.7/lib/accelerated/aarch64/elf/
gnutls-3.6.7/lib/accelerated/aarch64/elf/aes-aarch64.s
gnutls-3.6.7/lib/accelerated/aarch64/elf/ghash-aarch64.s
gnutls-3.6.7/lib/accelerated/aarch64/elf/sha1-armv8.s
gnutls-3.6.7/lib/accelerated/aarch64/elf/sha256-armv8.s
gnutls-3.6.7/lib/accelerated/aarch64/elf/sha512-armv8.s
gnutls-3.6.7/lib/accelerated/aarch64/hmac-sha-aarch64.c
gnutls-3.6.7/lib/accelerated/aarch64/sha-aarch64.c
gnutls-3.6.7/lib/accelerated/aarch64/sha-aarch64.h
gnutls-3.6.7/lib/accelerated/accelerated.c
gnutls-3.6.7/lib/accelerated/accelerated.h
gnutls-3.6.7/lib/accelerated/cryptodev-gcm.c
gnutls-3.6.7/lib/accelerated/cryptodev.c
gnutls-3.6.7/lib/accelerated/cryptodev.h
gnutls-3.6.7/lib/accelerated/x86/
gnutls-3.6.7/lib/accelerated/x86/Makefile.am
gnutls-3.6.7/lib/accelerated/x86/Makefile.in
gnutls-3.6.7/lib/accelerated/x86/README
gnutls-3.6.7/lib/accelerated/x86/aes-cbc-x86-aesni.c
gnutls-3.6.7/lib/accelerated/x86/aes-cbc-x86-ssse3.c
gnutls-3.6.7/lib/accelerated/x86/aes-ccm-x86-aesni.c
gnutls-3.6.7/lib/accelerated/x86/aes-gcm-aead.h
gnutls-3.6.7/lib/accelerated/x86/aes-gcm-padlock.c
gnutls-3.6.7/lib/accelerated/x86/aes-gcm-x86-aesni.c
gnutls-3.6.7/lib/accelerated/x86/aes-gcm-x86-pclmul-avx.c
gnutls-3.6.7/lib/accelerated/x86/aes-gcm-x86-pclmul.c
gnutls-3.6.7/lib/accelerated/x86/aes-gcm-x86-ssse3.c
gnutls-3.6.7/lib/accelerated/x86/aes-padlock.c
gnutls-3.6.7/lib/accelerated/x86/aes-padlock.h
gnutls-3.6.7/lib/accelerated/x86/aes-x86.h
gnutls-3.6.7/lib/accelerated/x86/coff/
gnutls-3.6.7/lib/accelerated/x86/coff/aes-ssse3-x86.s
gnutls-3.6.7/lib/accelerated/x86/coff/aes-ssse3-x86_64.s
gnutls-3.6.7/lib/accelerated/x86/coff/aesni-gcm-x86_64.s
gnutls-3.6.7/lib/accelerated/x86/coff/aesni-x86.s
gnutls-3.6.7/lib/accelerated/x86/coff/aesni-x86_64.s
gnutls-3.6.7/lib/accelerated/x86/coff/cpuid-x86.s
gnutls-3.6.7/lib/accelerated/x86/coff/cpuid-x86_64.s
gnutls-3.6.7/lib/accelerated/x86/coff/e_padlock-x86.s
gnutls-3.6.7/lib/accelerated/x86/coff/e_padlock-x86_64.s
gnutls-3.6.7/lib/accelerated/x86/coff/ghash-x86_64.s
gnutls-3.6.7/lib/accelerated/x86/coff/sha1-ssse3-x86.s
gnutls-3.6.7/lib/accelerated/x86/coff/sha1-ssse3-x86_64.s
gnutls-3.6.7/lib/accelerated/x86/coff/sha256-ssse3-x86.s
gnutls-3.6.7/lib/accelerated/x86/coff/sha512-ssse3-x86.s
gnutls-3.6.7/lib/accelerated/x86/coff/sha512-ssse3-x86_64.s
gnutls-3.6.7/lib/accelerated/x86/elf/
gnutls-3.6.7/lib/accelerated/x86/elf/aes-ssse3-x86.s
gnutls-3.6.7/lib/accelerated/x86/elf/aes-ssse3-x86_64.s
gnutls-3.6.7/lib/accelerated/x86/elf/aesni-gcm-x86_64.s
gnutls-3.6.7/lib/accelerated/x86/elf/aesni-x86.s
gnutls-3.6.7/lib/accelerated/x86/elf/aesni-x86_64.s
gnutls-3.6.7/lib/accelerated/x86/elf/cpuid-x86.s
gnutls-3.6.7/lib/accelerated/x86/elf/cpuid-x86_64.s
gnutls-3.6.7/lib/accelerated/x86/elf/e_padlock-x86.s
gnutls-3.6.7/lib/accelerated/x86/elf/e_padlock-x86_64.s
gnutls-3.6.7/lib/accelerated/x86/elf/ghash-x86_64.s
gnutls-3.6.7/lib/accelerated/x86/elf/sha1-ssse3-x86.s
gnutls-3.6.7/lib/accelerated/x86/elf/sha1-ssse3-x86_64.s
gnutls-3.6.7/lib/accelerated/x86/elf/sha256-ssse3-x86.s
gnutls-3.6.7/lib/accelerated/x86/elf/sha512-ssse3-x86.s
gnutls-3.6.7/lib/accelerated/x86/elf/sha512-ssse3-x86_64.s
gnutls-3.6.7/lib/accelerated/x86/files.mk
gnutls-3.6.7/lib/accelerated/x86/hmac-padlock.c
gnutls-3.6.7/lib/accelerated/x86/hmac-x86-ssse3.c
gnutls-3.6.7/lib/accelerated/x86/license.txt
gnutls-3.6.7/lib/accelerated/x86/macosx/
gnutls-3.6.7/lib/accelerated/x86/macosx/aes-ssse3-x86.s
gnutls-3.6.7/lib/accelerated/x86/macosx/aes-ssse3-x86_64.s
gnutls-3.6.7/lib/accelerated/x86/macosx/aesni-gcm-x86_64.s
gnutls-3.6.7/lib/accelerated/x86/macosx/aesni-x86.s
gnutls-3.6.7/lib/accelerated/x86/macosx/aesni-x86_64.s
gnutls-3.6.7/lib/accelerated/x86/macosx/cpuid-x86.s
gnutls-3.6.7/lib/accelerated/x86/macosx/cpuid-x86_64.s
gnutls-3.6.7/lib/accelerated/x86/macosx/e_padlock-x86.s
gnutls-3.6.7/lib/accelerated/x86/macosx/e_padlock-x86_64.s
gnutls-3.6.7/lib/accelerated/x86/macosx/ghash-x86_64.s
gnutls-3.6.7/lib/accelerated/x86/macosx/sha1-ssse3-x86.s
gnutls-3.6.7/lib/accelerated/x86/macosx/sha1-ssse3-x86_64.s
gnutls-3.6.7/lib/accelerated/x86/macosx/sha256-ssse3-x86.s
gnutls-3.6.7/lib/accelerated/x86/macosx/sha512-ssse3-x86.s
gnutls-3.6.7/lib/accelerated/x86/macosx/sha512-ssse3-x86_64.s
gnutls-3.6.7/lib/accelerated/x86/sha-padlock.c
gnutls-3.6.7/lib/accelerated/x86/sha-padlock.h
gnutls-3.6.7/lib/accelerated/x86/sha-x86-ssse3.c
gnutls-3.6.7/lib/accelerated/x86/sha-x86.h
gnutls-3.6.7/lib/accelerated/x86/x86-common.c
gnutls-3.6.7/lib/accelerated/x86/x86-common.h
gnutls-3.6.7/lib/alert.c
gnutls-3.6.7/lib/algorithms/
gnutls-3.6.7/lib/algorithms/Makefile.am
gnutls-3.6.7/lib/algorithms/Makefile.in
gnutls-3.6.7/lib/algorithms/cert_types.c
gnutls-3.6.7/lib/algorithms/ciphers.c
gnutls-3.6.7/lib/algorithms/ciphersuites.c
gnutls-3.6.7/lib/algorithms/ecc.c
gnutls-3.6.7/lib/algorithms/groups.c
gnutls-3.6.7/lib/algorithms/kx.c
gnutls-3.6.7/lib/algorithms/mac.c
gnutls-3.6.7/lib/algorithms/protocols.c
gnutls-3.6.7/lib/algorithms/publickey.c
gnutls-3.6.7/lib/algorithms/secparams.c
gnutls-3.6.7/lib/algorithms/sign.c
gnutls-3.6.7/lib/algorithms.h
gnutls-3.6.7/lib/anon_cred.c
gnutls-3.6.7/lib/atfork.c
gnutls-3.6.7/lib/atfork.h
gnutls-3.6.7/lib/atomic.h
gnutls-3.6.7/lib/auth/
gnutls-3.6.7/lib/auth/Makefile.am
gnutls-3.6.7/lib/auth/Makefile.in
gnutls-3.6.7/lib/auth/anon.c
gnutls-3.6.7/lib/auth/anon.h
gnutls-3.6.7/lib/auth/anon_ecdh.c
gnutls-3.6.7/lib/auth/cert.c
gnutls-3.6.7/lib/auth/cert.h
gnutls-3.6.7/lib/auth/dh_common.c
gnutls-3.6.7/lib/auth/dh_common.h
gnutls-3.6.7/lib/auth/dhe.c
gnutls-3.6.7/lib/auth/dhe_psk.c
gnutls-3.6.7/lib/auth/ecdhe.c
gnutls-3.6.7/lib/auth/ecdhe.h
gnutls-3.6.7/lib/auth/psk.c
gnutls-3.6.7/lib/auth/psk.h
gnutls-3.6.7/lib/auth/psk_passwd.c
gnutls-3.6.7/lib/auth/psk_passwd.h
gnutls-3.6.7/lib/auth/rsa.c
gnutls-3.6.7/lib/auth/rsa_common.h
gnutls-3.6.7/lib/auth/rsa_psk.c
gnutls-3.6.7/lib/auth/srp_kx.c
gnutls-3.6.7/lib/auth/srp_kx.h
gnutls-3.6.7/lib/auth/srp_passwd.c
gnutls-3.6.7/lib/auth/srp_passwd.h
gnutls-3.6.7/lib/auth/srp_rsa.c
gnutls-3.6.7/lib/auth/srp_sb64.c
gnutls-3.6.7/lib/auth.c
gnutls-3.6.7/lib/auth.h
gnutls-3.6.7/lib/auto-verify.c
gnutls-3.6.7/lib/buffers.c
gnutls-3.6.7/lib/buffers.h
gnutls-3.6.7/lib/cert-cred-rawpk.c
gnutls-3.6.7/lib/cert-cred-x509.c
gnutls-3.6.7/lib/cert-cred.c
gnutls-3.6.7/lib/cert-cred.h
gnutls-3.6.7/lib/cert-session.c
gnutls-3.6.7/lib/cipher-cbc.c
gnutls-3.6.7/lib/cipher.c
gnutls-3.6.7/lib/cipher.h
gnutls-3.6.7/lib/cipher_int.c
gnutls-3.6.7/lib/cipher_int.h
gnutls-3.6.7/lib/common.mk
gnutls-3.6.7/lib/compress.c
gnutls-3.6.7/lib/constate.c
gnutls-3.6.7/lib/constate.h
gnutls-3.6.7/lib/crypto-api.c
gnutls-3.6.7/lib/crypto-api.h
gnutls-3.6.7/lib/crypto-backend.c
gnutls-3.6.7/lib/crypto-backend.h
gnutls-3.6.7/lib/crypto-selftests-pk.c
gnutls-3.6.7/lib/crypto-selftests.c
gnutls-3.6.7/lib/crypto.h
gnutls-3.6.7/lib/datum.c
gnutls-3.6.7/lib/datum.h
gnutls-3.6.7/lib/db.c
gnutls-3.6.7/lib/db.h
gnutls-3.6.7/lib/debug.c
gnutls-3.6.7/lib/debug.h
gnutls-3.6.7/lib/dh-primes.c
gnutls-3.6.7/lib/dh-session.c
gnutls-3.6.7/lib/dh.c
gnutls-3.6.7/lib/dh.h
gnutls-3.6.7/lib/dtls-sw.c
gnutls-3.6.7/lib/dtls.c
gnutls-3.6.7/lib/dtls.h
gnutls-3.6.7/lib/ecc.c
gnutls-3.6.7/lib/ecc.h
gnutls-3.6.7/lib/errors.c
gnutls-3.6.7/lib/errors.h
gnutls-3.6.7/lib/ext/
gnutls-3.6.7/lib/ext/Makefile.am
gnutls-3.6.7/lib/ext/Makefile.in
gnutls-3.6.7/lib/ext/alpn.c
gnutls-3.6.7/lib/ext/alpn.h
gnutls-3.6.7/lib/ext/cert_types.h
gnutls-3.6.7/lib/ext/client_cert_type.c
gnutls-3.6.7/lib/ext/client_cert_type.h
gnutls-3.6.7/lib/ext/cookie.c
gnutls-3.6.7/lib/ext/cookie.h
gnutls-3.6.7/lib/ext/dumbfw.c
gnutls-3.6.7/lib/ext/dumbfw.h
gnutls-3.6.7/lib/ext/early_data.c
gnutls-3.6.7/lib/ext/early_data.h
gnutls-3.6.7/lib/ext/ec_point_formats.c
gnutls-3.6.7/lib/ext/ec_point_formats.h
gnutls-3.6.7/lib/ext/etm.c
gnutls-3.6.7/lib/ext/etm.h
gnutls-3.6.7/lib/ext/ext_master_secret.c
gnutls-3.6.7/lib/ext/ext_master_secret.h
gnutls-3.6.7/lib/ext/heartbeat.c
gnutls-3.6.7/lib/ext/heartbeat.h
gnutls-3.6.7/lib/ext/key_share.c
gnutls-3.6.7/lib/ext/key_share.h
gnutls-3.6.7/lib/ext/max_record.c
gnutls-3.6.7/lib/ext/max_record.h
gnutls-3.6.7/lib/ext/post_handshake.c
gnutls-3.6.7/lib/ext/post_handshake.h
gnutls-3.6.7/lib/ext/pre_shared_key.c
gnutls-3.6.7/lib/ext/pre_shared_key.h
gnutls-3.6.7/lib/ext/psk_ke_modes.c
gnutls-3.6.7/lib/ext/psk_ke_modes.h
gnutls-3.6.7/lib/ext/record_size_limit.c
gnutls-3.6.7/lib/ext/record_size_limit.h
gnutls-3.6.7/lib/ext/safe_renegotiation.c
gnutls-3.6.7/lib/ext/safe_renegotiation.h
gnutls-3.6.7/lib/ext/server_cert_type.c
gnutls-3.6.7/lib/ext/server_cert_type.h
gnutls-3.6.7/lib/ext/server_name.c
gnutls-3.6.7/lib/ext/server_name.h
gnutls-3.6.7/lib/ext/session_ticket.c
gnutls-3.6.7/lib/ext/session_ticket.h
gnutls-3.6.7/lib/ext/signature.c
gnutls-3.6.7/lib/ext/signature.h
gnutls-3.6.7/lib/ext/srp.c
gnutls-3.6.7/lib/ext/srp.h
gnutls-3.6.7/lib/ext/srtp.c
gnutls-3.6.7/lib/ext/srtp.h
gnutls-3.6.7/lib/ext/status_request.c
gnutls-3.6.7/lib/ext/status_request.h
gnutls-3.6.7/lib/ext/supported_groups.c
gnutls-3.6.7/lib/ext/supported_groups.h
gnutls-3.6.7/lib/ext/supported_versions.c
gnutls-3.6.7/lib/ext/supported_versions.h
gnutls-3.6.7/lib/extras/
gnutls-3.6.7/lib/extras/Makefile.am
gnutls-3.6.7/lib/extras/Makefile.in
gnutls-3.6.7/lib/extras/hex.c
gnutls-3.6.7/lib/extras/hex.h
gnutls-3.6.7/lib/extras/licenses/
gnutls-3.6.7/lib/extras/licenses/CC0
gnutls-3.6.7/lib/extras/randomart.c
gnutls-3.6.7/lib/extras/randomart.h
gnutls-3.6.7/lib/extv.c
gnutls-3.6.7/lib/extv.h
gnutls-3.6.7/lib/file.c
gnutls-3.6.7/lib/file.h
gnutls-3.6.7/lib/fingerprint.c
gnutls-3.6.7/lib/fips.c
gnutls-3.6.7/lib/fips.h
gnutls-3.6.7/lib/global.c
gnutls-3.6.7/lib/global.h
gnutls-3.6.7/lib/gnutls.asn
gnutls-3.6.7/lib/gnutls.pc.in
gnutls-3.6.7/lib/gnutls_asn1_tab.c
gnutls-3.6.7/lib/gnutls_int.h
gnutls-3.6.7/lib/gnutlsxx.cpp
gnutls-3.6.7/lib/gthreads.h
gnutls-3.6.7/lib/handshake-checks.c
gnutls-3.6.7/lib/handshake-defs.h
gnutls-3.6.7/lib/handshake-tls13.c
gnutls-3.6.7/lib/handshake.c
gnutls-3.6.7/lib/handshake.h
gnutls-3.6.7/lib/hash_int.c
gnutls-3.6.7/lib/hash_int.h
gnutls-3.6.7/lib/hello_ext.c
gnutls-3.6.7/lib/hello_ext.h
gnutls-3.6.7/lib/hello_ext_lib.c
gnutls-3.6.7/lib/hello_ext_lib.h
gnutls-3.6.7/lib/includes/
gnutls-3.6.7/lib/includes/Makefile.am
gnutls-3.6.7/lib/includes/Makefile.in
gnutls-3.6.7/lib/includes/gnutls/
gnutls-3.6.7/lib/includes/gnutls/abstract.h
gnutls-3.6.7/lib/includes/gnutls/compat.h
gnutls-3.6.7/lib/includes/gnutls/crypto.h
gnutls-3.6.7/lib/includes/gnutls/dtls.h
gnutls-3.6.7/lib/includes/gnutls/gnutls.h.in
gnutls-3.6.7/lib/includes/gnutls/gnutlsxx.h
gnutls-3.6.7/lib/includes/gnutls/ocsp.h
gnutls-3.6.7/lib/includes/gnutls/openpgp.h
gnutls-3.6.7/lib/includes/gnutls/pkcs11.h
gnutls-3.6.7/lib/includes/gnutls/pkcs12.h
gnutls-3.6.7/lib/includes/gnutls/pkcs7.h
gnutls-3.6.7/lib/includes/gnutls/self-test.h
gnutls-3.6.7/lib/includes/gnutls/socket.h
gnutls-3.6.7/lib/includes/gnutls/system-keys.h
gnutls-3.6.7/lib/includes/gnutls/tpm.h
gnutls-3.6.7/lib/includes/gnutls/urls.h
gnutls-3.6.7/lib/includes/gnutls/x509-ext.h
gnutls-3.6.7/lib/includes/gnutls/x509.h
gnutls-3.6.7/lib/kx.c
gnutls-3.6.7/lib/kx.h
gnutls-3.6.7/lib/libgnutls.map
gnutls-3.6.7/lib/locks.c
gnutls-3.6.7/lib/locks.h
gnutls-3.6.7/lib/mbuffers.c
gnutls-3.6.7/lib/mbuffers.h
gnutls-3.6.7/lib/mem.c
gnutls-3.6.7/lib/mem.h
gnutls-3.6.7/lib/minitasn1/
gnutls-3.6.7/lib/minitasn1/Makefile.am
gnutls-3.6.7/lib/minitasn1/Makefile.in
gnutls-3.6.7/lib/minitasn1/coding.c
gnutls-3.6.7/lib/minitasn1/decoding.c
gnutls-3.6.7/lib/minitasn1/element.c
gnutls-3.6.7/lib/minitasn1/element.h
gnutls-3.6.7/lib/minitasn1/errors.c
gnutls-3.6.7/lib/minitasn1/gstr.c
gnutls-3.6.7/lib/minitasn1/gstr.h
gnutls-3.6.7/lib/minitasn1/int.h
gnutls-3.6.7/lib/minitasn1/libtasn1.h
gnutls-3.6.7/lib/minitasn1/parser_aux.c
gnutls-3.6.7/lib/minitasn1/parser_aux.h
gnutls-3.6.7/lib/minitasn1/structure.c
gnutls-3.6.7/lib/minitasn1/structure.h
gnutls-3.6.7/lib/minitasn1/version.c
gnutls-3.6.7/lib/mpi.c
gnutls-3.6.7/lib/mpi.h
gnutls-3.6.7/lib/nettle/
gnutls-3.6.7/lib/nettle/Makefile.am
gnutls-3.6.7/lib/nettle/Makefile.in
gnutls-3.6.7/lib/nettle/backport/
gnutls-3.6.7/lib/nettle/backport/cfb8.c
gnutls-3.6.7/lib/nettle/backport/cfb8.h
gnutls-3.6.7/lib/nettle/backport/cmac.c
gnutls-3.6.7/lib/nettle/backport/cmac.h
gnutls-3.6.7/lib/nettle/cipher.c
gnutls-3.6.7/lib/nettle/gnettle.h
gnutls-3.6.7/lib/nettle/gost/
gnutls-3.6.7/lib/nettle/gost/bignum-le.c
gnutls-3.6.7/lib/nettle/gost/bignum-le.h
gnutls-3.6.7/lib/nettle/gost/ecc-gost-curve.h
gnutls-3.6.7/lib/nettle/gost/ecc-gost-hash.c
gnutls-3.6.7/lib/nettle/gost/ecc-gost256cpa-32.h
gnutls-3.6.7/lib/nettle/gost/ecc-gost256cpa-64.h
gnutls-3.6.7/lib/nettle/gost/ecc-gost256cpa.c
gnutls-3.6.7/lib/nettle/gost/ecc-gost512a-32.h
gnutls-3.6.7/lib/nettle/gost/ecc-gost512a-64.h
gnutls-3.6.7/lib/nettle/gost/ecc-gost512a.c
gnutls-3.6.7/lib/nettle/gost/ecc-gostdsa-sign.c
gnutls-3.6.7/lib/nettle/gost/ecc-gostdsa-verify.c
gnutls-3.6.7/lib/nettle/gost/ecc-internal.h
gnutls-3.6.7/lib/nettle/gost/gmp-glue.h
gnutls-3.6.7/lib/nettle/gost/gost28147.c
gnutls-3.6.7/lib/nettle/gost/gost28147.h
gnutls-3.6.7/lib/nettle/gost/gostdsa-mask.c
gnutls-3.6.7/lib/nettle/gost/gostdsa-sign.c
gnutls-3.6.7/lib/nettle/gost/gostdsa-verify.c
gnutls-3.6.7/lib/nettle/gost/gostdsa.h
gnutls-3.6.7/lib/nettle/gost/gosthash94-meta.c
gnutls-3.6.7/lib/nettle/gost/gosthash94.c
gnutls-3.6.7/lib/nettle/gost/gosthash94.h
gnutls-3.6.7/lib/nettle/gost/hmac-gost.h
gnutls-3.6.7/lib/nettle/gost/hmac-gosthash94.c
gnutls-3.6.7/lib/nettle/gost/hmac-streebog.c
gnutls-3.6.7/lib/nettle/gost/nettle-internal.h
gnutls-3.6.7/lib/nettle/gost/nettle-write.h
gnutls-3.6.7/lib/nettle/gost/pbkdf2-gost.h
gnutls-3.6.7/lib/nettle/gost/pbkdf2-hmac-gosthash94.c
gnutls-3.6.7/lib/nettle/gost/pbkdf2-hmac-streebog.c
gnutls-3.6.7/lib/nettle/gost/streebog-meta.c
gnutls-3.6.7/lib/nettle/gost/streebog.c
gnutls-3.6.7/lib/nettle/gost/streebog.h
gnutls-3.6.7/lib/nettle/init.c
gnutls-3.6.7/lib/nettle/int/
gnutls-3.6.7/lib/nettle/int/drbg-aes-self-test.c
gnutls-3.6.7/lib/nettle/int/drbg-aes.c
gnutls-3.6.7/lib/nettle/int/drbg-aes.h
gnutls-3.6.7/lib/nettle/int/dsa-fips.h
gnutls-3.6.7/lib/nettle/int/dsa-keygen-fips186.c
gnutls-3.6.7/lib/nettle/int/dsa-validate.c
gnutls-3.6.7/lib/nettle/int/provable-prime.c
gnutls-3.6.7/lib/nettle/int/rsa-fips.h
gnutls-3.6.7/lib/nettle/int/rsa-keygen-fips186.c
gnutls-3.6.7/lib/nettle/int/tls1-prf.c
gnutls-3.6.7/lib/nettle/int/tls1-prf.h
gnutls-3.6.7/lib/nettle/mac.c
gnutls-3.6.7/lib/nettle/mpi.c
gnutls-3.6.7/lib/nettle/pk.c
gnutls-3.6.7/lib/nettle/prf.c
gnutls-3.6.7/lib/nettle/rnd-common.h
gnutls-3.6.7/lib/nettle/rnd-fips.c
gnutls-3.6.7/lib/nettle/rnd-fuzzer.c
gnutls-3.6.7/lib/nettle/rnd.c
gnutls-3.6.7/lib/nettle/sysrng-getentropy.c
gnutls-3.6.7/lib/nettle/sysrng-linux.c
gnutls-3.6.7/lib/nettle/sysrng-windows.c
gnutls-3.6.7/lib/num.c
gnutls-3.6.7/lib/num.h
gnutls-3.6.7/lib/ocsp-api.c
gnutls-3.6.7/lib/openpgp_compat.c
gnutls-3.6.7/lib/pcert.c
gnutls-3.6.7/lib/pin.c
gnutls-3.6.7/lib/pin.h
gnutls-3.6.7/lib/pk.c
gnutls-3.6.7/lib/pk.h
gnutls-3.6.7/lib/pkcs11.c
gnutls-3.6.7/lib/pkcs11_int.c
gnutls-3.6.7/lib/pkcs11_int.h
gnutls-3.6.7/lib/pkcs11_privkey.c
gnutls-3.6.7/lib/pkcs11_secret.c
gnutls-3.6.7/lib/pkcs11_write.c
gnutls-3.6.7/lib/pkcs11x.c
gnutls-3.6.7/lib/pkcs11x.h
gnutls-3.6.7/lib/pkix.asn
gnutls-3.6.7/lib/pkix_asn1_tab.c
gnutls-3.6.7/lib/prf.c
gnutls-3.6.7/lib/priority.c
gnutls-3.6.7/lib/priority_options.gperf
gnutls-3.6.7/lib/priority_options.h
gnutls-3.6.7/lib/privkey.c
gnutls-3.6.7/lib/privkey_raw.c
gnutls-3.6.7/lib/psk.c
gnutls-3.6.7/lib/pubkey.c
gnutls-3.6.7/lib/random.c
gnutls-3.6.7/lib/random.h
gnutls-3.6.7/lib/randomart.c
gnutls-3.6.7/lib/range.c
gnutls-3.6.7/lib/record.c
gnutls-3.6.7/lib/record.h
gnutls-3.6.7/lib/safe-memfuncs.c
gnutls-3.6.7/lib/secrets.c
gnutls-3.6.7/lib/secrets.h
gnutls-3.6.7/lib/session.c
gnutls-3.6.7/lib/session_pack.c
gnutls-3.6.7/lib/session_pack.h
gnutls-3.6.7/lib/srp.c
gnutls-3.6.7/lib/srp.h
gnutls-3.6.7/lib/sslv2_compat.c
gnutls-3.6.7/lib/sslv2_compat.h
gnutls-3.6.7/lib/state.c
gnutls-3.6.7/lib/state.h
gnutls-3.6.7/lib/stek.c
gnutls-3.6.7/lib/stek.h
gnutls-3.6.7/lib/str-iconv.c
gnutls-3.6.7/lib/str-idna.c
gnutls-3.6.7/lib/str-unicode.c
gnutls-3.6.7/lib/str.c
gnutls-3.6.7/lib/str.h
gnutls-3.6.7/lib/str_array.h
gnutls-3.6.7/lib/supplemental.c
gnutls-3.6.7/lib/supplemental.h
gnutls-3.6.7/lib/system/
gnutls-3.6.7/lib/system/certs.c
gnutls-3.6.7/lib/system/fastopen.c
gnutls-3.6.7/lib/system/keys-dummy.c
gnutls-3.6.7/lib/system/keys-win.c
gnutls-3.6.7/lib/system/sockets.c
gnutls-3.6.7/lib/system/threads.c
gnutls-3.6.7/lib/system-keys.h
gnutls-3.6.7/lib/system.c
gnutls-3.6.7/lib/system.h
gnutls-3.6.7/lib/system_override.c
gnutls-3.6.7/lib/tls-sig.c
gnutls-3.6.7/lib/tls-sig.h
gnutls-3.6.7/lib/tls13/
gnutls-3.6.7/lib/tls13/anti_replay.c
gnutls-3.6.7/lib/tls13/anti_replay.h
gnutls-3.6.7/lib/tls13/certificate.c
gnutls-3.6.7/lib/tls13/certificate.h
gnutls-3.6.7/lib/tls13/certificate_request.c
gnutls-3.6.7/lib/tls13/certificate_request.h
gnutls-3.6.7/lib/tls13/certificate_verify.c
gnutls-3.6.7/lib/tls13/certificate_verify.h
gnutls-3.6.7/lib/tls13/early_data.c
gnutls-3.6.7/lib/tls13/early_data.h
gnutls-3.6.7/lib/tls13/encrypted_extensions.c
gnutls-3.6.7/lib/tls13/encrypted_extensions.h
gnutls-3.6.7/lib/tls13/finished.c
gnutls-3.6.7/lib/tls13/finished.h
gnutls-3.6.7/lib/tls13/hello_retry.c
gnutls-3.6.7/lib/tls13/hello_retry.h
gnutls-3.6.7/lib/tls13/key_update.c
gnutls-3.6.7/lib/tls13/key_update.h
gnutls-3.6.7/lib/tls13/post_handshake.c
gnutls-3.6.7/lib/tls13/psk_ext_parser.c
gnutls-3.6.7/lib/tls13/psk_ext_parser.h
gnutls-3.6.7/lib/tls13/session_ticket.c
gnutls-3.6.7/lib/tls13/session_ticket.h
gnutls-3.6.7/lib/tls13-sig.c
gnutls-3.6.7/lib/tls13-sig.h
gnutls-3.6.7/lib/tpm.c
gnutls-3.6.7/lib/unistring/
gnutls-3.6.7/lib/unistring/Makefile.am
gnutls-3.6.7/lib/unistring/Makefile.in
gnutls-3.6.7/lib/unistring/array-mergesort.h
gnutls-3.6.7/lib/unistring/limits.in.h
gnutls-3.6.7/lib/unistring/m4/
gnutls-3.6.7/lib/unistring/m4/gnulib-cache.m4
gnutls-3.6.7/lib/unistring/m4/gnulib-comp.m4
gnutls-3.6.7/lib/unistring/m4/inline.m4
gnutls-3.6.7/lib/unistring/m4/libunistring-base.m4
gnutls-3.6.7/lib/unistring/stdbool.in.h
gnutls-3.6.7/lib/unistring/stdint.in.h
gnutls-3.6.7/lib/unistring/sys_types.in.h
gnutls-3.6.7/lib/unistring/unictype/
gnutls-3.6.7/lib/unistring/unictype/bitmap.h
gnutls-3.6.7/lib/unistring/unictype/categ_C.c
gnutls-3.6.7/lib/unistring/unictype/categ_C.h
gnutls-3.6.7/lib/unistring/unictype/categ_Cc.c
gnutls-3.6.7/lib/unistring/unictype/categ_Cc.h
gnutls-3.6.7/lib/unistring/unictype/categ_Cf.c
gnutls-3.6.7/lib/unistring/unictype/categ_Cf.h
gnutls-3.6.7/lib/unistring/unictype/categ_Cn.c
gnutls-3.6.7/lib/unistring/unictype/categ_Cn.h
gnutls-3.6.7/lib/unistring/unictype/categ_Co.c
gnutls-3.6.7/lib/unistring/unictype/categ_Co.h
gnutls-3.6.7/lib/unistring/unictype/categ_Cs.c
gnutls-3.6.7/lib/unistring/unictype/categ_Cs.h
gnutls-3.6.7/lib/unistring/unictype/categ_L.c
gnutls-3.6.7/lib/unistring/unictype/categ_L.h
gnutls-3.6.7/lib/unistring/unictype/categ_LC.c
gnutls-3.6.7/lib/unistring/unictype/categ_LC.h
gnutls-3.6.7/lib/unistring/unictype/categ_Ll.c
gnutls-3.6.7/lib/unistring/unictype/categ_Ll.h
gnutls-3.6.7/lib/unistring/unictype/categ_Lm.c
gnutls-3.6.7/lib/unistring/unictype/categ_Lm.h
gnutls-3.6.7/lib/unistring/unictype/categ_Lo.c
gnutls-3.6.7/lib/unistring/unictype/categ_Lo.h
gnutls-3.6.7/lib/unistring/unictype/categ_Lt.c
gnutls-3.6.7/lib/unistring/unictype/categ_Lt.h
gnutls-3.6.7/lib/unistring/unictype/categ_Lu.c
gnutls-3.6.7/lib/unistring/unictype/categ_Lu.h
gnutls-3.6.7/lib/unistring/unictype/categ_M.c
gnutls-3.6.7/lib/unistring/unictype/categ_M.h
gnutls-3.6.7/lib/unistring/unictype/categ_Mc.c
gnutls-3.6.7/lib/unistring/unictype/categ_Mc.h
gnutls-3.6.7/lib/unistring/unictype/categ_Me.c
gnutls-3.6.7/lib/unistring/unictype/categ_Me.h
gnutls-3.6.7/lib/unistring/unictype/categ_Mn.c
gnutls-3.6.7/lib/unistring/unictype/categ_Mn.h
gnutls-3.6.7/lib/unistring/unictype/categ_N.c
gnutls-3.6.7/lib/unistring/unictype/categ_N.h
gnutls-3.6.7/lib/unistring/unictype/categ_Nd.c
gnutls-3.6.7/lib/unistring/unictype/categ_Nd.h
gnutls-3.6.7/lib/unistring/unictype/categ_Nl.c
gnutls-3.6.7/lib/unistring/unictype/categ_Nl.h
gnutls-3.6.7/lib/unistring/unictype/categ_No.c
gnutls-3.6.7/lib/unistring/unictype/categ_No.h
gnutls-3.6.7/lib/unistring/unictype/categ_P.c
gnutls-3.6.7/lib/unistring/unictype/categ_P.h
gnutls-3.6.7/lib/unistring/unictype/categ_Pc.c
gnutls-3.6.7/lib/unistring/unictype/categ_Pc.h
gnutls-3.6.7/lib/unistring/unictype/categ_Pd.c
gnutls-3.6.7/lib/unistring/unictype/categ_Pd.h
gnutls-3.6.7/lib/unistring/unictype/categ_Pe.c
gnutls-3.6.7/lib/unistring/unictype/categ_Pe.h
gnutls-3.6.7/lib/unistring/unictype/categ_Pf.c
gnutls-3.6.7/lib/unistring/unictype/categ_Pf.h
gnutls-3.6.7/lib/unistring/unictype/categ_Pi.c
gnutls-3.6.7/lib/unistring/unictype/categ_Pi.h
gnutls-3.6.7/lib/unistring/unictype/categ_Po.c
gnutls-3.6.7/lib/unistring/unictype/categ_Po.h
gnutls-3.6.7/lib/unistring/unictype/categ_Ps.c
gnutls-3.6.7/lib/unistring/unictype/categ_Ps.h
gnutls-3.6.7/lib/unistring/unictype/categ_S.c
gnutls-3.6.7/lib/unistring/unictype/categ_S.h
gnutls-3.6.7/lib/unistring/unictype/categ_Sc.c
gnutls-3.6.7/lib/unistring/unictype/categ_Sc.h
gnutls-3.6.7/lib/unistring/unictype/categ_Sk.c
gnutls-3.6.7/lib/unistring/unictype/categ_Sk.h
gnutls-3.6.7/lib/unistring/unictype/categ_Sm.c
gnutls-3.6.7/lib/unistring/unictype/categ_Sm.h
gnutls-3.6.7/lib/unistring/unictype/categ_So.c
gnutls-3.6.7/lib/unistring/unictype/categ_So.h
gnutls-3.6.7/lib/unistring/unictype/categ_Z.c
gnutls-3.6.7/lib/unistring/unictype/categ_Z.h
gnutls-3.6.7/lib/unistring/unictype/categ_Zl.c
gnutls-3.6.7/lib/unistring/unictype/categ_Zl.h
gnutls-3.6.7/lib/unistring/unictype/categ_Zp.c
gnutls-3.6.7/lib/unistring/unictype/categ_Zp.h
gnutls-3.6.7/lib/unistring/unictype/categ_Zs.c
gnutls-3.6.7/lib/unistring/unictype/categ_Zs.h
gnutls-3.6.7/lib/unistring/unictype/categ_and.c
gnutls-3.6.7/lib/unistring/unictype/categ_and_not.c
gnutls-3.6.7/lib/unistring/unictype/categ_byname.c
gnutls-3.6.7/lib/unistring/unictype/categ_byname.gperf
gnutls-3.6.7/lib/unistring/unictype/categ_byname.h
gnutls-3.6.7/lib/unistring/unictype/categ_longname.c
gnutls-3.6.7/lib/unistring/unictype/categ_name.c
gnutls-3.6.7/lib/unistring/unictype/categ_none.c
gnutls-3.6.7/lib/unistring/unictype/categ_of.c
gnutls-3.6.7/lib/unistring/unictype/categ_of.h
gnutls-3.6.7/lib/unistring/unictype/categ_or.c
gnutls-3.6.7/lib/unistring/unictype/categ_test.c
gnutls-3.6.7/lib/unistring/unictype/combiningclass.c
gnutls-3.6.7/lib/unistring/unictype/combiningclass.h
gnutls-3.6.7/lib/unistring/unictype/pr_default_ignorable_code_point.c
gnutls-3.6.7/lib/unistring/unictype/pr_default_ignorable_code_point.h
gnutls-3.6.7/lib/unistring/unictype/pr_join_control.c
gnutls-3.6.7/lib/unistring/unictype/pr_join_control.h
gnutls-3.6.7/lib/unistring/unictype/pr_not_a_character.c
gnutls-3.6.7/lib/unistring/unictype/pr_not_a_character.h
gnutls-3.6.7/lib/unistring/unictype.in.h
gnutls-3.6.7/lib/unistring/uninorm/
gnutls-3.6.7/lib/unistring/uninorm/canonical-decomposition.c
gnutls-3.6.7/lib/unistring/uninorm/compat-decomposition.c
gnutls-3.6.7/lib/unistring/uninorm/composition-table.gperf
gnutls-3.6.7/lib/unistring/uninorm/composition-table.h
gnutls-3.6.7/lib/unistring/uninorm/composition.c
gnutls-3.6.7/lib/unistring/uninorm/decompose-internal.c
gnutls-3.6.7/lib/unistring/uninorm/decompose-internal.h
gnutls-3.6.7/lib/unistring/uninorm/decomposition-table.c
gnutls-3.6.7/lib/unistring/uninorm/decomposition-table.h
gnutls-3.6.7/lib/unistring/uninorm/decomposition-table1.h
gnutls-3.6.7/lib/unistring/uninorm/decomposition-table2.h
gnutls-3.6.7/lib/unistring/uninorm/decomposition.c
gnutls-3.6.7/lib/unistring/uninorm/nfc.c
gnutls-3.6.7/lib/unistring/uninorm/nfd.c
gnutls-3.6.7/lib/unistring/uninorm/nfkc.c
gnutls-3.6.7/lib/unistring/uninorm/nfkd.c
gnutls-3.6.7/lib/unistring/uninorm/normalize-internal.h
gnutls-3.6.7/lib/unistring/uninorm/u-normalize-internal.h
gnutls-3.6.7/lib/unistring/uninorm/u16-normalize.c
gnutls-3.6.7/lib/unistring/uninorm/u32-normalize.c
gnutls-3.6.7/lib/unistring/uninorm/u8-normalize.c
gnutls-3.6.7/lib/unistring/uninorm.in.h
gnutls-3.6.7/lib/unistring/unistr/
gnutls-3.6.7/lib/unistring/unistr/u-cpy.h
gnutls-3.6.7/lib/unistring/unistr/u16-cpy.c
gnutls-3.6.7/lib/unistring/unistr/u16-mbtouc-unsafe-aux.c
gnutls-3.6.7/lib/unistring/unistr/u16-mbtouc-unsafe.c
gnutls-3.6.7/lib/unistring/unistr/u16-mbtoucr.c
gnutls-3.6.7/lib/unistring/unistr/u16-to-u8.c
gnutls-3.6.7/lib/unistring/unistr/u16-uctomb-aux.c
gnutls-3.6.7/lib/unistring/unistr/u16-uctomb.c
gnutls-3.6.7/lib/unistring/unistr/u32-cpy.c
gnutls-3.6.7/lib/unistring/unistr/u32-mbtouc-unsafe.c
gnutls-3.6.7/lib/unistring/unistr/u32-to-u8.c
gnutls-3.6.7/lib/unistring/unistr/u32-uctomb.c
gnutls-3.6.7/lib/unistring/unistr/u8-check.c
gnutls-3.6.7/lib/unistring/unistr/u8-cpy.c
gnutls-3.6.7/lib/unistring/unistr/u8-mbtouc-unsafe-aux.c
gnutls-3.6.7/lib/unistring/unistr/u8-mbtouc-unsafe.c
gnutls-3.6.7/lib/unistring/unistr/u8-mbtoucr.c
gnutls-3.6.7/lib/unistring/unistr/u8-to-u16.c
gnutls-3.6.7/lib/unistring/unistr/u8-to-u32.c
gnutls-3.6.7/lib/unistring/unistr/u8-uctomb-aux.c
gnutls-3.6.7/lib/unistring/unistr/u8-uctomb.c
gnutls-3.6.7/lib/unistring/unistr.in.h
gnutls-3.6.7/lib/unistring/unitypes.in.h
gnutls-3.6.7/lib/unistring/unused-parameter.h
gnutls-3.6.7/lib/urls.c
gnutls-3.6.7/lib/urls.h
gnutls-3.6.7/lib/verify-tofu.c
gnutls-3.6.7/lib/x509/
gnutls-3.6.7/lib/x509/Makefile.am
gnutls-3.6.7/lib/x509/Makefile.in
gnutls-3.6.7/lib/x509/attributes.c
gnutls-3.6.7/lib/x509/attributes.h
gnutls-3.6.7/lib/x509/common.c
gnutls-3.6.7/lib/x509/common.h
gnutls-3.6.7/lib/x509/crl.c
gnutls-3.6.7/lib/x509/crl_write.c
gnutls-3.6.7/lib/x509/crq.c
gnutls-3.6.7/lib/x509/dn.c
gnutls-3.6.7/lib/x509/email-verify.c
gnutls-3.6.7/lib/x509/extensions.c
gnutls-3.6.7/lib/x509/hostname-verify.c
gnutls-3.6.7/lib/x509/ip-in-cidr.h
gnutls-3.6.7/lib/x509/ip.c
gnutls-3.6.7/lib/x509/ip.h
gnutls-3.6.7/lib/x509/key_decode.c
gnutls-3.6.7/lib/x509/key_encode.c
gnutls-3.6.7/lib/x509/krb5.c
gnutls-3.6.7/lib/x509/krb5.h
gnutls-3.6.7/lib/x509/mpi.c
gnutls-3.6.7/lib/x509/name_constraints.c
gnutls-3.6.7/lib/x509/ocsp.c
gnutls-3.6.7/lib/x509/ocsp.h
gnutls-3.6.7/lib/x509/ocsp_output.c
gnutls-3.6.7/lib/x509/output.c
gnutls-3.6.7/lib/x509/pkcs12.c
gnutls-3.6.7/lib/x509/pkcs12_bag.c
gnutls-3.6.7/lib/x509/pkcs12_encr.c
gnutls-3.6.7/lib/x509/pkcs7-attrs.c
gnutls-3.6.7/lib/x509/pkcs7-crypt.c
gnutls-3.6.7/lib/x509/pkcs7-output.c
gnutls-3.6.7/lib/x509/pkcs7.c
gnutls-3.6.7/lib/x509/pkcs7_int.h
gnutls-3.6.7/lib/x509/privkey.c
gnutls-3.6.7/lib/x509/privkey_openssl.c
gnutls-3.6.7/lib/x509/privkey_pkcs8.c
gnutls-3.6.7/lib/x509/privkey_pkcs8_pbes1.c
gnutls-3.6.7/lib/x509/prov-seed.c
gnutls-3.6.7/lib/x509/prov-seed.h
gnutls-3.6.7/lib/x509/sign.c
gnutls-3.6.7/lib/x509/spki.c
gnutls-3.6.7/lib/x509/supported_exts.gperf
gnutls-3.6.7/lib/x509/supported_exts.h
gnutls-3.6.7/lib/x509/time.c
gnutls-3.6.7/lib/x509/tls_features.c
gnutls-3.6.7/lib/x509/verify-high.c
gnutls-3.6.7/lib/x509/verify-high.h
gnutls-3.6.7/lib/x509/verify-high2.c
gnutls-3.6.7/lib/x509/verify.c
gnutls-3.6.7/lib/x509/virt-san.c
gnutls-3.6.7/lib/x509/virt-san.h
gnutls-3.6.7/lib/x509/x509.c
gnutls-3.6.7/lib/x509/x509_dn.c
gnutls-3.6.7/lib/x509/x509_ext.c
gnutls-3.6.7/lib/x509/x509_ext_int.h
gnutls-3.6.7/lib/x509/x509_int.h
gnutls-3.6.7/lib/x509/x509_write.c
gnutls-3.6.7/lib/x509.h
gnutls-3.6.7/lib/x509_b64.c
gnutls-3.6.7/lib/x509_b64.h
gnutls-3.6.7/libdane/
gnutls-3.6.7/libdane/Makefile.am
gnutls-3.6.7/libdane/Makefile.in
gnutls-3.6.7/libdane/dane-params.c
gnutls-3.6.7/libdane/dane.c
gnutls-3.6.7/libdane/errors.c
gnutls-3.6.7/libdane/gnutls-dane.pc.in
gnutls-3.6.7/libdane/includes/
gnutls-3.6.7/libdane/includes/Makefile.am
gnutls-3.6.7/libdane/includes/Makefile.in
gnutls-3.6.7/libdane/includes/gnutls/
gnutls-3.6.7/libdane/includes/gnutls/dane.h
gnutls-3.6.7/libdane/libdane.map
gnutls-3.6.7/m4/
gnutls-3.6.7/m4/00gnulib.m4
gnutls-3.6.7/m4/absolute-header.m4
gnutls-3.6.7/m4/alloca.m4
gnutls-3.6.7/m4/arpa_inet_h.m4
gnutls-3.6.7/m4/ax_ac_append_to_file.m4
gnutls-3.6.7/m4/ax_ac_print_to_file.m4
gnutls-3.6.7/m4/ax_add_am_macro_static.m4
gnutls-3.6.7/m4/ax_am_macros_static.m4
gnutls-3.6.7/m4/ax_check_gnu_make.m4
gnutls-3.6.7/m4/ax_code_coverage.m4
gnutls-3.6.7/m4/ax_file_escapes.m4
gnutls-3.6.7/m4/builtin-expect.m4
gnutls-3.6.7/m4/byteswap.m4
gnutls-3.6.7/m4/close.m4
gnutls-3.6.7/m4/codeset.m4
gnutls-3.6.7/m4/ctype.m4
gnutls-3.6.7/m4/dup2.m4
gnutls-3.6.7/m4/eealloc.m4
gnutls-3.6.7/m4/environ.m4
gnutls-3.6.7/m4/errno_h.m4
gnutls-3.6.7/m4/exponentd.m4
gnutls-3.6.7/m4/extensions.m4
gnutls-3.6.7/m4/extern-inline.m4
gnutls-3.6.7/m4/fcntl-o.m4
gnutls-3.6.7/m4/fcntl.m4
gnutls-3.6.7/m4/fcntl_h.m4
gnutls-3.6.7/m4/fdopen.m4
gnutls-3.6.7/m4/flexmember.m4
gnutls-3.6.7/m4/float_h.m4
gnutls-3.6.7/m4/fpieee.m4
gnutls-3.6.7/m4/fseeko.m4
gnutls-3.6.7/m4/fstat.m4
gnutls-3.6.7/m4/ftell.m4
gnutls-3.6.7/m4/ftello.m4
gnutls-3.6.7/m4/ftruncate.m4
gnutls-3.6.7/m4/func.m4
gnutls-3.6.7/m4/getcwd.m4
gnutls-3.6.7/m4/getdelim.m4
gnutls-3.6.7/m4/getdtablesize.m4
gnutls-3.6.7/m4/getline.m4
gnutls-3.6.7/m4/getpagesize.m4
gnutls-3.6.7/m4/gettext.m4
gnutls-3.6.7/m4/gettimeofday.m4
gnutls-3.6.7/m4/gnulib-common.m4
gnutls-3.6.7/m4/gnulib-comp.m4
gnutls-3.6.7/m4/gtk-doc.m4
gnutls-3.6.7/m4/guile.m4
gnutls-3.6.7/m4/hooks.m4
gnutls-3.6.7/m4/host-cpu-c-abi.m4
gnutls-3.6.7/m4/iconv.m4
gnutls-3.6.7/m4/include_next.m4
gnutls-3.6.7/m4/inet_ntop.m4
gnutls-3.6.7/m4/inet_pton.m4
gnutls-3.6.7/m4/intl-thread-locale.m4
gnutls-3.6.7/m4/intlmacosx.m4
gnutls-3.6.7/m4/intmax_t.m4
gnutls-3.6.7/m4/inttypes-pri.m4
gnutls-3.6.7/m4/inttypes.m4
gnutls-3.6.7/m4/inttypes_h.m4
gnutls-3.6.7/m4/ioctl.m4
gnutls-3.6.7/m4/isblank.m4
gnutls-3.6.7/m4/langinfo_h.m4
gnutls-3.6.7/m4/largefile.m4
gnutls-3.6.7/m4/lcmessage.m4
gnutls-3.6.7/m4/ld-output-def.m4
gnutls-3.6.7/m4/ld-version-script.m4
gnutls-3.6.7/m4/lib-ld.m4
gnutls-3.6.7/m4/lib-link.m4
gnutls-3.6.7/m4/lib-prefix.m4
gnutls-3.6.7/m4/libtool.m4
gnutls-3.6.7/m4/limits-h.m4
gnutls-3.6.7/m4/locale-fr.m4
gnutls-3.6.7/m4/locale-ja.m4
gnutls-3.6.7/m4/locale-tr.m4
gnutls-3.6.7/m4/locale-zh.m4
gnutls-3.6.7/m4/locale_h.m4
gnutls-3.6.7/m4/localename.m4
gnutls-3.6.7/m4/localtime-buffer.m4
gnutls-3.6.7/m4/lock.m4
gnutls-3.6.7/m4/longlong.m4
gnutls-3.6.7/m4/lseek.m4
gnutls-3.6.7/m4/lstat.m4
gnutls-3.6.7/m4/ltoptions.m4
gnutls-3.6.7/m4/ltsugar.m4
gnutls-3.6.7/m4/ltversion.m4
gnutls-3.6.7/m4/lt~obsolete.m4
gnutls-3.6.7/m4/malloc.m4
gnutls-3.6.7/m4/malloca.m4
gnutls-3.6.7/m4/manywarnings.m4
gnutls-3.6.7/m4/memchr.m4
gnutls-3.6.7/m4/memmem.m4
gnutls-3.6.7/m4/minmax.m4
gnutls-3.6.7/m4/mmap-anon.m4
gnutls-3.6.7/m4/mode_t.m4
gnutls-3.6.7/m4/msvc-inval.m4
gnutls-3.6.7/m4/msvc-nothrow.m4
gnutls-3.6.7/m4/multiarch.m4
gnutls-3.6.7/m4/nanosleep.m4
gnutls-3.6.7/m4/netdb_h.m4
gnutls-3.6.7/m4/netinet_in_h.m4
gnutls-3.6.7/m4/nls.m4
gnutls-3.6.7/m4/off_t.m4
gnutls-3.6.7/m4/open-cloexec.m4
gnutls-3.6.7/m4/open.m4
gnutls-3.6.7/m4/pathmax.m4
gnutls-3.6.7/m4/perror.m4
gnutls-3.6.7/m4/pipe.m4
gnutls-3.6.7/m4/pkg.m4
gnutls-3.6.7/m4/po.m4
gnutls-3.6.7/m4/printf.m4
gnutls-3.6.7/m4/progtest.m4
gnutls-3.6.7/m4/pthread_rwlock_rdlock.m4
gnutls-3.6.7/m4/putenv.m4
gnutls-3.6.7/m4/raise.m4
gnutls-3.6.7/m4/read-file.m4
gnutls-3.6.7/m4/realloc.m4
gnutls-3.6.7/m4/secure_getenv.m4
gnutls-3.6.7/m4/select.m4
gnutls-3.6.7/m4/setenv.m4
gnutls-3.6.7/m4/setlocale.m4
gnutls-3.6.7/m4/sigaction.m4
gnutls-3.6.7/m4/signal_h.m4
gnutls-3.6.7/m4/signalblocking.m4
gnutls-3.6.7/m4/size_max.m4
gnutls-3.6.7/m4/sleep.m4
gnutls-3.6.7/m4/snprintf.m4
gnutls-3.6.7/m4/socketlib.m4
gnutls-3.6.7/m4/sockets.m4
gnutls-3.6.7/m4/socklen.m4
gnutls-3.6.7/m4/sockpfaf.m4
gnutls-3.6.7/m4/ssize_t.m4
gnutls-3.6.7/m4/stat-time.m4
gnutls-3.6.7/m4/stat.m4
gnutls-3.6.7/m4/stdalign.m4
gnutls-3.6.7/m4/stdbool.m4
gnutls-3.6.7/m4/stddef_h.m4
gnutls-3.6.7/m4/stdint.m4
gnutls-3.6.7/m4/stdint_h.m4
gnutls-3.6.7/m4/stdio_h.m4
gnutls-3.6.7/m4/stdlib_h.m4
gnutls-3.6.7/m4/strcase.m4
gnutls-3.6.7/m4/strdup.m4
gnutls-3.6.7/m4/strerror.m4
gnutls-3.6.7/m4/strerror_r.m4
gnutls-3.6.7/m4/string_h.m4
gnutls-3.6.7/m4/strings_h.m4
gnutls-3.6.7/m4/strndup.m4
gnutls-3.6.7/m4/strnlen.m4
gnutls-3.6.7/m4/strtok_r.m4
gnutls-3.6.7/m4/strverscmp.m4
gnutls-3.6.7/m4/symlink.m4
gnutls-3.6.7/m4/sys_ioctl_h.m4
gnutls-3.6.7/m4/sys_select_h.m4
gnutls-3.6.7/m4/sys_socket_h.m4
gnutls-3.6.7/m4/sys_stat_h.m4
gnutls-3.6.7/m4/sys_time_h.m4
gnutls-3.6.7/m4/sys_types_h.m4
gnutls-3.6.7/m4/sys_uio_h.m4
gnutls-3.6.7/m4/threadlib.m4
gnutls-3.6.7/m4/time_h.m4
gnutls-3.6.7/m4/time_r.m4
gnutls-3.6.7/m4/ungetc.m4
gnutls-3.6.7/m4/unistd_h.m4
gnutls-3.6.7/m4/valgrind-tests.m4
gnutls-3.6.7/m4/vasnprintf.m4
gnutls-3.6.7/m4/vasprintf.m4
gnutls-3.6.7/m4/vsnprintf.m4
gnutls-3.6.7/m4/warn-on-use.m4
gnutls-3.6.7/m4/warnings.m4
gnutls-3.6.7/m4/wchar_h.m4
gnutls-3.6.7/m4/wchar_t.m4
gnutls-3.6.7/m4/wint_t.m4
gnutls-3.6.7/m4/xsize.m4
gnutls-3.6.7/maint.mk
gnutls-3.6.7/po/
gnutls-3.6.7/po/ChangeLog
gnutls-3.6.7/po/LINGUAS
gnutls-3.6.7/po/Makefile.in.in
gnutls-3.6.7/po/Makevars
gnutls-3.6.7/po/POTFILES.in
gnutls-3.6.7/po/Rules-quot
gnutls-3.6.7/po/boldquot.sed
gnutls-3.6.7/po/cs.gmo
gnutls-3.6.7/po/cs.po
gnutls-3.6.7/po/de.gmo
gnutls-3.6.7/po/de.po
gnutls-3.6.7/po/en@boldquot.header
gnutls-3.6.7/po/en@quot.header
gnutls-3.6.7/po/eo.gmo
gnutls-3.6.7/po/eo.po
gnutls-3.6.7/po/es.gmo
gnutls-3.6.7/po/es.po
gnutls-3.6.7/po/fi.gmo
gnutls-3.6.7/po/fi.po
gnutls-3.6.7/po/fr.gmo
gnutls-3.6.7/po/fr.po
gnutls-3.6.7/po/gnutls.pot
gnutls-3.6.7/po/insert-header.sin
gnutls-3.6.7/po/it.gmo
gnutls-3.6.7/po/it.po
gnutls-3.6.7/po/ms.gmo
gnutls-3.6.7/po/ms.po
gnutls-3.6.7/po/nl.gmo
gnutls-3.6.7/po/nl.po
gnutls-3.6.7/po/pl.gmo
gnutls-3.6.7/po/pl.po
gnutls-3.6.7/po/pt_BR.gmo
gnutls-3.6.7/po/pt_BR.po
gnutls-3.6.7/po/quot.sed
gnutls-3.6.7/po/remove-potcdate.sin
gnutls-3.6.7/po/sr.gmo
gnutls-3.6.7/po/sr.po
gnutls-3.6.7/po/stamp-po
gnutls-3.6.7/po/sv.gmo
gnutls-3.6.7/po/sv.po
gnutls-3.6.7/po/uk.gmo
gnutls-3.6.7/po/uk.po
gnutls-3.6.7/po/vi.gmo
gnutls-3.6.7/po/vi.po
gnutls-3.6.7/po/zh_CN.gmo
gnutls-3.6.7/po/zh_CN.po
gnutls-3.6.7/src/
gnutls-3.6.7/src/Makefile.am
gnutls-3.6.7/src/Makefile.in
gnutls-3.6.7/src/args-std.def.in
gnutls-3.6.7/src/benchmark-cipher.c
gnutls-3.6.7/src/benchmark-tls.c
gnutls-3.6.7/src/benchmark.c
gnutls-3.6.7/src/benchmark.h
gnutls-3.6.7/src/certtool-args.c.bak
gnutls-3.6.7/src/certtool-args.def
gnutls-3.6.7/src/certtool-args.h.bak
gnutls-3.6.7/src/certtool-cfg.c
gnutls-3.6.7/src/certtool-cfg.h
gnutls-3.6.7/src/certtool-common.c
gnutls-3.6.7/src/certtool-common.h
gnutls-3.6.7/src/certtool-extras.c
gnutls-3.6.7/src/certtool.c
gnutls-3.6.7/src/cli-args.c.bak
gnutls-3.6.7/src/cli-args.def
gnutls-3.6.7/src/cli-args.h.bak
gnutls-3.6.7/src/cli-debug-args.c.bak
gnutls-3.6.7/src/cli-debug-args.def
gnutls-3.6.7/src/cli-debug-args.h.bak
gnutls-3.6.7/src/cli-debug.c
gnutls-3.6.7/src/cli.c
gnutls-3.6.7/src/common.c
gnutls-3.6.7/src/common.h
gnutls-3.6.7/src/danetool-args.c.bak
gnutls-3.6.7/src/danetool-args.def
gnutls-3.6.7/src/danetool-args.h.bak
gnutls-3.6.7/src/danetool.c
gnutls-3.6.7/src/gen-mech-list.sh
gnutls-3.6.7/src/gl/
gnutls-3.6.7/src/gl/Makefile.am
gnutls-3.6.7/src/gl/Makefile.in
gnutls-3.6.7/src/gl/_Noreturn.h
gnutls-3.6.7/src/gl/accept.c
gnutls-3.6.7/src/gl/alloca.c
gnutls-3.6.7/src/gl/alloca.in.h
gnutls-3.6.7/src/gl/arg-nonnull.h
gnutls-3.6.7/src/gl/arpa_inet.in.h
gnutls-3.6.7/src/gl/asnprintf.c
gnutls-3.6.7/src/gl/bind.c
gnutls-3.6.7/src/gl/c++defs.h
gnutls-3.6.7/src/gl/c-ctype.c
gnutls-3.6.7/src/gl/c-ctype.h
gnutls-3.6.7/src/gl/cdefs.h
gnutls-3.6.7/src/gl/close.c
gnutls-3.6.7/src/gl/connect.c
gnutls-3.6.7/src/gl/dup2.c
gnutls-3.6.7/src/gl/errno.in.h
gnutls-3.6.7/src/gl/fd-hook.c
gnutls-3.6.7/src/gl/fd-hook.h
gnutls-3.6.7/src/gl/flexmember.h
gnutls-3.6.7/src/gl/float+.h
gnutls-3.6.7/src/gl/float.c
gnutls-3.6.7/src/gl/float.in.h
gnutls-3.6.7/src/gl/fseek.c
gnutls-3.6.7/src/gl/fseeko.c
gnutls-3.6.7/src/gl/fstat.c
gnutls-3.6.7/src/gl/ftell.c
gnutls-3.6.7/src/gl/ftello.c
gnutls-3.6.7/src/gl/gai_strerror.c
gnutls-3.6.7/src/gl/getaddrinfo.c
gnutls-3.6.7/src/gl/getdelim.c
gnutls-3.6.7/src/gl/getline.c
gnutls-3.6.7/src/gl/getpass.c
gnutls-3.6.7/src/gl/getpass.h
gnutls-3.6.7/src/gl/getpeername.c
gnutls-3.6.7/src/gl/gettext.h
gnutls-3.6.7/src/gl/gettime.c
gnutls-3.6.7/src/gl/gettimeofday.c
gnutls-3.6.7/src/gl/inet_ntop.c
gnutls-3.6.7/src/gl/inet_pton.c
gnutls-3.6.7/src/gl/intprops.h
gnutls-3.6.7/src/gl/inttypes.in.h
gnutls-3.6.7/src/gl/itold.c
gnutls-3.6.7/src/gl/libc-config.h
gnutls-3.6.7/src/gl/limits.in.h
gnutls-3.6.7/src/gl/listen.c
gnutls-3.6.7/src/gl/localtime-buffer.c
gnutls-3.6.7/src/gl/localtime-buffer.h
gnutls-3.6.7/src/gl/lseek.c
gnutls-3.6.7/src/gl/m4/
gnutls-3.6.7/src/gl/m4/__inline.m4
gnutls-3.6.7/src/gl/m4/bison.m4
gnutls-3.6.7/src/gl/m4/clock_time.m4
gnutls-3.6.7/src/gl/m4/fseek.m4
gnutls-3.6.7/src/gl/m4/getaddrinfo.m4
gnutls-3.6.7/src/gl/m4/getpass.m4
gnutls-3.6.7/src/gl/m4/gettime.m4
gnutls-3.6.7/src/gl/m4/gnulib-cache.m4
gnutls-3.6.7/src/gl/m4/gnulib-comp.m4
gnutls-3.6.7/src/gl/m4/hostent.m4
gnutls-3.6.7/src/gl/m4/mktime.m4
gnutls-3.6.7/src/gl/m4/nstrftime.m4
gnutls-3.6.7/src/gl/m4/parse-datetime.m4
gnutls-3.6.7/src/gl/m4/servent.m4
gnutls-3.6.7/src/gl/m4/time_rz.m4
gnutls-3.6.7/src/gl/m4/timegm.m4
gnutls-3.6.7/src/gl/m4/timespec.m4
gnutls-3.6.7/src/gl/m4/tm_gmtoff.m4
gnutls-3.6.7/src/gl/m4/tzset.m4
gnutls-3.6.7/src/gl/malloc.c
gnutls-3.6.7/src/gl/malloca.c
gnutls-3.6.7/src/gl/malloca.h
gnutls-3.6.7/src/gl/memchr.c
gnutls-3.6.7/src/gl/memchr.valgrind
gnutls-3.6.7/src/gl/minmax.h
gnutls-3.6.7/src/gl/mktime-internal.h
gnutls-3.6.7/src/gl/mktime.c
gnutls-3.6.7/src/gl/msvc-inval.c
gnutls-3.6.7/src/gl/msvc-inval.h
gnutls-3.6.7/src/gl/msvc-nothrow.c
gnutls-3.6.7/src/gl/msvc-nothrow.h
gnutls-3.6.7/src/gl/netdb.in.h
gnutls-3.6.7/src/gl/netinet_in.in.h
gnutls-3.6.7/src/gl/nstrftime.c
gnutls-3.6.7/src/gl/parse-datetime.c
gnutls-3.6.7/src/gl/parse-datetime.h
gnutls-3.6.7/src/gl/parse-datetime.y
gnutls-3.6.7/src/gl/pathmax.h
gnutls-3.6.7/src/gl/printf-args.c
gnutls-3.6.7/src/gl/printf-args.h
gnutls-3.6.7/src/gl/printf-parse.c
gnutls-3.6.7/src/gl/printf-parse.h
gnutls-3.6.7/src/gl/progname.c
gnutls-3.6.7/src/gl/progname.h
gnutls-3.6.7/src/gl/read-file.c
gnutls-3.6.7/src/gl/read-file.h
gnutls-3.6.7/src/gl/realloc.c
gnutls-3.6.7/src/gl/recv.c
gnutls-3.6.7/src/gl/recvfrom.c
gnutls-3.6.7/src/gl/select.c
gnutls-3.6.7/src/gl/send.c
gnutls-3.6.7/src/gl/sendto.c
gnutls-3.6.7/src/gl/setenv.c
gnutls-3.6.7/src/gl/setsockopt.c
gnutls-3.6.7/src/gl/shutdown.c
gnutls-3.6.7/src/gl/signal.in.h
gnutls-3.6.7/src/gl/size_max.h
gnutls-3.6.7/src/gl/snprintf.c
gnutls-3.6.7/src/gl/socket.c
gnutls-3.6.7/src/gl/sockets.c
gnutls-3.6.7/src/gl/sockets.h
gnutls-3.6.7/src/gl/stat-time.c
gnutls-3.6.7/src/gl/stat-time.h
gnutls-3.6.7/src/gl/stat-w32.c
gnutls-3.6.7/src/gl/stat-w32.h
gnutls-3.6.7/src/gl/stdalign.in.h
gnutls-3.6.7/src/gl/stdbool.in.h
gnutls-3.6.7/src/gl/stddef.in.h
gnutls-3.6.7/src/gl/stdint.in.h
gnutls-3.6.7/src/gl/stdio-impl.h
gnutls-3.6.7/src/gl/stdio.in.h
gnutls-3.6.7/src/gl/stdlib.in.h
gnutls-3.6.7/src/gl/strdup.c
gnutls-3.6.7/src/gl/strftime.h
gnutls-3.6.7/src/gl/string.in.h
gnutls-3.6.7/src/gl/sys_select.in.h
gnutls-3.6.7/src/gl/sys_socket.c
gnutls-3.6.7/src/gl/sys_socket.in.h
gnutls-3.6.7/src/gl/sys_stat.in.h
gnutls-3.6.7/src/gl/sys_time.in.h
gnutls-3.6.7/src/gl/sys_types.in.h
gnutls-3.6.7/src/gl/sys_uio.in.h
gnutls-3.6.7/src/gl/time-internal.h
gnutls-3.6.7/src/gl/time.in.h
gnutls-3.6.7/src/gl/time_r.c
gnutls-3.6.7/src/gl/time_rz.c
gnutls-3.6.7/src/gl/timegm.c
gnutls-3.6.7/src/gl/timespec.c
gnutls-3.6.7/src/gl/timespec.h
gnutls-3.6.7/src/gl/tzset.c
gnutls-3.6.7/src/gl/unistd.c
gnutls-3.6.7/src/gl/unistd.in.h
gnutls-3.6.7/src/gl/unsetenv.c
gnutls-3.6.7/src/gl/vasnprintf.c
gnutls-3.6.7/src/gl/vasnprintf.h
gnutls-3.6.7/src/gl/verify.h
gnutls-3.6.7/src/gl/w32sock.h
gnutls-3.6.7/src/gl/warn-on-use.h
gnutls-3.6.7/src/gl/wchar.in.h
gnutls-3.6.7/src/gl/xalloc-oversized.h
gnutls-3.6.7/src/gl/xsize.c
gnutls-3.6.7/src/gl/xsize.h
gnutls-3.6.7/src/inline_cmds.h
gnutls-3.6.7/src/libopts/
gnutls-3.6.7/src/libopts/COPYING.gplv3
gnutls-3.6.7/src/libopts/COPYING.lgplv3
gnutls-3.6.7/src/libopts/COPYING.mbsd
gnutls-3.6.7/src/libopts/MakeDefs.inc
gnutls-3.6.7/src/libopts/Makefile.am
gnutls-3.6.7/src/libopts/Makefile.in
gnutls-3.6.7/src/libopts/README
gnutls-3.6.7/src/libopts/ag-char-map.h
gnutls-3.6.7/src/libopts/alias.c
gnutls-3.6.7/src/libopts/ao-strs.c
gnutls-3.6.7/src/libopts/ao-strs.h
gnutls-3.6.7/src/libopts/autoopts/
gnutls-3.6.7/src/libopts/autoopts/options.h
gnutls-3.6.7/src/libopts/autoopts/project.h
gnutls-3.6.7/src/libopts/autoopts/usage-txt.h
gnutls-3.6.7/src/libopts/autoopts.c
gnutls-3.6.7/src/libopts/autoopts.h
gnutls-3.6.7/src/libopts/boolean.c
gnutls-3.6.7/src/libopts/check.c
gnutls-3.6.7/src/libopts/compat/
gnutls-3.6.7/src/libopts/compat/_Noreturn.h
gnutls-3.6.7/src/libopts/compat/compat.h
gnutls-3.6.7/src/libopts/compat/pathfind.c
gnutls-3.6.7/src/libopts/compat/snprintf.c
gnutls-3.6.7/src/libopts/compat/strchr.c
gnutls-3.6.7/src/libopts/compat/strdup.c
gnutls-3.6.7/src/libopts/compat/windows-config.h
gnutls-3.6.7/src/libopts/configfile.c
gnutls-3.6.7/src/libopts/cook.c
gnutls-3.6.7/src/libopts/enum.c
gnutls-3.6.7/src/libopts/env.c
gnutls-3.6.7/src/libopts/file.c
gnutls-3.6.7/src/libopts/find.c
gnutls-3.6.7/src/libopts/genshell.c
gnutls-3.6.7/src/libopts/genshell.h
gnutls-3.6.7/src/libopts/gettext.h
gnutls-3.6.7/src/libopts/init.c
gnutls-3.6.7/src/libopts/intprops.h
gnutls-3.6.7/src/libopts/libopts.c
gnutls-3.6.7/src/libopts/load.c
gnutls-3.6.7/src/libopts/m4/
gnutls-3.6.7/src/libopts/m4/libopts.m4
gnutls-3.6.7/src/libopts/m4/liboptschk.m4
gnutls-3.6.7/src/libopts/m4/stdnoreturn.m4
gnutls-3.6.7/src/libopts/makeshell.c
gnutls-3.6.7/src/libopts/nested.c
gnutls-3.6.7/src/libopts/numeric.c
gnutls-3.6.7/src/libopts/option-value-type.c
gnutls-3.6.7/src/libopts/option-value-type.h
gnutls-3.6.7/src/libopts/option-xat-attribute.c
gnutls-3.6.7/src/libopts/option-xat-attribute.h
gnutls-3.6.7/src/libopts/parse-duration.c
gnutls-3.6.7/src/libopts/parse-duration.h
gnutls-3.6.7/src/libopts/pgusage.c
gnutls-3.6.7/src/libopts/proto.h
gnutls-3.6.7/src/libopts/putshell.c
gnutls-3.6.7/src/libopts/reset.c
gnutls-3.6.7/src/libopts/restore.c
gnutls-3.6.7/src/libopts/save.c
gnutls-3.6.7/src/libopts/sort.c
gnutls-3.6.7/src/libopts/stack.c
gnutls-3.6.7/src/libopts/stdnoreturn.in.h
gnutls-3.6.7/src/libopts/streqvcmp.c
gnutls-3.6.7/src/libopts/text_mmap.c
gnutls-3.6.7/src/libopts/time.c
gnutls-3.6.7/src/libopts/tokenize.c
gnutls-3.6.7/src/libopts/usage.c
gnutls-3.6.7/src/libopts/version.c
gnutls-3.6.7/src/list.h
gnutls-3.6.7/src/mech-list.h
gnutls-3.6.7/src/ocsptool-args.c.bak
gnutls-3.6.7/src/ocsptool-args.def
gnutls-3.6.7/src/ocsptool-args.h.bak
gnutls-3.6.7/src/ocsptool-common.c
gnutls-3.6.7/src/ocsptool-common.h
gnutls-3.6.7/src/ocsptool.c
gnutls-3.6.7/src/p11tool-args.c.bak
gnutls-3.6.7/src/p11tool-args.def
gnutls-3.6.7/src/p11tool-args.h.bak
gnutls-3.6.7/src/p11tool.c
gnutls-3.6.7/src/p11tool.h
gnutls-3.6.7/src/pkcs11.c
gnutls-3.6.7/src/psk.c
gnutls-3.6.7/src/psktool-args.c.bak
gnutls-3.6.7/src/psktool-args.def
gnutls-3.6.7/src/psktool-args.h.bak
gnutls-3.6.7/src/serv-args.c.bak
gnutls-3.6.7/src/serv-args.def
gnutls-3.6.7/src/serv-args.h.bak
gnutls-3.6.7/src/serv.c
gnutls-3.6.7/src/socket.c
gnutls-3.6.7/src/socket.h
gnutls-3.6.7/src/srptool-args.c.bak
gnutls-3.6.7/src/srptool-args.def
gnutls-3.6.7/src/srptool-args.h.bak
gnutls-3.6.7/src/srptool.c
gnutls-3.6.7/src/systemkey-args.c.bak
gnutls-3.6.7/src/systemkey-args.def
gnutls-3.6.7/src/systemkey-args.h.bak
gnutls-3.6.7/src/systemkey.c
gnutls-3.6.7/src/tests.c
gnutls-3.6.7/src/tests.h
gnutls-3.6.7/src/tpmtool-args.c.bak
gnutls-3.6.7/src/tpmtool-args.def
gnutls-3.6.7/src/tpmtool-args.h.bak
gnutls-3.6.7/src/tpmtool.c
gnutls-3.6.7/src/udp-serv.c
gnutls-3.6.7/src/udp-serv.h
gnutls-3.6.7/symbols.last
gnutls-3.6.7/tests/
gnutls-3.6.7/tests/Makefile.am
gnutls-3.6.7/tests/Makefile.in
gnutls-3.6.7/tests/alerts.c
gnutls-3.6.7/tests/alpn-server-prec.c
gnutls-3.6.7/tests/anonself.c
gnutls-3.6.7/tests/atfork.c
gnutls-3.6.7/tests/auto-verify.c
gnutls-3.6.7/tests/base64-raw.c
gnutls-3.6.7/tests/base64.c
gnutls-3.6.7/tests/cert-common.h
gnutls-3.6.7/tests/cert-reencoding.sh
gnutls-3.6.7/tests/cert-repro-20170915.h
gnutls-3.6.7/tests/cert-status.c
gnutls-3.6.7/tests/cert-tests/
gnutls-3.6.7/tests/cert-tests/Makefile.am
gnutls-3.6.7/tests/cert-tests/Makefile.in
gnutls-3.6.7/tests/cert-tests/aki
gnutls-3.6.7/tests/cert-tests/alt-chain
gnutls-3.6.7/tests/cert-tests/cert-critical
gnutls-3.6.7/tests/cert-tests/cert-sanity
gnutls-3.6.7/tests/cert-tests/cert-time
gnutls-3.6.7/tests/cert-tests/certtool
gnutls-3.6.7/tests/cert-tests/certtool-crl-decoding
gnutls-3.6.7/tests/cert-tests/certtool-ecdsa
gnutls-3.6.7/tests/cert-tests/certtool-eddsa
gnutls-3.6.7/tests/cert-tests/certtool-long-cn
gnutls-3.6.7/tests/cert-tests/certtool-long-oids
gnutls-3.6.7/tests/cert-tests/certtool-rsa-pss
gnutls-3.6.7/tests/cert-tests/certtool-utf8
gnutls-3.6.7/tests/cert-tests/crl
gnutls-3.6.7/tests/cert-tests/crq
gnutls-3.6.7/tests/cert-tests/dane
gnutls-3.6.7/tests/cert-tests/data/
gnutls-3.6.7/tests/cert-tests/data/aes-128.p12
gnutls-3.6.7/tests/cert-tests/data/aki-cert.pem
gnutls-3.6.7/tests/cert-tests/data/alt-chain-new-ca.pem
gnutls-3.6.7/tests/cert-tests/data/alt-chain-old-ca.pem
gnutls-3.6.7/tests/cert-tests/data/alt-chain.pem
gnutls-3.6.7/tests/cert-tests/data/arb-extensions.csr
gnutls-3.6.7/tests/cert-tests/data/arb-extensions.pem
gnutls-3.6.7/tests/cert-tests/data/attribute-leak-1.pub
gnutls-3.6.7/tests/cert-tests/data/bad-key.pem
gnutls-3.6.7/tests/cert-tests/data/bmpstring.pem
gnutls-3.6.7/tests/cert-tests/data/ca-certs.pem
gnutls-3.6.7/tests/cert-tests/data/ca-crl-invalid.crl
gnutls-3.6.7/tests/cert-tests/data/ca-crl-invalid.pem
gnutls-3.6.7/tests/cert-tests/data/ca-crl-valid.crl
gnutls-3.6.7/tests/cert-tests/data/ca-crl-valid.pem
gnutls-3.6.7/tests/cert-tests/data/ca-gnutls-keyid.pem
gnutls-3.6.7/tests/cert-tests/data/ca-no-keyid.pem
gnutls-3.6.7/tests/cert-tests/data/ca-no-pathlen.pem
gnutls-3.6.7/tests/cert-tests/data/ca-public.gpg
gnutls-3.6.7/tests/cert-tests/data/ca-secret.gpg
gnutls-3.6.7/tests/cert-tests/data/ca-weird-keyid.pem
gnutls-3.6.7/tests/cert-tests/data/cert-ca.p12
gnutls-3.6.7/tests/cert-tests/data/cert-ecc256-full.pem
gnutls-3.6.7/tests/cert-tests/data/cert-ecc256.pem
gnutls-3.6.7/tests/cert-tests/data/cert-eddsa.pem
gnutls-3.6.7/tests/cert-tests/data/cert-invalid-utf8.der
gnutls-3.6.7/tests/cert-tests/data/cert-rsa-pss.pem
gnutls-3.6.7/tests/cert-tests/data/cert-with-crl.p12
gnutls-3.6.7/tests/cert-tests/data/cert.dsa.1024.pem
gnutls-3.6.7/tests/cert-tests/data/cert.dsa.2048.pem
gnutls-3.6.7/tests/cert-tests/data/cert.dsa.3072.pem
gnutls-3.6.7/tests/cert-tests/data/chain-eddsa.pem
gnutls-3.6.7/tests/cert-tests/data/chain-md5.pem
gnutls-3.6.7/tests/cert-tests/data/chain-with-critical-on-endcert.pem
gnutls-3.6.7/tests/cert-tests/data/chain-with-critical-on-intermediate.pem
gnutls-3.6.7/tests/cert-tests/data/chain-with-critical-on-root.pem
gnutls-3.6.7/tests/cert-tests/data/client.p12
gnutls-3.6.7/tests/cert-tests/data/code-signing-ca.pem
gnutls-3.6.7/tests/cert-tests/data/code-signing-cert.pem
gnutls-3.6.7/tests/cert-tests/data/complex-cert.pem
gnutls-3.6.7/tests/cert-tests/data/crit-extensions.pem
gnutls-3.6.7/tests/cert-tests/data/crl-demo1.pem
gnutls-3.6.7/tests/cert-tests/data/crl-demo2.pem
gnutls-3.6.7/tests/cert-tests/data/crl-demo3.pem
gnutls-3.6.7/tests/cert-tests/data/csr-invalid.der
gnutls-3.6.7/tests/cert-tests/data/cve-2019-3829.pem
gnutls-3.6.7/tests/cert-tests/data/dane-test.rr
gnutls-3.6.7/tests/cert-tests/data/detached.p7b
gnutls-3.6.7/tests/cert-tests/data/dsa-pubkey-1018.pem
gnutls-3.6.7/tests/cert-tests/data/dsa.1024.pem
gnutls-3.6.7/tests/cert-tests/data/dsa.2048.pem
gnutls-3.6.7/tests/cert-tests/data/dsa.3072.pem
gnutls-3.6.7/tests/cert-tests/data/enc2pkcs8.pem
gnutls-3.6.7/tests/cert-tests/data/encpkcs8.pem
gnutls-3.6.7/tests/cert-tests/data/full.p7b
gnutls-3.6.7/tests/cert-tests/data/full.p7b.out
gnutls-3.6.7/tests/cert-tests/data/funny-spacing.pem
gnutls-3.6.7/tests/cert-tests/data/gost-cert-nogost.pem
gnutls-3.6.7/tests/cert-tests/data/gost-cert.pem
gnutls-3.6.7/tests/cert-tests/data/gost01.p12
gnutls-3.6.7/tests/cert-tests/data/gost12-2.p12
gnutls-3.6.7/tests/cert-tests/data/gost12.p12
gnutls-3.6.7/tests/cert-tests/data/gost94-cert.pem
gnutls-3.6.7/tests/cert-tests/data/inhibit-anypolicy.pem
gnutls-3.6.7/tests/cert-tests/data/invalid-date-day.der
gnutls-3.6.7/tests/cert-tests/data/invalid-date-hour.der
gnutls-3.6.7/tests/cert-tests/data/invalid-date-mins.der
gnutls-3.6.7/tests/cert-tests/data/invalid-date-month.der
gnutls-3.6.7/tests/cert-tests/data/invalid-date-secs.der
gnutls-3.6.7/tests/cert-tests/data/invalid-sig.pem
gnutls-3.6.7/tests/cert-tests/data/invalid-sig2.pem
gnutls-3.6.7/tests/cert-tests/data/invalid-sig3.pem
gnutls-3.6.7/tests/cert-tests/data/invalid-sig4.pem
gnutls-3.6.7/tests/cert-tests/data/invalid-sig4.pem~
gnutls-3.6.7/tests/cert-tests/data/invalid-sig5.pem
gnutls-3.6.7/tests/cert-tests/data/key-ca-1234.p8
gnutls-3.6.7/tests/cert-tests/data/key-ca-dsa.pem
gnutls-3.6.7/tests/cert-tests/data/key-ca-empty.p8
gnutls-3.6.7/tests/cert-tests/data/key-ca-null.p8
gnutls-3.6.7/tests/cert-tests/data/key-ca.pem
gnutls-3.6.7/tests/cert-tests/data/key-corpus-rc2-1.p12
gnutls-3.6.7/tests/cert-tests/data/key-corpus-rc2-1.p12.out
gnutls-3.6.7/tests/cert-tests/data/key-corpus-rc2-2.p12
gnutls-3.6.7/tests/cert-tests/data/key-corpus-rc2-3.p12
gnutls-3.6.7/tests/cert-tests/data/key-dsa.pem
gnutls-3.6.7/tests/cert-tests/data/key-ecc.p8
gnutls-3.6.7/tests/cert-tests/data/key-ecc.pem
gnutls-3.6.7/tests/cert-tests/data/key-gost01-2-enc.p8
gnutls-3.6.7/tests/cert-tests/data/key-gost01-2-enc.p8.txt
gnutls-3.6.7/tests/cert-tests/data/key-gost01-2.p8
gnutls-3.6.7/tests/cert-tests/data/key-gost01-2.p8.txt
gnutls-3.6.7/tests/cert-tests/data/key-gost01.p8
gnutls-3.6.7/tests/cert-tests/data/key-gost01.p8.txt
gnutls-3.6.7/tests/cert-tests/data/key-gost12-256-2-enc.p8
gnutls-3.6.7/tests/cert-tests/data/key-gost12-256-2-enc.p8.txt
gnutls-3.6.7/tests/cert-tests/data/key-gost12-256-2.p8
gnutls-3.6.7/tests/cert-tests/data/key-gost12-256-2.p8.txt
gnutls-3.6.7/tests/cert-tests/data/key-gost12-256.p8
gnutls-3.6.7/tests/cert-tests/data/key-gost12-256.p8.txt
gnutls-3.6.7/tests/cert-tests/data/key-gost12-512.p8
gnutls-3.6.7/tests/cert-tests/data/key-illegal-rsa-pss.pem
gnutls-3.6.7/tests/cert-tests/data/key-illegal.pem
gnutls-3.6.7/tests/cert-tests/data/key-invalid1.der
gnutls-3.6.7/tests/cert-tests/data/key-invalid2.der
gnutls-3.6.7/tests/cert-tests/data/key-invalid3.der
gnutls-3.6.7/tests/cert-tests/data/key-invalid4.der
gnutls-3.6.7/tests/cert-tests/data/key-invalid5.der
gnutls-3.6.7/tests/cert-tests/data/key-invalid6.der
gnutls-3.6.7/tests/cert-tests/data/key-rsa-pss-raw.pem
gnutls-3.6.7/tests/cert-tests/data/key-rsa-pss.pem
gnutls-3.6.7/tests/cert-tests/data/key-subca-dsa.pem
gnutls-3.6.7/tests/cert-tests/data/key-subca.pem
gnutls-3.6.7/tests/cert-tests/data/key-subsubca.pem
gnutls-3.6.7/tests/cert-tests/data/key-user.pem
gnutls-3.6.7/tests/cert-tests/data/key-utf8-1.p12
gnutls-3.6.7/tests/cert-tests/data/key-utf8-2.p12
gnutls-3.6.7/tests/cert-tests/data/long-dns.pem
gnutls-3.6.7/tests/cert-tests/data/long-oids.pem
gnutls-3.6.7/tests/cert-tests/data/long-oids.pem~
gnutls-3.6.7/tests/cert-tests/data/long-serial.pem
gnutls-3.6.7/tests/cert-tests/data/mac-sha512.p12
gnutls-3.6.7/tests/cert-tests/data/mem-leak.p12
gnutls-3.6.7/tests/cert-tests/data/multi-value-dn.pem
gnutls-3.6.7/tests/cert-tests/data/name-constraints-ip.pem
gnutls-3.6.7/tests/cert-tests/data/name-constraints-ip2.pem
gnutls-3.6.7/tests/cert-tests/data/no-ca-or-pathlen.pem
gnutls-3.6.7/tests/cert-tests/data/no-salt.p12
gnutls-3.6.7/tests/cert-tests/data/noclient.p12
gnutls-3.6.7/tests/cert-tests/data/openpgp-invalid10.pub
gnutls-3.6.7/tests/cert-tests/data/openpgp-invalid11.pub
gnutls-3.6.7/tests/cert-tests/data/openpgp-invalid9.pub
gnutls-3.6.7/tests/cert-tests/data/openssl-3des.p8
gnutls-3.6.7/tests/cert-tests/data/openssl-3des.p8.txt
gnutls-3.6.7/tests/cert-tests/data/openssl-aes128.p8
gnutls-3.6.7/tests/cert-tests/data/openssl-aes128.p8.txt
gnutls-3.6.7/tests/cert-tests/data/openssl-aes256.p8
gnutls-3.6.7/tests/cert-tests/data/openssl-aes256.p8.txt
gnutls-3.6.7/tests/cert-tests/data/openssl-invalid-time-format.pem
gnutls-3.6.7/tests/cert-tests/data/openssl-key-ecc.p8
gnutls-3.6.7/tests/cert-tests/data/openssl-keyid.p7b
gnutls-3.6.7/tests/cert-tests/data/openssl-keyid.p7b.out
gnutls-3.6.7/tests/cert-tests/data/openssl.p12
gnutls-3.6.7/tests/cert-tests/data/openssl.p7b
gnutls-3.6.7/tests/cert-tests/data/openssl.p7b.out
gnutls-3.6.7/tests/cert-tests/data/p7-combined.out
gnutls-3.6.7/tests/cert-tests/data/p8key-illegal.pem
gnutls-3.6.7/tests/cert-tests/data/pbes1-no-salt.p12
gnutls-3.6.7/tests/cert-tests/data/pkcs1-pad-broken.pem
gnutls-3.6.7/tests/cert-tests/data/pkcs1-pad-broken2.pem
gnutls-3.6.7/tests/cert-tests/data/pkcs1-pad-broken3.pem
gnutls-3.6.7/tests/cert-tests/data/pkcs1-pad-ok.pem
gnutls-3.6.7/tests/cert-tests/data/pkcs1-pad-ok2.pem
gnutls-3.6.7/tests/cert-tests/data/pkcs12_2certs.p12
gnutls-3.6.7/tests/cert-tests/data/pkcs12_5certs.p12
gnutls-3.6.7/tests/cert-tests/data/pkcs7-cat-ca.pem
gnutls-3.6.7/tests/cert-tests/data/pkcs7-cat.p7
gnutls-3.6.7/tests/cert-tests/data/pkcs7-chain-endcert-key.pem
gnutls-3.6.7/tests/cert-tests/data/pkcs7-chain-root.pem
gnutls-3.6.7/tests/cert-tests/data/pkcs7-chain.pem
gnutls-3.6.7/tests/cert-tests/data/pkcs7-detached.txt
gnutls-3.6.7/tests/cert-tests/data/pkcs7-eddsa-sig.p7s
gnutls-3.6.7/tests/cert-tests/data/pkcs7.smime
gnutls-3.6.7/tests/cert-tests/data/pkcs8-eddsa.pem
gnutls-3.6.7/tests/cert-tests/data/pkcs8-eddsa.pem.txt
gnutls-3.6.7/tests/cert-tests/data/pkcs8-invalid1.der
gnutls-3.6.7/tests/cert-tests/data/pkcs8-invalid10.der
gnutls-3.6.7/tests/cert-tests/data/pkcs8-invalid11.der
gnutls-3.6.7/tests/cert-tests/data/pkcs8-invalid2.der
gnutls-3.6.7/tests/cert-tests/data/pkcs8-invalid3.der
gnutls-3.6.7/tests/cert-tests/data/pkcs8-invalid4.der
gnutls-3.6.7/tests/cert-tests/data/pkcs8-invalid5.der
gnutls-3.6.7/tests/cert-tests/data/pkcs8-invalid6.der
gnutls-3.6.7/tests/cert-tests/data/pkcs8-invalid7.der
gnutls-3.6.7/tests/cert-tests/data/pkcs8-invalid8.der
gnutls-3.6.7/tests/cert-tests/data/pkcs8-invalid9.der
gnutls-3.6.7/tests/cert-tests/data/pkcs8-pbes1-des-md5.pem
gnutls-3.6.7/tests/cert-tests/data/pkcs8-pbes2-sha256.pem
gnutls-3.6.7/tests/cert-tests/data/privkey1.pem
gnutls-3.6.7/tests/cert-tests/data/privkey2.pem
gnutls-3.6.7/tests/cert-tests/data/privkey3.pem
gnutls-3.6.7/tests/cert-tests/data/provable-dsa2048-fips.pem
gnutls-3.6.7/tests/cert-tests/data/provable-dsa2048.pem
gnutls-3.6.7/tests/cert-tests/data/provable2048.pem
gnutls-3.6.7/tests/cert-tests/data/provable3072.pem
gnutls-3.6.7/tests/cert-tests/data/pubkey-ecc256.pem
gnutls-3.6.7/tests/cert-tests/data/pubkey-eddsa.pem
gnutls-3.6.7/tests/cert-tests/data/rfc4134-4.5.p7b
gnutls-3.6.7/tests/cert-tests/data/rfc4134-ca-rsa.pem
gnutls-3.6.7/tests/cert-tests/data/rfc4490.p7b
gnutls-3.6.7/tests/cert-tests/data/rfc4490.p7b.out
gnutls-3.6.7/tests/cert-tests/data/selfsigs/
gnutls-3.6.7/tests/cert-tests/data/selfsigs/alice-mallory-badsig18.pub
gnutls-3.6.7/tests/cert-tests/data/selfsigs/alice-mallory-irrelevantsig.pub
gnutls-3.6.7/tests/cert-tests/data/selfsigs/alice-mallory-nosig18.pub
gnutls-3.6.7/tests/cert-tests/data/selfsigs/alice.pub
gnutls-3.6.7/tests/cert-tests/data/sha256.p12
gnutls-3.6.7/tests/cert-tests/data/single-ca.p7b
gnutls-3.6.7/tests/cert-tests/data/single-ca.p7b.out
gnutls-3.6.7/tests/cert-tests/data/srv-public-127.0.0.1-signed.gpg
gnutls-3.6.7/tests/cert-tests/data/srv-public-all-signed.gpg
gnutls-3.6.7/tests/cert-tests/data/srv-public-localhost-signed.gpg
gnutls-3.6.7/tests/cert-tests/data/srv-public.gpg
gnutls-3.6.7/tests/cert-tests/data/srv-secret.gpg
gnutls-3.6.7/tests/cert-tests/data/subpkt-leak.pub
gnutls-3.6.7/tests/cert-tests/data/template-crq.pem
gnutls-3.6.7/tests/cert-tests/data/template-date.pem
gnutls-3.6.7/tests/cert-tests/data/template-dates-after2038.pem
gnutls-3.6.7/tests/cert-tests/data/template-dn.pem
gnutls-3.6.7/tests/cert-tests/data/template-generalized.pem
gnutls-3.6.7/tests/cert-tests/data/template-krb5name-full.pem
gnutls-3.6.7/tests/cert-tests/data/template-krb5name.pem
gnutls-3.6.7/tests/cert-tests/data/template-long-dns-crq.pem
gnutls-3.6.7/tests/cert-tests/data/template-nc.pem
gnutls-3.6.7/tests/cert-tests/data/template-othername-xmpp.pem
gnutls-3.6.7/tests/cert-tests/data/template-othername.pem
gnutls-3.6.7/tests/cert-tests/data/template-overflow.pem
gnutls-3.6.7/tests/cert-tests/data/template-overflow2.pem
gnutls-3.6.7/tests/cert-tests/data/template-rsa-sha3-224.pem
gnutls-3.6.7/tests/cert-tests/data/template-rsa-sha3-256.pem
gnutls-3.6.7/tests/cert-tests/data/template-rsa-sha3-384.pem
gnutls-3.6.7/tests/cert-tests/data/template-rsa-sha3-512.pem
gnutls-3.6.7/tests/cert-tests/data/template-test-ecc.key
gnutls-3.6.7/tests/cert-tests/data/template-test.key
gnutls-3.6.7/tests/cert-tests/data/template-test.pem
gnutls-3.6.7/tests/cert-tests/data/template-tlsfeature.csr
gnutls-3.6.7/tests/cert-tests/data/template-tlsfeature.pem
gnutls-3.6.7/tests/cert-tests/data/template-unique.pem
gnutls-3.6.7/tests/cert-tests/data/template-utf8.pem
gnutls-3.6.7/tests/cert-tests/data/test-null.p12
gnutls-3.6.7/tests/cert-tests/data/truncated.pub
gnutls-3.6.7/tests/cert-tests/data/unclient.p12
gnutls-3.6.7/tests/cert-tests/data/unencpkcs8.pem
gnutls-3.6.7/tests/cert-tests/data/userid.pem
gnutls-3.6.7/tests/cert-tests/data/very-long-dn.pem
gnutls-3.6.7/tests/cert-tests/data/x509-v1-with-iid.pem
gnutls-3.6.7/tests/cert-tests/data/x509-v1-with-sid.pem
gnutls-3.6.7/tests/cert-tests/data/x509-v3-with-fractional-time.pem
gnutls-3.6.7/tests/cert-tests/data/x509-with-zero-version.pem
gnutls-3.6.7/tests/cert-tests/data/xmpp-othername.pem
gnutls-3.6.7/tests/cert-tests/dsa
gnutls-3.6.7/tests/cert-tests/ecdsa
gnutls-3.6.7/tests/cert-tests/email
gnutls-3.6.7/tests/cert-tests/email-certs/
gnutls-3.6.7/tests/cert-tests/email-certs/chain.exclude.test.example.com
gnutls-3.6.7/tests/cert-tests/email-certs/chain.invalid.example.com
gnutls-3.6.7/tests/cert-tests/email-certs/chain.test.example.com
gnutls-3.6.7/tests/cert-tests/email-certs/chain.test.example.com-2
gnutls-3.6.7/tests/cert-tests/gost
gnutls-3.6.7/tests/cert-tests/illegal-rsa
gnutls-3.6.7/tests/cert-tests/inhibit-anypolicy
gnutls-3.6.7/tests/cert-tests/invalid-sig
gnutls-3.6.7/tests/cert-tests/key-id
gnutls-3.6.7/tests/cert-tests/key-invalid
gnutls-3.6.7/tests/cert-tests/krb5-test
gnutls-3.6.7/tests/cert-tests/md5-test
gnutls-3.6.7/tests/cert-tests/name-constraints
gnutls-3.6.7/tests/cert-tests/othername-test
gnutls-3.6.7/tests/cert-tests/pathlen
gnutls-3.6.7/tests/cert-tests/pem-decoding
gnutls-3.6.7/tests/cert-tests/pkcs1-pad
gnutls-3.6.7/tests/cert-tests/pkcs12
gnutls-3.6.7/tests/cert-tests/pkcs12-corner-cases
gnutls-3.6.7/tests/cert-tests/pkcs12-encode
gnutls-3.6.7/tests/cert-tests/pkcs12-gost
gnutls-3.6.7/tests/cert-tests/pkcs12-utf8
gnutls-3.6.7/tests/cert-tests/pkcs7
gnutls-3.6.7/tests/cert-tests/pkcs7-broken-sigs
gnutls-3.6.7/tests/cert-tests/pkcs7-cat
gnutls-3.6.7/tests/cert-tests/pkcs7-constraints
gnutls-3.6.7/tests/cert-tests/pkcs7-constraints2
gnutls-3.6.7/tests/cert-tests/pkcs7-eddsa
gnutls-3.6.7/tests/cert-tests/pkcs7-list-sign
gnutls-3.6.7/tests/cert-tests/pkcs8
gnutls-3.6.7/tests/cert-tests/pkcs8-decode
gnutls-3.6.7/tests/cert-tests/pkcs8-eddsa
gnutls-3.6.7/tests/cert-tests/pkcs8-gost
gnutls-3.6.7/tests/cert-tests/pkcs8-invalid
gnutls-3.6.7/tests/cert-tests/privkey-import
gnutls-3.6.7/tests/cert-tests/provable-dh
gnutls-3.6.7/tests/cert-tests/provable-dh-default
gnutls-3.6.7/tests/cert-tests/provable-privkey
gnutls-3.6.7/tests/cert-tests/provable-privkey-dsa2048
gnutls-3.6.7/tests/cert-tests/provable-privkey-gen-default
gnutls-3.6.7/tests/cert-tests/provable-privkey-rsa2048
gnutls-3.6.7/tests/cert-tests/rsa-pss-pad
gnutls-3.6.7/tests/cert-tests/sha2-dsa-test
gnutls-3.6.7/tests/cert-tests/sha2-test
gnutls-3.6.7/tests/cert-tests/sha3-test
gnutls-3.6.7/tests/cert-tests/smime
gnutls-3.6.7/tests/cert-tests/suppressions.valgrind
gnutls-3.6.7/tests/cert-tests/template-exts-test
gnutls-3.6.7/tests/cert-tests/template-test
gnutls-3.6.7/tests/cert-tests/templates/
gnutls-3.6.7/tests/cert-tests/templates/arb-extensions.tmpl
gnutls-3.6.7/tests/cert-tests/templates/crit-extensions.tmpl
gnutls-3.6.7/tests/cert-tests/templates/inhibit-anypolicy.tmpl
gnutls-3.6.7/tests/cert-tests/templates/template-crq.tmpl
gnutls-3.6.7/tests/cert-tests/templates/template-date.tmpl
gnutls-3.6.7/tests/cert-tests/templates/template-dates-after2038.tmpl
gnutls-3.6.7/tests/cert-tests/templates/template-dn-err.tmpl
gnutls-3.6.7/tests/cert-tests/templates/template-dn.tmpl
gnutls-3.6.7/tests/cert-tests/templates/template-generalized.tmpl
gnutls-3.6.7/tests/cert-tests/templates/template-krb5name.tmpl
gnutls-3.6.7/tests/cert-tests/templates/template-long-dns.tmpl
gnutls-3.6.7/tests/cert-tests/templates/template-long-serial.tmpl
gnutls-3.6.7/tests/cert-tests/templates/template-nc.tmpl
gnutls-3.6.7/tests/cert-tests/templates/template-othername-xmpp.tmpl
gnutls-3.6.7/tests/cert-tests/templates/template-othername.tmpl
gnutls-3.6.7/tests/cert-tests/templates/template-overflow.tmpl
gnutls-3.6.7/tests/cert-tests/templates/template-overflow2.tmpl
gnutls-3.6.7/tests/cert-tests/templates/template-test.tmpl
gnutls-3.6.7/tests/cert-tests/templates/template-tlsfeature-crq.tmpl
gnutls-3.6.7/tests/cert-tests/templates/template-tlsfeature.tmpl
gnutls-3.6.7/tests/cert-tests/templates/template-unique.tmpl
gnutls-3.6.7/tests/cert-tests/templates/template-utf8.tmpl
gnutls-3.6.7/tests/cert-tests/tlsfeature-test
gnutls-3.6.7/tests/cert-tests/userid
gnutls-3.6.7/tests/cert.c
gnutls-3.6.7/tests/cert_verify_inv_utf8.c
gnutls-3.6.7/tests/certificate_set_x509_crl.c
gnutls-3.6.7/tests/certs/
gnutls-3.6.7/tests/certs/ca-cert-ecc.pem
gnutls-3.6.7/tests/certs/ca-ecc.pem
gnutls-3.6.7/tests/certs/cert-ecc.pem
gnutls-3.6.7/tests/certs/cert-ecc256.pem
gnutls-3.6.7/tests/certs/cert-ecc384.pem
gnutls-3.6.7/tests/certs/cert-ecc521.pem
gnutls-3.6.7/tests/certs/cert-ed25519.pem
gnutls-3.6.7/tests/certs/cert-rsa-2432.pem
gnutls-3.6.7/tests/certs/ecc.pem
gnutls-3.6.7/tests/certs/ecc256.pem
gnutls-3.6.7/tests/certs/ecc384.pem
gnutls-3.6.7/tests/certs/ecc521.pem
gnutls-3.6.7/tests/certs/ed25519.pem
gnutls-3.6.7/tests/certs/rawpk_priv.pem
gnutls-3.6.7/tests/certs/rawpk_pub.pem
gnutls-3.6.7/tests/certs/rsa-2432.pem
gnutls-3.6.7/tests/certs-interesting/
gnutls-3.6.7/tests/certs-interesting/README.md
gnutls-3.6.7/tests/certs-interesting/cert1.der
gnutls-3.6.7/tests/certs-interesting/cert1.der.err
gnutls-3.6.7/tests/certs-interesting/cert2.der
gnutls-3.6.7/tests/certs-interesting/cert2.der.err
gnutls-3.6.7/tests/certs-interesting/cert3.der
gnutls-3.6.7/tests/certs-interesting/cert3.der.err
gnutls-3.6.7/tests/certs-interesting/cert4.der
gnutls-3.6.7/tests/certs-interesting/cert5.der
gnutls-3.6.7/tests/certs-interesting/cert5.der.err
gnutls-3.6.7/tests/certs-interesting/cert6.der
gnutls-3.6.7/tests/certs-interesting/cert6.der.err
gnutls-3.6.7/tests/certs-interesting/cert7.der
gnutls-3.6.7/tests/certs-interesting/cert8.der
gnutls-3.6.7/tests/certs-interesting/cert9.der
gnutls-3.6.7/tests/certtool-pkcs11.sh
gnutls-3.6.7/tests/certuniqueid.c
gnutls-3.6.7/tests/chainverify-unsorted.c
gnutls-3.6.7/tests/chainverify.c
gnutls-3.6.7/tests/cipher-listings.sh
gnutls-3.6.7/tests/cipher-neg-common.c
gnutls-3.6.7/tests/client-fastopen.c
gnutls-3.6.7/tests/client-sign-md5-rep.c
gnutls-3.6.7/tests/client_dsa_key.c
gnutls-3.6.7/tests/cmocka-common.h
gnutls-3.6.7/tests/common-cert-key-exchange.c
gnutls-3.6.7/tests/common-cert-key-exchange.h
gnutls-3.6.7/tests/common-key-tests.h
gnutls-3.6.7/tests/conv-utf8.c
gnutls-3.6.7/tests/crl-basic.c
gnutls-3.6.7/tests/crl_apis.c
gnutls-3.6.7/tests/crlverify.c
gnutls-3.6.7/tests/crq-basic.c
gnutls-3.6.7/tests/crq_apis.c
gnutls-3.6.7/tests/crq_key_id.c
gnutls-3.6.7/tests/crt_apis.c
gnutls-3.6.7/tests/crt_inv_write.c
gnutls-3.6.7/tests/crt_type-neg-common.c
gnutls-3.6.7/tests/custom-urls-override.c
gnutls-3.6.7/tests/custom-urls.c
gnutls-3.6.7/tests/cve-2008-4989.c
gnutls-3.6.7/tests/cve-2009-1415.c
gnutls-3.6.7/tests/cve-2009-1416.c
gnutls-3.6.7/tests/dane-strcodes.c
gnutls-3.6.7/tests/dane.c
gnutls-3.6.7/tests/danetool.sh
gnutls-3.6.7/tests/data/
gnutls-3.6.7/tests/data/large-cert.pem
gnutls-3.6.7/tests/data/listings-DTLS1.0
gnutls-3.6.7/tests/data/listings-SSL3.0
gnutls-3.6.7/tests/data/listings-SSL3.0-TLS1.1
gnutls-3.6.7/tests/data/listings-TLS1.0
gnutls-3.6.7/tests/data/listings-TLS1.1
gnutls-3.6.7/tests/data/listings-legacy1
gnutls-3.6.7/tests/data/listings-legacy2
gnutls-3.6.7/tests/data/listings-legacy3
gnutls-3.6.7/tests/data/listings-legacy4
gnutls-3.6.7/tests/data/long.crl
gnutls-3.6.7/tests/data/long.pem
gnutls-3.6.7/tests/data/pkcs7-cat-ca.pem
gnutls-3.6.7/tests/data/test1.cat
gnutls-3.6.7/tests/data/test1.cat.data
gnutls-3.6.7/tests/data/test1.cat.out
gnutls-3.6.7/tests/data/test2.cat
gnutls-3.6.7/tests/data/test2.cat.data
gnutls-3.6.7/tests/data/test2.cat.out
gnutls-3.6.7/tests/dh-params.c
gnutls-3.6.7/tests/dhepskself.c
gnutls-3.6.7/tests/dhex509self.c
gnutls-3.6.7/tests/dn.c
gnutls-3.6.7/tests/dn2.c
gnutls-3.6.7/tests/dss-sig-val.c
gnutls-3.6.7/tests/dtls/
gnutls-3.6.7/tests/dtls/dtls
gnutls-3.6.7/tests/dtls/dtls-resume
gnutls-3.6.7/tests/dtls/dtls-stress.c
gnutls-3.6.7/tests/dtls-client-with-seccomp.c
gnutls-3.6.7/tests/dtls-etm.c
gnutls-3.6.7/tests/dtls-handshake-versions.c
gnutls-3.6.7/tests/dtls-max-record.c
gnutls-3.6.7/tests/dtls-pthread.c
gnutls-3.6.7/tests/dtls-rehandshake-anon.c
gnutls-3.6.7/tests/dtls-rehandshake-cert-2.c
gnutls-3.6.7/tests/dtls-rehandshake-cert-3.c
gnutls-3.6.7/tests/dtls-rehandshake-cert.c
gnutls-3.6.7/tests/dtls-repro-20170915.c
gnutls-3.6.7/tests/dtls-session-ticket-lost.c
gnutls-3.6.7/tests/dtls-sliding-window.c
gnutls-3.6.7/tests/dtls-with-seccomp.c
gnutls-3.6.7/tests/dtls1-2-mtu-check.c
gnutls-3.6.7/tests/dtls10-cert-key-exchange.c
gnutls-3.6.7/tests/dtls12-cert-key-exchange.c
gnutls-3.6.7/tests/duplicate-extensions.c
gnutls-3.6.7/tests/eagain-auto-auth.c
gnutls-3.6.7/tests/eagain-common.h
gnutls-3.6.7/tests/eagain.c
gnutls-3.6.7/tests/empty_retrieve_function.c
gnutls-3.6.7/tests/fallback-scsv.c
gnutls-3.6.7/tests/fastopen.sh
gnutls-3.6.7/tests/fips-mode-pthread.c
gnutls-3.6.7/tests/fips-override-test.c
gnutls-3.6.7/tests/fips-test.c
gnutls-3.6.7/tests/global-init-override.c
gnutls-3.6.7/tests/global-init.c
gnutls-3.6.7/tests/gnutls-asan.supp
gnutls-3.6.7/tests/gnutls-cli-debug.sh
gnutls-3.6.7/tests/gnutls-cli-invalid-crl.sh
gnutls-3.6.7/tests/gnutls-cli-resume.sh
gnutls-3.6.7/tests/gnutls-cli-save-data.sh
gnutls-3.6.7/tests/gnutls-cli-self-signed.sh
gnutls-3.6.7/tests/gnutls-strcodes.c
gnutls-3.6.7/tests/gnutls_ext_raw_parse.c
gnutls-3.6.7/tests/gnutls_ext_raw_parse_dtls.c
gnutls-3.6.7/tests/gnutls_hmac_fast.c
gnutls-3.6.7/tests/gnutls_ocsp_resp_list_import2.c
gnutls-3.6.7/tests/gnutls_record_overhead.c
gnutls-3.6.7/tests/gnutls_session_set_id.c
gnutls-3.6.7/tests/gnutls_x509_crq_sign.c
gnutls-3.6.7/tests/gnutls_x509_crt_list_import.c
gnutls-3.6.7/tests/gnutls_x509_crt_sign.c
gnutls-3.6.7/tests/gnutls_x509_privkey_import.c
gnutls-3.6.7/tests/handshake-false-start.c
gnutls-3.6.7/tests/handshake-large-cert.c
gnutls-3.6.7/tests/handshake-large-packet.c
gnutls-3.6.7/tests/handshake-timeout.c
gnutls-3.6.7/tests/handshake-versions.c
gnutls-3.6.7/tests/hex.c
gnutls-3.6.7/tests/hex.h
gnutls-3.6.7/tests/hostname-check-utf8.c
gnutls-3.6.7/tests/hostname-check.c
gnutls-3.6.7/tests/infoaccess.c
gnutls-3.6.7/tests/init_fds.c
gnutls-3.6.7/tests/init_roundtrip.c
gnutls-3.6.7/tests/insecure_key.c
gnutls-3.6.7/tests/ip-check.c
gnutls-3.6.7/tests/ip-utils.c
gnutls-3.6.7/tests/key-export-pkcs8.c
gnutls-3.6.7/tests/key-import-export.c
gnutls-3.6.7/tests/key-material-dtls.c
gnutls-3.6.7/tests/key-material-set-dtls.c
gnutls-3.6.7/tests/key-openssl.c
gnutls-3.6.7/tests/key-usage-ecdhe-rsa.c
gnutls-3.6.7/tests/key-usage-rsa.c
gnutls-3.6.7/tests/keylog-env.c
gnutls-3.6.7/tests/logfile-option.sh
gnutls-3.6.7/tests/long-crl.sh
gnutls-3.6.7/tests/long-session-id.c
gnutls-3.6.7/tests/memset.c
gnutls-3.6.7/tests/mini-alignment.c
gnutls-3.6.7/tests/mini-alpn.c
gnutls-3.6.7/tests/mini-chain-unsorted.c
gnutls-3.6.7/tests/mini-dtls-discard.c
gnutls-3.6.7/tests/mini-dtls-fork.c
gnutls-3.6.7/tests/mini-dtls-heartbeat.c
gnutls-3.6.7/tests/mini-dtls-hello-verify-48.c
gnutls-3.6.7/tests/mini-dtls-hello-verify.c
gnutls-3.6.7/tests/mini-dtls-large.c
gnutls-3.6.7/tests/mini-dtls-lowmtu.c
gnutls-3.6.7/tests/mini-dtls-mtu.c
gnutls-3.6.7/tests/mini-dtls-record-asym.c
gnutls-3.6.7/tests/mini-dtls-record.c
gnutls-3.6.7/tests/mini-dtls-srtp.c
gnutls-3.6.7/tests/mini-dtls0-9.c
gnutls-3.6.7/tests/mini-eagain-dtls.c
gnutls-3.6.7/tests/mini-emsgsize-dtls.c
gnutls-3.6.7/tests/mini-global-load.c
gnutls-3.6.7/tests/mini-key-material.c
gnutls-3.6.7/tests/mini-loss-time.c
gnutls-3.6.7/tests/mini-overhead.c
gnutls-3.6.7/tests/mini-record-2.c
gnutls-3.6.7/tests/mini-record-failure.c
gnutls-3.6.7/tests/mini-record-range.c
gnutls-3.6.7/tests/mini-record.c
gnutls-3.6.7/tests/mini-server-name.c
gnutls-3.6.7/tests/mini-session-verify-function.c
gnutls-3.6.7/tests/mini-termination.c
gnutls-3.6.7/tests/mini-tls-nonblock.c
gnutls-3.6.7/tests/mini-x509-2.c
gnutls-3.6.7/tests/mini-x509-callbacks-intr.c
gnutls-3.6.7/tests/mini-x509-callbacks.c
gnutls-3.6.7/tests/mini-x509-cas.c
gnutls-3.6.7/tests/mini-x509-ipaddr.c
gnutls-3.6.7/tests/mini-x509.c
gnutls-3.6.7/tests/mpi.c
gnutls-3.6.7/tests/multi-alerts.c
gnutls-3.6.7/tests/naked-alerts.c
gnutls-3.6.7/tests/name-constraints-ip.c
gnutls-3.6.7/tests/name-constraints-merge.c
gnutls-3.6.7/tests/name-constraints.c
gnutls-3.6.7/tests/no-extensions.c
gnutls-3.6.7/tests/no-signal.c
gnutls-3.6.7/tests/nul-in-x509-names.c
gnutls-3.6.7/tests/null_retrieve_function.c
gnutls-3.6.7/tests/ocsp-common.h
gnutls-3.6.7/tests/ocsp-filename-memleak.c
gnutls-3.6.7/tests/ocsp-tests/
gnutls-3.6.7/tests/ocsp-tests/certs/
gnutls-3.6.7/tests/ocsp-tests/certs/ca.key
gnutls-3.6.7/tests/ocsp-tests/certs/ca.pem
gnutls-3.6.7/tests/ocsp-tests/certs/chain-akamai.com.pem
gnutls-3.6.7/tests/ocsp-tests/certs/chain-amazon.com-unsorted.pem
gnutls-3.6.7/tests/ocsp-tests/certs/chain-amazon.com.pem
gnutls-3.6.7/tests/ocsp-tests/certs/ocsp-akamai.com.der
gnutls-3.6.7/tests/ocsp-tests/certs/ocsp-amazon.com.der
gnutls-3.6.7/tests/ocsp-tests/certs/ocsp-server.key
gnutls-3.6.7/tests/ocsp-tests/certs/ocsp-server.pem
gnutls-3.6.7/tests/ocsp-tests/certs/ocsp-staple-unrelated.der
gnutls-3.6.7/tests/ocsp-tests/certs/ocsp_index.txt
gnutls-3.6.7/tests/ocsp-tests/certs/ocsp_index.txt.attr
gnutls-3.6.7/tests/ocsp-tests/certs/server_bad.key
gnutls-3.6.7/tests/ocsp-tests/certs/server_bad.template
gnutls-3.6.7/tests/ocsp-tests/certs/server_good.key
gnutls-3.6.7/tests/ocsp-tests/certs/server_good.template
gnutls-3.6.7/tests/ocsp-tests/ocsp-load-chain
gnutls-3.6.7/tests/ocsp-tests/ocsp-must-staple-connection
gnutls-3.6.7/tests/ocsp-tests/ocsp-test
gnutls-3.6.7/tests/ocsp-tests/ocsp-tls-connection
gnutls-3.6.7/tests/ocsp-tests/ocsptool
gnutls-3.6.7/tests/ocsp-tests/response1.der
gnutls-3.6.7/tests/ocsp-tests/response1.pem
gnutls-3.6.7/tests/ocsp-tests/response2.der
gnutls-3.6.7/tests/ocsp-tests/response2.pem
gnutls-3.6.7/tests/ocsp-tests/suppressions.valgrind
gnutls-3.6.7/tests/ocsp.c
gnutls-3.6.7/tests/oids.c
gnutls-3.6.7/tests/openssl.c
gnutls-3.6.7/tests/p11-kit-load.sh
gnutls-3.6.7/tests/p11-kit-trust-data/
gnutls-3.6.7/tests/p11-kit-trust-data/Example_Root_CA.p11-kit
gnutls-3.6.7/tests/p11-kit-trust-data/Example_Root_CA.pem
gnutls-3.6.7/tests/p11-kit-trust.sh
gnutls-3.6.7/tests/parse_ca.c
gnutls-3.6.7/tests/pcert-list.c
gnutls-3.6.7/tests/pkcs1-digest-info.c
gnutls-3.6.7/tests/pkcs11/
gnutls-3.6.7/tests/pkcs11/gnutls_pcert_list_import_x509_file.c
gnutls-3.6.7/tests/pkcs11/gnutls_x509_crt_list_import_url.c
gnutls-3.6.7/tests/pkcs11/list-tokens.c
gnutls-3.6.7/tests/pkcs11/pkcs11-cert-import-url-exts.c
gnutls-3.6.7/tests/pkcs11/pkcs11-cert-import-url4-exts.c
gnutls-3.6.7/tests/pkcs11/pkcs11-chainverify.c
gnutls-3.6.7/tests/pkcs11/pkcs11-combo.c
gnutls-3.6.7/tests/pkcs11/pkcs11-ec-privkey-test.c
gnutls-3.6.7/tests/pkcs11/pkcs11-eddsa-privkey-test.c
gnutls-3.6.7/tests/pkcs11/pkcs11-get-exts.c
gnutls-3.6.7/tests/pkcs11/pkcs11-get-issuer.c
gnutls-3.6.7/tests/pkcs11/pkcs11-get-raw-issuer-exts.c
gnutls-3.6.7/tests/pkcs11/pkcs11-import-url-privkey.c
gnutls-3.6.7/tests/pkcs11/pkcs11-import-with-pin.c
gnutls-3.6.7/tests/pkcs11/pkcs11-is-known.c
gnutls-3.6.7/tests/pkcs11/pkcs11-mechanisms.c
gnutls-3.6.7/tests/pkcs11/pkcs11-mock-ext.h
gnutls-3.6.7/tests/pkcs11/pkcs11-mock.c
gnutls-3.6.7/tests/pkcs11/pkcs11-mock.h
gnutls-3.6.7/tests/pkcs11/pkcs11-obj-import.c
gnutls-3.6.7/tests/pkcs11/pkcs11-obj-raw.c
gnutls-3.6.7/tests/pkcs11/pkcs11-pin-func.c
gnutls-3.6.7/tests/pkcs11/pkcs11-privkey-always-auth.c
gnutls-3.6.7/tests/pkcs11/pkcs11-privkey-export.c
gnutls-3.6.7/tests/pkcs11/pkcs11-privkey-fork-reinit.c
gnutls-3.6.7/tests/pkcs11/pkcs11-privkey-fork.c
gnutls-3.6.7/tests/pkcs11/pkcs11-privkey-generate.c
gnutls-3.6.7/tests/pkcs11/pkcs11-privkey-pthread.c
gnutls-3.6.7/tests/pkcs11/pkcs11-privkey-safenet-always-auth.c
gnutls-3.6.7/tests/pkcs11/pkcs11-privkey.c
gnutls-3.6.7/tests/pkcs11/pkcs11-pubkey-import-ecdsa.c
gnutls-3.6.7/tests/pkcs11/pkcs11-pubkey-import-rsa.c
gnutls-3.6.7/tests/pkcs11/pkcs11-pubkey-import.c
gnutls-3.6.7/tests/pkcs11/pkcs11-rsa-pss-privkey-test.c
gnutls-3.6.7/tests/pkcs11/pkcs11-token-raw.c
gnutls-3.6.7/tests/pkcs11/softhsm.h
gnutls-3.6.7/tests/pkcs11/tls-neg-pkcs11-key.c
gnutls-3.6.7/tests/pkcs12_encode.c
gnutls-3.6.7/tests/pkcs12_s2k.c
gnutls-3.6.7/tests/pkcs12_s2k_pem.c
gnutls-3.6.7/tests/pkcs12_simple.c
gnutls-3.6.7/tests/pkcs7-cat-parse.c
gnutls-3.6.7/tests/pkcs7-cat.sh
gnutls-3.6.7/tests/pkcs7-gen.c
gnutls-3.6.7/tests/pkcs7.c
gnutls-3.6.7/tests/pkcs8-key-decode-encrypted.c
gnutls-3.6.7/tests/pkcs8-key-decode.c
gnutls-3.6.7/tests/pkgconfig.sh
gnutls-3.6.7/tests/post-client-hello-change-prio.c
gnutls-3.6.7/tests/prf.c
gnutls-3.6.7/tests/priorities-groups.c
gnutls-3.6.7/tests/priorities.c
gnutls-3.6.7/tests/priority-init2.c
gnutls-3.6.7/tests/priority-mix.c
gnutls-3.6.7/tests/priority-set.c
gnutls-3.6.7/tests/priority-set2.c
gnutls-3.6.7/tests/privkey-keygen.c
gnutls-3.6.7/tests/privkey-verify-broken.c
gnutls-3.6.7/tests/psk-file.c
gnutls-3.6.7/tests/psk.passwd
gnutls-3.6.7/tests/pskself.c
gnutls-3.6.7/tests/psktool.sh
gnutls-3.6.7/tests/pubkey-import-export.c
gnutls-3.6.7/tests/random-art.c
gnutls-3.6.7/tests/rawpk-api.c
gnutls-3.6.7/tests/record-pad.c
gnutls-3.6.7/tests/record-retvals.c
gnutls-3.6.7/tests/record-sizes-range.c
gnutls-3.6.7/tests/record-sizes.c
gnutls-3.6.7/tests/record-timeouts.c
gnutls-3.6.7/tests/recv-data-before-handshake.c
gnutls-3.6.7/tests/rehandshake-ext-secret.c
gnutls-3.6.7/tests/rehandshake-switch-cert-allow.c
gnutls-3.6.7/tests/rehandshake-switch-cert-client-allow.c
gnutls-3.6.7/tests/rehandshake-switch-cert-client.c
gnutls-3.6.7/tests/rehandshake-switch-cert.c
gnutls-3.6.7/tests/rehandshake-switch-psk-id.c
gnutls-3.6.7/tests/rehandshake-switch-srp-id.c
gnutls-3.6.7/tests/resume-dtls.c
gnutls-3.6.7/tests/resume-lifetime.c
gnutls-3.6.7/tests/resume-with-false-start.c
gnutls-3.6.7/tests/resume-with-previous-stek.c
gnutls-3.6.7/tests/resume-with-record-size-limit.c
gnutls-3.6.7/tests/resume-with-stek-expiration.c
gnutls-3.6.7/tests/resume.c
gnutls-3.6.7/tests/rfc2253-escape-test
gnutls-3.6.7/tests/rng-fork.c
gnutls-3.6.7/tests/rng-no-onload.c
gnutls-3.6.7/tests/rng-op-key.c
gnutls-3.6.7/tests/rng-op-nonce.c
gnutls-3.6.7/tests/rng-op-random.c
gnutls-3.6.7/tests/rng-op.c
gnutls-3.6.7/tests/rng-pthread.c
gnutls-3.6.7/tests/rng-sigint.c
gnutls-3.6.7/tests/rsa-encrypt-decrypt.c
gnutls-3.6.7/tests/rsa-illegal-import.c
gnutls-3.6.7/tests/rsa-md5-collision/
gnutls-3.6.7/tests/rsa-md5-collision/README
gnutls-3.6.7/tests/rsa-md5-collision/colliding-chain-md5-1.pem
gnutls-3.6.7/tests/rsa-md5-collision/colliding-chain-md5-2.pem
gnutls-3.6.7/tests/rsa-md5-collision/rsa-md5-collision.sh
gnutls-3.6.7/tests/rsa-psk-cb.c
gnutls-3.6.7/tests/rsa-psk.c
gnutls-3.6.7/tests/rsa-rsa-pss.c
gnutls-3.6.7/tests/safe-renegotiation/
gnutls-3.6.7/tests/safe-renegotiation/README
gnutls-3.6.7/tests/safe-renegotiation/srn0.c
gnutls-3.6.7/tests/safe-renegotiation/srn1.c
gnutls-3.6.7/tests/safe-renegotiation/srn2.c
gnutls-3.6.7/tests/safe-renegotiation/srn3.c
gnutls-3.6.7/tests/safe-renegotiation/srn4.c
gnutls-3.6.7/tests/safe-renegotiation/srn5.c
gnutls-3.6.7/tests/sanity-cpp.cpp
gnutls-3.6.7/tests/scripts/
gnutls-3.6.7/tests/scripts/common.sh
gnutls-3.6.7/tests/scripts/starttls-common.sh
gnutls-3.6.7/tests/sec-params.c
gnutls-3.6.7/tests/seccomp.c
gnutls-3.6.7/tests/send-client-cert.c
gnutls-3.6.7/tests/send-data-before-handshake.c
gnutls-3.6.7/tests/serv-udp.sh
gnutls-3.6.7/tests/server-kx-neg-common.c
gnutls-3.6.7/tests/server-multi-keys.sh
gnutls-3.6.7/tests/server-sign-md5-rep.c
gnutls-3.6.7/tests/server_ecdsa_key.c
gnutls-3.6.7/tests/session-export-funcs.c
gnutls-3.6.7/tests/session-rdn-read.c
gnutls-3.6.7/tests/session-tickets-missing.c
gnutls-3.6.7/tests/session-tickets-ok.c
gnutls-3.6.7/tests/set-default-prio.c
gnutls-3.6.7/tests/set_key.c
gnutls-3.6.7/tests/set_key_utf8.c
gnutls-3.6.7/tests/set_known_dh_params_anon.c
gnutls-3.6.7/tests/set_known_dh_params_psk.c
gnutls-3.6.7/tests/set_known_dh_params_x509.c
gnutls-3.6.7/tests/set_pkcs12_cred.c
gnutls-3.6.7/tests/set_x509_key.c
gnutls-3.6.7/tests/set_x509_key_file-late.c
gnutls-3.6.7/tests/set_x509_key_file.c
gnutls-3.6.7/tests/set_x509_key_file_der.c
gnutls-3.6.7/tests/set_x509_key_file_legacy.c
gnutls-3.6.7/tests/set_x509_key_file_ocsp.c
gnutls-3.6.7/tests/set_x509_key_file_ocsp_multi2.c
gnutls-3.6.7/tests/set_x509_key_mem.c
gnutls-3.6.7/tests/set_x509_key_utf8.c
gnutls-3.6.7/tests/set_x509_ocsp_multi_invalid.c
gnutls-3.6.7/tests/set_x509_ocsp_multi_pem.c
gnutls-3.6.7/tests/set_x509_ocsp_multi_unknown.c
gnutls-3.6.7/tests/set_x509_pkcs12_key.c
gnutls-3.6.7/tests/setcredcrash.c
gnutls-3.6.7/tests/sign-is-secure.c
gnutls-3.6.7/tests/sign-pk-api.c
gnutls-3.6.7/tests/sign-verify-data.c
gnutls-3.6.7/tests/sign-verify-ed25519-rfc8080.c
gnutls-3.6.7/tests/sign-verify-ext.c
gnutls-3.6.7/tests/sign-verify-ext4.c
gnutls-3.6.7/tests/sign-verify.c
gnutls-3.6.7/tests/simple.c
gnutls-3.6.7/tests/slow/
gnutls-3.6.7/tests/slow/Makefile.am
gnutls-3.6.7/tests/slow/Makefile.in
gnutls-3.6.7/tests/slow/README
gnutls-3.6.7/tests/slow/cipher-api-test.c
gnutls-3.6.7/tests/slow/cipher-openssl-compat.c
gnutls-3.6.7/tests/slow/cipher-override.c
gnutls-3.6.7/tests/slow/cipher-override2.c
gnutls-3.6.7/tests/slow/cipher-test.c
gnutls-3.6.7/tests/slow/crypto.c
gnutls-3.6.7/tests/slow/gendh.c
gnutls-3.6.7/tests/slow/gnutls-asan.supp
gnutls-3.6.7/tests/slow/hash-large.c
gnutls-3.6.7/tests/slow/mac-override.c
gnutls-3.6.7/tests/slow/override-ciphers
gnutls-3.6.7/tests/slow/test-ciphers-api.sh
gnutls-3.6.7/tests/slow/test-ciphers-common.sh
gnutls-3.6.7/tests/slow/test-ciphers-openssl.sh
gnutls-3.6.7/tests/slow/test-ciphers.sh
gnutls-3.6.7/tests/slow/test-hash-large.sh
gnutls-3.6.7/tests/sni-hostname.sh
gnutls-3.6.7/tests/sni-resume.sh
gnutls-3.6.7/tests/spki-abstract.c
gnutls-3.6.7/tests/spki.c
gnutls-3.6.7/tests/srp.c
gnutls-3.6.7/tests/srpbase64.c
gnutls-3.6.7/tests/ssl2-hello.c
gnutls-3.6.7/tests/ssl30-cert-key-exchange.c
gnutls-3.6.7/tests/ssl30-cipher-neg.c
gnutls-3.6.7/tests/ssl30-server-kx-neg.c
gnutls-3.6.7/tests/starttls-ftp.sh
gnutls-3.6.7/tests/starttls-ftp.txt
gnutls-3.6.7/tests/starttls-lmtp.sh
gnutls-3.6.7/tests/starttls-lmtp.txt
gnutls-3.6.7/tests/starttls-nntp.sh
gnutls-3.6.7/tests/starttls-nntp.txt
gnutls-3.6.7/tests/starttls-pop3.sh
gnutls-3.6.7/tests/starttls-pop3.txt
gnutls-3.6.7/tests/starttls-sieve.sh
gnutls-3.6.7/tests/starttls-sieve.txt
gnutls-3.6.7/tests/starttls-smtp.sh
gnutls-3.6.7/tests/starttls-smtp.txt
gnutls-3.6.7/tests/starttls-xmpp.sh
gnutls-3.6.7/tests/starttls-xmpp.txt
gnutls-3.6.7/tests/starttls.sh
gnutls-3.6.7/tests/status-request-ext.c
gnutls-3.6.7/tests/status-request-missing.c
gnutls-3.6.7/tests/status-request-ok.c
gnutls-3.6.7/tests/status-request.c
gnutls-3.6.7/tests/str-idna.c
gnutls-3.6.7/tests/str-unicode.c
gnutls-3.6.7/tests/suite/
gnutls-3.6.7/tests/suite/Makefile.am
gnutls-3.6.7/tests/suite/Makefile.in
gnutls-3.6.7/tests/suite/README
gnutls-3.6.7/tests/suite/cbc-record-check.sh
gnutls-3.6.7/tests/suite/mini-record-timing.c
gnutls-3.6.7/tests/suite/params.dh
gnutls-3.6.7/tests/suite/prime-check.c
gnutls-3.6.7/tests/suite/rng.c
gnutls-3.6.7/tests/suite/testcompat-common
gnutls-3.6.7/tests/suite/testcompat-main-openssl
gnutls-3.6.7/tests/suite/testcompat-main-polarssl
gnutls-3.6.7/tests/suite/tls-fuzzer/
gnutls-3.6.7/tests/suite/tls-fuzzer/tls-fuzzer-common.sh
gnutls-3.6.7/tests/suppressions.valgrind
gnutls-3.6.7/tests/system-prio-file.c
gnutls-3.6.7/tests/system.prio
gnutls-3.6.7/tests/systemkey.sh
gnutls-3.6.7/tests/test-chains.h
gnutls-3.6.7/tests/testpkcs11-certs/
gnutls-3.6.7/tests/testpkcs11-certs/ca-tmpl
gnutls-3.6.7/tests/testpkcs11-certs/ca.crt
gnutls-3.6.7/tests/testpkcs11-certs/ca.key
gnutls-3.6.7/tests/testpkcs11-certs/client-tmpl
gnutls-3.6.7/tests/testpkcs11-certs/client.crt
gnutls-3.6.7/tests/testpkcs11-certs/client.key
gnutls-3.6.7/tests/testpkcs11-certs/server-tmpl
gnutls-3.6.7/tests/testpkcs11-certs/server.crt
gnutls-3.6.7/tests/testpkcs11-certs/server.key
gnutls-3.6.7/tests/testpkcs11.pkcs15
gnutls-3.6.7/tests/testpkcs11.sc-hsm
gnutls-3.6.7/tests/testpkcs11.sh
gnutls-3.6.7/tests/testpkcs11.softhsm
gnutls-3.6.7/tests/tls-client-with-seccomp.c
gnutls-3.6.7/tests/tls-crt_type-neg.c
gnutls-3.6.7/tests/tls-etm.c
gnutls-3.6.7/tests/tls-ext-not-in-dtls.c
gnutls-3.6.7/tests/tls-ext-register.c
gnutls-3.6.7/tests/tls-force-etm.c
gnutls-3.6.7/tests/tls-neg-ext-key.c
gnutls-3.6.7/tests/tls-neg-ext4-key.c
gnutls-3.6.7/tests/tls-pthread.c
gnutls-3.6.7/tests/tls-record-size-limit.c
gnutls-3.6.7/tests/tls-session-ext-override.c
gnutls-3.6.7/tests/tls-session-ext-register.c
gnutls-3.6.7/tests/tls-session-supplemental.c
gnutls-3.6.7/tests/tls-supplemental.c
gnutls-3.6.7/tests/tls-with-seccomp.c
gnutls-3.6.7/tests/tls10-cert-key-exchange.c
gnutls-3.6.7/tests/tls10-cipher-neg.c
gnutls-3.6.7/tests/tls10-prf.c
gnutls-3.6.7/tests/tls10-server-kx-neg.c
gnutls-3.6.7/tests/tls11-cert-key-exchange.c
gnutls-3.6.7/tests/tls11-cipher-neg.c
gnutls-3.6.7/tests/tls11-server-kx-neg.c
gnutls-3.6.7/tests/tls12-anon-upgrade.c
gnutls-3.6.7/tests/tls12-cert-key-exchange.c
gnutls-3.6.7/tests/tls12-cipher-neg.c
gnutls-3.6.7/tests/tls12-ffdhe.c
gnutls-3.6.7/tests/tls12-invalid-key-exchanges.c
gnutls-3.6.7/tests/tls12-max-record.c
gnutls-3.6.7/tests/tls12-prf.c
gnutls-3.6.7/tests/tls12-rehandshake-cert-2.c
gnutls-3.6.7/tests/tls12-rehandshake-cert-3.c
gnutls-3.6.7/tests/tls12-rehandshake-cert-auto.c
gnutls-3.6.7/tests/tls12-rehandshake-cert.c
gnutls-3.6.7/tests/tls12-rehandshake-set-prio.c
gnutls-3.6.7/tests/tls12-server-kx-neg.c
gnutls-3.6.7/tests/tls13/
gnutls-3.6.7/tests/tls13/anti_replay.c
gnutls-3.6.7/tests/tls13/change_cipher_spec.c
gnutls-3.6.7/tests/tls13/cookie.c
gnutls-3.6.7/tests/tls13/ext-parse.h
gnutls-3.6.7/tests/tls13/hello_random_value.c
gnutls-3.6.7/tests/tls13/hello_retry_request.c
gnutls-3.6.7/tests/tls13/key_limits.c
gnutls-3.6.7/tests/tls13/key_share.c
gnutls-3.6.7/tests/tls13/key_update.c
gnutls-3.6.7/tests/tls13/multi-ocsp.c
gnutls-3.6.7/tests/tls13/no-psk-exts.c
gnutls-3.6.7/tests/tls13/ocsp-client.c
gnutls-3.6.7/tests/tls13/post-handshake-with-cert-auto.c
gnutls-3.6.7/tests/tls13/post-handshake-with-cert-ticket.c
gnutls-3.6.7/tests/tls13/post-handshake-with-cert.c
gnutls-3.6.7/tests/tls13/post-handshake-with-psk.c
gnutls-3.6.7/tests/tls13/post-handshake-without-cert.c
gnutls-3.6.7/tests/tls13/prf.c
gnutls-3.6.7/tests/tls13/psk-dumbfw.c
gnutls-3.6.7/tests/tls13/psk-ext.c
gnutls-3.6.7/tests/tls13/rnd-check-rollback-val.c
gnutls-3.6.7/tests/tls13/rnd-rollback-detection.c
gnutls-3.6.7/tests/tls13/supported_versions.c
gnutls-3.6.7/tests/tls13/tls12-no-tls13-exts.c
gnutls-3.6.7/tests/tls13-cert-key-exchange.c
gnutls-3.6.7/tests/tls13-cipher-neg.c
gnutls-3.6.7/tests/tls13-early-data-neg.c
gnutls-3.6.7/tests/tls13-early-data.c
gnutls-3.6.7/tests/tls13-early-start.c
gnutls-3.6.7/tests/tls13-rehandshake-cert.c
gnutls-3.6.7/tests/tls13-server-kx-neg.c
gnutls-3.6.7/tests/tlsext-decoding.c
gnutls-3.6.7/tests/tlsfeature-crt.c
gnutls-3.6.7/tests/tlsfeature-ext.c
gnutls-3.6.7/tests/tpmtool_test.sh
gnutls-3.6.7/tests/trust-store.c
gnutls-3.6.7/tests/trustdb-tofu.c
gnutls-3.6.7/tests/urls.c
gnutls-3.6.7/tests/utils-adv.c
gnutls-3.6.7/tests/utils.c
gnutls-3.6.7/tests/utils.h
gnutls-3.6.7/tests/version-checks.c
gnutls-3.6.7/tests/virt-time.h
gnutls-3.6.7/tests/win-certopenstore.c
gnutls-3.6.7/tests/windows/
gnutls-3.6.7/tests/windows/Makefile.am
gnutls-3.6.7/tests/windows/Makefile.in
gnutls-3.6.7/tests/windows/check-output
gnutls-3.6.7/tests/windows/cng-windows.c
gnutls-3.6.7/tests/windows/crypt32.c
gnutls-3.6.7/tests/windows/ncrypt-int.h
gnutls-3.6.7/tests/windows/ncrypt.c
gnutls-3.6.7/tests/x509-cert-callback-legacy.c
gnutls-3.6.7/tests/x509-cert-callback-ocsp.c
gnutls-3.6.7/tests/x509-cert-callback.c
gnutls-3.6.7/tests/x509-dn-decode-compat.c
gnutls-3.6.7/tests/x509-dn-decode.c
gnutls-3.6.7/tests/x509-dn.c
gnutls-3.6.7/tests/x509-extensions.c
gnutls-3.6.7/tests/x509-verify-with-crl.c
gnutls-3.6.7/tests/x509_altname.c
gnutls-3.6.7/tests/x509cert-dir/
gnutls-3.6.7/tests/x509cert-dir/ca.pem
gnutls-3.6.7/tests/x509cert-invalid.c
gnutls-3.6.7/tests/x509cert-tl.c
gnutls-3.6.7/tests/x509cert.c
gnutls-3.6.7/tests/x509dn.c
gnutls-3.6.7/tests/x509self.c
gnutls-3.6.7/tests/x509sign-verify-common.h
gnutls-3.6.7/tests/x509sign-verify-ecdsa.c
gnutls-3.6.7/tests/x509sign-verify-error.c
gnutls-3.6.7/tests/x509sign-verify-gost.c
gnutls-3.6.7/tests/x509sign-verify-rsa.c
gnutls-3.6.7/tests/x509sign-verify.c
phase `unpack' succeeded after 2.1 seconds
starting phase `bootstrap'
GNU build system bootstrapping not needed
phase `bootstrap' succeeded after 0.0 seconds
starting phase `patch-usr-bin-file'
patch-/usr/bin/file: ./configure: changing `/usr/bin/file' to `/gnu/store/6jdshxwdrad9mlhcqc9k0g24yw45rqf1-file-5.33/bin/file'
patch-/usr/bin/file: ./configure: changing `/usr/bin/file' to `/gnu/store/6jdshxwdrad9mlhcqc9k0g24yw45rqf1-file-5.33/bin/file'
patch-/usr/bin/file: ./configure: changing `/usr/bin/file' to `/gnu/store/6jdshxwdrad9mlhcqc9k0g24yw45rqf1-file-5.33/bin/file'
patch-/usr/bin/file: ./configure: changing `/usr/bin/file' to `/gnu/store/6jdshxwdrad9mlhcqc9k0g24yw45rqf1-file-5.33/bin/file'
patch-/usr/bin/file: ./configure: changing `/usr/bin/file' to `/gnu/store/6jdshxwdrad9mlhcqc9k0g24yw45rqf1-file-5.33/bin/file'
patch-/usr/bin/file: ./configure: changing `/usr/bin/file' to `/gnu/store/6jdshxwdrad9mlhcqc9k0g24yw45rqf1-file-5.33/bin/file'
patch-/usr/bin/file: ./configure: changing `/usr/bin/file' to `/gnu/store/6jdshxwdrad9mlhcqc9k0g24yw45rqf1-file-5.33/bin/file'
patch-/usr/bin/file: ./configure: changing `/usr/bin/file' to `/gnu/store/6jdshxwdrad9mlhcqc9k0g24yw45rqf1-file-5.33/bin/file'
patch-/usr/bin/file: ./configure: changing `/usr/bin/file' to `/gnu/store/6jdshxwdrad9mlhcqc9k0g24yw45rqf1-file-5.33/bin/file'
patch-/usr/bin/file: ./configure: changing `/usr/bin/file' to `/gnu/store/6jdshxwdrad9mlhcqc9k0g24yw45rqf1-file-5.33/bin/file'
patch-/usr/bin/file: ./configure: changing `/usr/bin/file' to `/gnu/store/6jdshxwdrad9mlhcqc9k0g24yw45rqf1-file-5.33/bin/file'
patch-/usr/bin/file: ./configure: changing `/usr/bin/file' to `/gnu/store/6jdshxwdrad9mlhcqc9k0g24yw45rqf1-file-5.33/bin/file'
patch-/usr/bin/file: ./configure: changing `/usr/bin/file' to `/gnu/store/6jdshxwdrad9mlhcqc9k0g24yw45rqf1-file-5.33/bin/file'
phase `patch-usr-bin-file' succeeded after 0.6 seconds
starting phase `patch-source-shebangs'
patch-shebang: ./build-aux/ar-lib: changing `/bin/sh' to `/gnu/store/29jhbbg1hf557x8j53f9sxd9imlmf02a-bash-minimal-5.0.7/bin/sh'
patch-shebang: ./build-aux/compile: changing `/bin/sh' to `/gnu/store/29jhbbg1hf557x8j53f9sxd9imlmf02a-bash-minimal-5.0.7/bin/sh'
patch-shebang: ./build-aux/config.guess: changing `/bin/sh' to `/gnu/store/29jhbbg1hf557x8j53f9sxd9imlmf02a-bash-minimal-5.0.7/bin/sh'
patch-shebang: ./build-aux/config.rpath: changing `/bin/sh' to `/gnu/store/29jhbbg1hf557x8j53f9sxd9imlmf02a-bash-minimal-5.0.7/bin/sh'
patch-shebang: ./build-aux/config.sub: changing `/bin/sh' to `/gnu/store/29jhbbg1hf557x8j53f9sxd9imlmf02a-bash-minimal-5.0.7/bin/sh'
patch-shebang: ./build-aux/depcomp: changing `/bin/sh' to `/gnu/store/29jhbbg1hf557x8j53f9sxd9imlmf02a-bash-minimal-5.0.7/bin/sh'
patch-shebang: ./build-aux/gendocs.sh: changing `/bin/sh' to `/gnu/store/29jhbbg1hf557x8j53f9sxd9imlmf02a-bash-minimal-5.0.7/bin/sh'
patch-shebang: ./build-aux/install-sh: changing `/bin/sh' to `/gnu/store/29jhbbg1hf557x8j53f9sxd9imlmf02a-bash-minimal-5.0.7/bin/sh'
patch-shebang: ./build-aux/ltmain.sh: changing `/bin/sh' to `/gnu/store/29jhbbg1hf557x8j53f9sxd9imlmf02a-bash-minimal-5.0.7/bin/sh'
patch-shebang: ./build-aux/mdate-sh: changing `/bin/sh' to `/gnu/store/29jhbbg1hf557x8j53f9sxd9imlmf02a-bash-minimal-5.0.7/bin/sh'
patch-shebang: ./build-aux/missing: changing `/bin/sh' to `/gnu/store/29jhbbg1hf557x8j53f9sxd9imlmf02a-bash-minimal-5.0.7/bin/sh'
patch-shebang: ./build-aux/test-driver: changing `/bin/sh' to `/gnu/store/29jhbbg1hf557x8j53f9sxd9imlmf02a-bash-minimal-5.0.7/bin/sh'
patch-shebang: ./build-aux/vc-list-files: changing `/bin/sh' to `/gnu/store/29jhbbg1hf557x8j53f9sxd9imlmf02a-bash-minimal-5.0.7/bin/sh'
patch-shebang: ./build-aux/ylwrap: changing `/bin/sh' to `/gnu/store/29jhbbg1hf557x8j53f9sxd9imlmf02a-bash-minimal-5.0.7/bin/sh'
patch-shebang: ./configure: changing `/bin/sh' to `/gnu/store/29jhbbg1hf557x8j53f9sxd9imlmf02a-bash-minimal-5.0.7/bin/sh'
patch-shebang: ./doc/credentials/gnutls-http-serv: changing `/bin/sh' to `/gnu/store/29jhbbg1hf557x8j53f9sxd9imlmf02a-bash-minimal-5.0.7/bin/sh'
patch-shebang: ./doc/scripts/cleanup-autogen.pl: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./doc/scripts/gdoc: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./doc/scripts/getfuncs-map.pl: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./doc/scripts/getfuncs.pl: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./doc/scripts/sort2.pl: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./doc/scripts/split-texi.pl: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./gl/tests/test-binary-io.sh: changing `/bin/sh' to `/gnu/store/29jhbbg1hf557x8j53f9sxd9imlmf02a-bash-minimal-5.0.7/bin/sh'
patch-shebang: ./gl/tests/test-c-strcase.sh: changing `/bin/sh' to `/gnu/store/29jhbbg1hf557x8j53f9sxd9imlmf02a-bash-minimal-5.0.7/bin/sh'
patch-shebang: ./gl/tests/test-ftell.sh: changing `/bin/sh' to `/gnu/store/29jhbbg1hf557x8j53f9sxd9imlmf02a-bash-minimal-5.0.7/bin/sh'
patch-shebang: ./gl/tests/test-ftell2.sh: changing `/bin/sh' to `/gnu/store/29jhbbg1hf557x8j53f9sxd9imlmf02a-bash-minimal-5.0.7/bin/sh'
patch-shebang: ./gl/tests/test-ftello.sh: changing `/bin/sh' to `/gnu/store/29jhbbg1hf557x8j53f9sxd9imlmf02a-bash-minimal-5.0.7/bin/sh'
patch-shebang: ./gl/tests/test-ftello2.sh: changing `/bin/sh' to `/gnu/store/29jhbbg1hf557x8j53f9sxd9imlmf02a-bash-minimal-5.0.7/bin/sh'
patch-shebang: ./gl/tests/test-ftello4.sh: changing `/bin/sh' to `/gnu/store/29jhbbg1hf557x8j53f9sxd9imlmf02a-bash-minimal-5.0.7/bin/sh'
patch-shebang: ./gl/tests/test-ftruncate.sh: changing `/bin/sh' to `/gnu/store/29jhbbg1hf557x8j53f9sxd9imlmf02a-bash-minimal-5.0.7/bin/sh'
patch-shebang: ./gl/tests/test-init.sh: changing `/bin/sh' to `/gnu/store/29jhbbg1hf557x8j53f9sxd9imlmf02a-bash-minimal-5.0.7/bin/sh'
patch-shebang: ./gl/tests/test-perror.sh: changing `/bin/sh' to `/gnu/store/29jhbbg1hf557x8j53f9sxd9imlmf02a-bash-minimal-5.0.7/bin/sh'
patch-shebang: ./gl/tests/test-select-in.sh: changing `/bin/sh' to `/gnu/store/29jhbbg1hf557x8j53f9sxd9imlmf02a-bash-minimal-5.0.7/bin/sh'
patch-shebang: ./gl/tests/test-select-out.sh: changing `/bin/sh' to `/gnu/store/29jhbbg1hf557x8j53f9sxd9imlmf02a-bash-minimal-5.0.7/bin/sh'
patch-shebang: ./gl/tests/test-setlocale1.sh: changing `/bin/sh' to `/gnu/store/29jhbbg1hf557x8j53f9sxd9imlmf02a-bash-minimal-5.0.7/bin/sh'
patch-shebang: ./gl/tests/test-setlocale2.sh: changing `/bin/sh' to `/gnu/store/29jhbbg1hf557x8j53f9sxd9imlmf02a-bash-minimal-5.0.7/bin/sh'
patch-shebang: ./gl/tests/test-vc-list-files-cvs.sh: changing `/bin/sh' to `/gnu/store/29jhbbg1hf557x8j53f9sxd9imlmf02a-bash-minimal-5.0.7/bin/sh'
patch-shebang: ./gl/tests/test-vc-list-files-git.sh: changing `/bin/sh' to `/gnu/store/29jhbbg1hf557x8j53f9sxd9imlmf02a-bash-minimal-5.0.7/bin/sh'
patch-shebang: ./gl/tests/test-verify.sh: changing `/bin/sh' to `/gnu/store/29jhbbg1hf557x8j53f9sxd9imlmf02a-bash-minimal-5.0.7/bin/sh'
patch-shebang: ./guile/pre-inst-guile.in: changing `/bin/sh' to `/gnu/store/29jhbbg1hf557x8j53f9sxd9imlmf02a-bash-minimal-5.0.7/bin/sh'
patch-shebang: ./src/gen-mech-list.sh: changing `/bin/sh' to `/gnu/store/29jhbbg1hf557x8j53f9sxd9imlmf02a-bash-minimal-5.0.7/bin/sh'
patch-shebang: ./tests/cert-reencoding.sh: changing `/bin/sh' to `/gnu/store/29jhbbg1hf557x8j53f9sxd9imlmf02a-bash-minimal-5.0.7/bin/sh'
patch-shebang: ./tests/cert-tests/aki: changing `/bin/sh' to `/gnu/store/29jhbbg1hf557x8j53f9sxd9imlmf02a-bash-minimal-5.0.7/bin/sh'
patch-shebang: ./tests/cert-tests/alt-chain: changing `/bin/sh' to `/gnu/store/29jhbbg1hf557x8j53f9sxd9imlmf02a-bash-minimal-5.0.7/bin/sh'
patch-shebang: ./tests/cert-tests/cert-critical: changing `/bin/sh' to `/gnu/store/29jhbbg1hf557x8j53f9sxd9imlmf02a-bash-minimal-5.0.7/bin/sh'
patch-shebang: ./tests/cert-tests/cert-sanity: changing `/bin/sh' to `/gnu/store/29jhbbg1hf557x8j53f9sxd9imlmf02a-bash-minimal-5.0.7/bin/sh'
patch-shebang: ./tests/cert-tests/cert-time: changing `/bin/sh' to `/gnu/store/29jhbbg1hf557x8j53f9sxd9imlmf02a-bash-minimal-5.0.7/bin/sh'
patch-shebang: ./tests/cert-tests/certtool: changing `/bin/sh' to `/gnu/store/29jhbbg1hf557x8j53f9sxd9imlmf02a-bash-minimal-5.0.7/bin/sh'
patch-shebang: ./tests/cert-tests/certtool-crl-decoding: changing `/bin/sh' to `/gnu/store/29jhbbg1hf557x8j53f9sxd9imlmf02a-bash-minimal-5.0.7/bin/sh'
patch-shebang: ./tests/cert-tests/certtool-ecdsa: changing `/bin/sh' to `/gnu/store/29jhbbg1hf557x8j53f9sxd9imlmf02a-bash-minimal-5.0.7/bin/sh'
patch-shebang: ./tests/cert-tests/certtool-eddsa: changing `/bin/sh' to `/gnu/store/29jhbbg1hf557x8j53f9sxd9imlmf02a-bash-minimal-5.0.7/bin/sh'
patch-shebang: ./tests/cert-tests/certtool-long-cn: changing `/bin/sh' to `/gnu/store/29jhbbg1hf557x8j53f9sxd9imlmf02a-bash-minimal-5.0.7/bin/sh'
patch-shebang: ./tests/cert-tests/certtool-long-oids: changing `/bin/sh' to `/gnu/store/29jhbbg1hf557x8j53f9sxd9imlmf02a-bash-minimal-5.0.7/bin/sh'
patch-shebang: ./tests/cert-tests/certtool-rsa-pss: changing `/bin/sh' to `/gnu/store/29jhbbg1hf557x8j53f9sxd9imlmf02a-bash-minimal-5.0.7/bin/sh'
patch-shebang: ./tests/cert-tests/certtool-utf8: changing `/bin/sh' to `/gnu/store/29jhbbg1hf557x8j53f9sxd9imlmf02a-bash-minimal-5.0.7/bin/sh'
patch-shebang: ./tests/cert-tests/crl: changing `/bin/sh' to `/gnu/store/29jhbbg1hf557x8j53f9sxd9imlmf02a-bash-minimal-5.0.7/bin/sh'
patch-shebang: ./tests/cert-tests/crq: changing `/bin/sh' to `/gnu/store/29jhbbg1hf557x8j53f9sxd9imlmf02a-bash-minimal-5.0.7/bin/sh'
patch-shebang: ./tests/cert-tests/dane: changing `/bin/sh' to `/gnu/store/29jhbbg1hf557x8j53f9sxd9imlmf02a-bash-minimal-5.0.7/bin/sh'
patch-shebang: ./tests/cert-tests/dsa: changing `/bin/sh' to `/gnu/store/29jhbbg1hf557x8j53f9sxd9imlmf02a-bash-minimal-5.0.7/bin/sh'
patch-shebang: ./tests/cert-tests/ecdsa: changing `/bin/sh' to `/gnu/store/29jhbbg1hf557x8j53f9sxd9imlmf02a-bash-minimal-5.0.7/bin/sh'
patch-shebang: ./tests/cert-tests/email: changing `/bin/sh' to `/gnu/store/29jhbbg1hf557x8j53f9sxd9imlmf02a-bash-minimal-5.0.7/bin/sh'
patch-shebang: ./tests/cert-tests/gost: changing `/bin/sh' to `/gnu/store/29jhbbg1hf557x8j53f9sxd9imlmf02a-bash-minimal-5.0.7/bin/sh'
patch-shebang: ./tests/cert-tests/illegal-rsa: changing `/bin/sh' to `/gnu/store/29jhbbg1hf557x8j53f9sxd9imlmf02a-bash-minimal-5.0.7/bin/sh'
patch-shebang: ./tests/cert-tests/inhibit-anypolicy: changing `/bin/sh' to `/gnu/store/29jhbbg1hf557x8j53f9sxd9imlmf02a-bash-minimal-5.0.7/bin/sh'
patch-shebang: ./tests/cert-tests/invalid-sig: changing `/bin/sh' to `/gnu/store/29jhbbg1hf557x8j53f9sxd9imlmf02a-bash-minimal-5.0.7/bin/sh'
patch-shebang: ./tests/cert-tests/key-id: changing `/bin/sh' to `/gnu/store/29jhbbg1hf557x8j53f9sxd9imlmf02a-bash-minimal-5.0.7/bin/sh'
patch-shebang: ./tests/cert-tests/key-invalid: changing `/bin/sh' to `/gnu/store/29jhbbg1hf557x8j53f9sxd9imlmf02a-bash-minimal-5.0.7/bin/sh'
patch-shebang: ./tests/cert-tests/krb5-test: changing `/bin/sh' to `/gnu/store/29jhbbg1hf557x8j53f9sxd9imlmf02a-bash-minimal-5.0.7/bin/sh'
patch-shebang: ./tests/cert-tests/md5-test: changing `/bin/sh' to `/gnu/store/29jhbbg1hf557x8j53f9sxd9imlmf02a-bash-minimal-5.0.7/bin/sh'
patch-shebang: ./tests/cert-tests/name-constraints: changing `/bin/sh' to `/gnu/store/29jhbbg1hf557x8j53f9sxd9imlmf02a-bash-minimal-5.0.7/bin/sh'
patch-shebang: ./tests/cert-tests/othername-test: changing `/bin/sh' to `/gnu/store/29jhbbg1hf557x8j53f9sxd9imlmf02a-bash-minimal-5.0.7/bin/sh'
patch-shebang: ./tests/cert-tests/pathlen: changing `/bin/sh' to `/gnu/store/29jhbbg1hf557x8j53f9sxd9imlmf02a-bash-minimal-5.0.7/bin/sh'
patch-shebang: ./tests/cert-tests/pem-decoding: changing `/bin/sh' to `/gnu/store/29jhbbg1hf557x8j53f9sxd9imlmf02a-bash-minimal-5.0.7/bin/sh'
patch-shebang: ./tests/cert-tests/pkcs1-pad: changing `/bin/sh' to `/gnu/store/29jhbbg1hf557x8j53f9sxd9imlmf02a-bash-minimal-5.0.7/bin/sh'
patch-shebang: ./tests/cert-tests/pkcs12: changing `/bin/sh' to `/gnu/store/29jhbbg1hf557x8j53f9sxd9imlmf02a-bash-minimal-5.0.7/bin/sh'
patch-shebang: ./tests/cert-tests/pkcs12-corner-cases: changing `/bin/sh' to `/gnu/store/29jhbbg1hf557x8j53f9sxd9imlmf02a-bash-minimal-5.0.7/bin/sh'
patch-shebang: ./tests/cert-tests/pkcs12-encode: changing `/bin/sh' to `/gnu/store/29jhbbg1hf557x8j53f9sxd9imlmf02a-bash-minimal-5.0.7/bin/sh'
patch-shebang: ./tests/cert-tests/pkcs12-gost: changing `/bin/sh' to `/gnu/store/29jhbbg1hf557x8j53f9sxd9imlmf02a-bash-minimal-5.0.7/bin/sh'
patch-shebang: ./tests/cert-tests/pkcs12-utf8: changing `/bin/sh' to `/gnu/store/29jhbbg1hf557x8j53f9sxd9imlmf02a-bash-minimal-5.0.7/bin/sh'
patch-shebang: ./tests/cert-tests/pkcs7: changing `/bin/sh' to `/gnu/store/29jhbbg1hf557x8j53f9sxd9imlmf02a-bash-minimal-5.0.7/bin/sh'
patch-shebang: ./tests/cert-tests/pkcs7-broken-sigs: changing `/bin/sh' to `/gnu/store/29jhbbg1hf557x8j53f9sxd9imlmf02a-bash-minimal-5.0.7/bin/sh'
patch-shebang: ./tests/cert-tests/pkcs7-cat: changing `/bin/sh' to `/gnu/store/29jhbbg1hf557x8j53f9sxd9imlmf02a-bash-minimal-5.0.7/bin/sh'
patch-shebang: ./tests/cert-tests/pkcs7-constraints: changing `/bin/sh' to `/gnu/store/29jhbbg1hf557x8j53f9sxd9imlmf02a-bash-minimal-5.0.7/bin/sh'
patch-shebang: ./tests/cert-tests/pkcs7-constraints2: changing `/bin/sh' to `/gnu/store/29jhbbg1hf557x8j53f9sxd9imlmf02a-bash-minimal-5.0.7/bin/sh'
patch-shebang: ./tests/cert-tests/pkcs7-eddsa: changing `/bin/sh' to `/gnu/store/29jhbbg1hf557x8j53f9sxd9imlmf02a-bash-minimal-5.0.7/bin/sh'
patch-shebang: ./tests/cert-tests/pkcs7-list-sign: changing `/bin/sh' to `/gnu/store/29jhbbg1hf557x8j53f9sxd9imlmf02a-bash-minimal-5.0.7/bin/sh'
patch-shebang: ./tests/cert-tests/pkcs8: changing `/bin/sh' to `/gnu/store/29jhbbg1hf557x8j53f9sxd9imlmf02a-bash-minimal-5.0.7/bin/sh'
patch-shebang: ./tests/cert-tests/pkcs8-decode: changing `/bin/sh' to `/gnu/store/29jhbbg1hf557x8j53f9sxd9imlmf02a-bash-minimal-5.0.7/bin/sh'
patch-shebang: ./tests/cert-tests/pkcs8-eddsa: changing `/bin/sh' to `/gnu/store/29jhbbg1hf557x8j53f9sxd9imlmf02a-bash-minimal-5.0.7/bin/sh'
patch-shebang: ./tests/cert-tests/pkcs8-gost: changing `/bin/sh' to `/gnu/store/29jhbbg1hf557x8j53f9sxd9imlmf02a-bash-minimal-5.0.7/bin/sh'
patch-shebang: ./tests/cert-tests/pkcs8-invalid: changing `/bin/sh' to `/gnu/store/29jhbbg1hf557x8j53f9sxd9imlmf02a-bash-minimal-5.0.7/bin/sh'
patch-shebang: ./tests/cert-tests/privkey-import: changing `/bin/sh' to `/gnu/store/29jhbbg1hf557x8j53f9sxd9imlmf02a-bash-minimal-5.0.7/bin/sh'
patch-shebang: ./tests/cert-tests/provable-dh: changing `/bin/sh' to `/gnu/store/29jhbbg1hf557x8j53f9sxd9imlmf02a-bash-minimal-5.0.7/bin/sh'
patch-shebang: ./tests/cert-tests/provable-dh-default: changing `/bin/sh' to `/gnu/store/29jhbbg1hf557x8j53f9sxd9imlmf02a-bash-minimal-5.0.7/bin/sh'
patch-shebang: ./tests/cert-tests/provable-privkey: changing `/bin/sh' to `/gnu/store/29jhbbg1hf557x8j53f9sxd9imlmf02a-bash-minimal-5.0.7/bin/sh'
patch-shebang: ./tests/cert-tests/provable-privkey-dsa2048: changing `/bin/sh' to `/gnu/store/29jhbbg1hf557x8j53f9sxd9imlmf02a-bash-minimal-5.0.7/bin/sh'
patch-shebang: ./tests/cert-tests/provable-privkey-gen-default: changing `/bin/sh' to `/gnu/store/29jhbbg1hf557x8j53f9sxd9imlmf02a-bash-minimal-5.0.7/bin/sh'
patch-shebang: ./tests/cert-tests/provable-privkey-rsa2048: changing `/bin/sh' to `/gnu/store/29jhbbg1hf557x8j53f9sxd9imlmf02a-bash-minimal-5.0.7/bin/sh'
patch-shebang: ./tests/cert-tests/rsa-pss-pad: changing `/bin/sh' to `/gnu/store/29jhbbg1hf557x8j53f9sxd9imlmf02a-bash-minimal-5.0.7/bin/sh'
patch-shebang: ./tests/cert-tests/sha2-dsa-test: changing `/bin/sh' to `/gnu/store/29jhbbg1hf557x8j53f9sxd9imlmf02a-bash-minimal-5.0.7/bin/sh'
patch-shebang: ./tests/cert-tests/sha2-test: changing `/bin/sh' to `/gnu/store/29jhbbg1hf557x8j53f9sxd9imlmf02a-bash-minimal-5.0.7/bin/sh'
patch-shebang: ./tests/cert-tests/sha3-test: changing `/bin/sh' to `/gnu/store/29jhbbg1hf557x8j53f9sxd9imlmf02a-bash-minimal-5.0.7/bin/sh'
patch-shebang: ./tests/cert-tests/smime: changing `/bin/sh' to `/gnu/store/29jhbbg1hf557x8j53f9sxd9imlmf02a-bash-minimal-5.0.7/bin/sh'
patch-shebang: ./tests/cert-tests/template-exts-test: changing `/bin/sh' to `/gnu/store/29jhbbg1hf557x8j53f9sxd9imlmf02a-bash-minimal-5.0.7/bin/sh'
patch-shebang: ./tests/cert-tests/template-test: changing `/bin/sh' to `/gnu/store/29jhbbg1hf557x8j53f9sxd9imlmf02a-bash-minimal-5.0.7/bin/sh'
patch-shebang: ./tests/cert-tests/tlsfeature-test: changing `/bin/sh' to `/gnu/store/29jhbbg1hf557x8j53f9sxd9imlmf02a-bash-minimal-5.0.7/bin/sh'
patch-shebang: ./tests/cert-tests/userid: changing `/bin/sh' to `/gnu/store/29jhbbg1hf557x8j53f9sxd9imlmf02a-bash-minimal-5.0.7/bin/sh'
patch-shebang: ./tests/certtool-pkcs11.sh: changing `/bin/sh' to `/gnu/store/29jhbbg1hf557x8j53f9sxd9imlmf02a-bash-minimal-5.0.7/bin/sh'
patch-shebang: ./tests/cipher-listings.sh: changing `/bin/sh' to `/gnu/store/29jhbbg1hf557x8j53f9sxd9imlmf02a-bash-minimal-5.0.7/bin/sh'
patch-shebang: ./tests/danetool.sh: changing `/bin/sh' to `/gnu/store/29jhbbg1hf557x8j53f9sxd9imlmf02a-bash-minimal-5.0.7/bin/sh'
patch-shebang: ./tests/dtls/dtls: changing `/bin/sh' to `/gnu/store/29jhbbg1hf557x8j53f9sxd9imlmf02a-bash-minimal-5.0.7/bin/sh'
patch-shebang: ./tests/dtls/dtls-resume: changing `/bin/sh' to `/gnu/store/29jhbbg1hf557x8j53f9sxd9imlmf02a-bash-minimal-5.0.7/bin/sh'
patch-shebang: ./tests/fastopen.sh: changing `/bin/sh' to `/gnu/store/29jhbbg1hf557x8j53f9sxd9imlmf02a-bash-minimal-5.0.7/bin/sh'
patch-shebang: ./tests/gnutls-cli-debug.sh: changing `/bin/sh' to `/gnu/store/29jhbbg1hf557x8j53f9sxd9imlmf02a-bash-minimal-5.0.7/bin/sh'
patch-shebang: ./tests/gnutls-cli-invalid-crl.sh: changing `/bin/sh' to `/gnu/store/29jhbbg1hf557x8j53f9sxd9imlmf02a-bash-minimal-5.0.7/bin/sh'
patch-shebang: ./tests/gnutls-cli-resume.sh: changing `/bin/sh' to `/gnu/store/29jhbbg1hf557x8j53f9sxd9imlmf02a-bash-minimal-5.0.7/bin/sh'
patch-shebang: ./tests/gnutls-cli-save-data.sh: changing `/bin/sh' to `/gnu/store/29jhbbg1hf557x8j53f9sxd9imlmf02a-bash-minimal-5.0.7/bin/sh'
patch-shebang: ./tests/gnutls-cli-self-signed.sh: changing `/bin/sh' to `/gnu/store/29jhbbg1hf557x8j53f9sxd9imlmf02a-bash-minimal-5.0.7/bin/sh'
patch-shebang: ./tests/logfile-option.sh: changing `/bin/sh' to `/gnu/store/29jhbbg1hf557x8j53f9sxd9imlmf02a-bash-minimal-5.0.7/bin/sh'
patch-shebang: ./tests/long-crl.sh: changing `/bin/sh' to `/gnu/store/29jhbbg1hf557x8j53f9sxd9imlmf02a-bash-minimal-5.0.7/bin/sh'
patch-shebang: ./tests/ocsp-tests/ocsp-load-chain: changing `/bin/sh' to `/gnu/store/29jhbbg1hf557x8j53f9sxd9imlmf02a-bash-minimal-5.0.7/bin/sh'
patch-shebang: ./tests/ocsp-tests/ocsp-must-staple-connection: changing `/bin/sh' to `/gnu/store/29jhbbg1hf557x8j53f9sxd9imlmf02a-bash-minimal-5.0.7/bin/sh'
patch-shebang: ./tests/ocsp-tests/ocsp-test: changing `/bin/sh' to `/gnu/store/29jhbbg1hf557x8j53f9sxd9imlmf02a-bash-minimal-5.0.7/bin/sh'
patch-shebang: ./tests/ocsp-tests/ocsp-tls-connection: changing `/bin/sh' to `/gnu/store/29jhbbg1hf557x8j53f9sxd9imlmf02a-bash-minimal-5.0.7/bin/sh'
patch-shebang: ./tests/ocsp-tests/ocsptool: changing `/bin/sh' to `/gnu/store/29jhbbg1hf557x8j53f9sxd9imlmf02a-bash-minimal-5.0.7/bin/sh'
patch-shebang: ./tests/p11-kit-load.sh: changing `/bin/sh' to `/gnu/store/29jhbbg1hf557x8j53f9sxd9imlmf02a-bash-minimal-5.0.7/bin/sh'
patch-shebang: ./tests/p11-kit-trust.sh: changing `/bin/sh' to `/gnu/store/29jhbbg1hf557x8j53f9sxd9imlmf02a-bash-minimal-5.0.7/bin/sh'
patch-shebang: ./tests/pkcs7-cat.sh: changing `/bin/sh' to `/gnu/store/29jhbbg1hf557x8j53f9sxd9imlmf02a-bash-minimal-5.0.7/bin/sh'
patch-shebang: ./tests/pkgconfig.sh: changing `/bin/sh' to `/gnu/store/29jhbbg1hf557x8j53f9sxd9imlmf02a-bash-minimal-5.0.7/bin/sh'
patch-shebang: ./tests/psktool.sh: changing `/bin/sh' to `/gnu/store/29jhbbg1hf557x8j53f9sxd9imlmf02a-bash-minimal-5.0.7/bin/sh'
patch-shebang: ./tests/rfc2253-escape-test: changing `/bin/sh' to `/gnu/store/29jhbbg1hf557x8j53f9sxd9imlmf02a-bash-minimal-5.0.7/bin/sh'
patch-shebang: ./tests/rsa-md5-collision/rsa-md5-collision.sh: changing `/bin/sh' to `/gnu/store/29jhbbg1hf557x8j53f9sxd9imlmf02a-bash-minimal-5.0.7/bin/sh'
patch-shebang: ./tests/scripts/starttls-common.sh: changing `/bin/sh' to `/gnu/store/29jhbbg1hf557x8j53f9sxd9imlmf02a-bash-minimal-5.0.7/bin/sh'
patch-shebang: ./tests/serv-udp.sh: changing `/bin/sh' to `/gnu/store/29jhbbg1hf557x8j53f9sxd9imlmf02a-bash-minimal-5.0.7/bin/sh'
patch-shebang: ./tests/server-multi-keys.sh: changing `/bin/sh' to `/gnu/store/29jhbbg1hf557x8j53f9sxd9imlmf02a-bash-minimal-5.0.7/bin/sh'
patch-shebang: ./tests/slow/override-ciphers: changing `/bin/sh' to `/gnu/store/29jhbbg1hf557x8j53f9sxd9imlmf02a-bash-minimal-5.0.7/bin/sh'
patch-shebang: ./tests/slow/test-ciphers-api.sh: changing `/bin/sh' to `/gnu/store/29jhbbg1hf557x8j53f9sxd9imlmf02a-bash-minimal-5.0.7/bin/sh'
patch-shebang: ./tests/slow/test-ciphers-openssl.sh: changing `/bin/sh' to `/gnu/store/29jhbbg1hf557x8j53f9sxd9imlmf02a-bash-minimal-5.0.7/bin/sh'
patch-shebang: ./tests/slow/test-ciphers.sh: changing `/bin/sh' to `/gnu/store/29jhbbg1hf557x8j53f9sxd9imlmf02a-bash-minimal-5.0.7/bin/sh'
patch-shebang: ./tests/slow/test-hash-large.sh: changing `/bin/sh' to `/gnu/store/29jhbbg1hf557x8j53f9sxd9imlmf02a-bash-minimal-5.0.7/bin/sh'
patch-shebang: ./tests/sni-hostname.sh: changing `/bin/sh' to `/gnu/store/29jhbbg1hf557x8j53f9sxd9imlmf02a-bash-minimal-5.0.7/bin/sh'
patch-shebang: ./tests/sni-resume.sh: changing `/bin/sh' to `/gnu/store/29jhbbg1hf557x8j53f9sxd9imlmf02a-bash-minimal-5.0.7/bin/sh'
patch-shebang: ./tests/starttls-ftp.sh: changing `/bin/sh' to `/gnu/store/29jhbbg1hf557x8j53f9sxd9imlmf02a-bash-minimal-5.0.7/bin/sh'
patch-shebang: ./tests/starttls-lmtp.sh: changing `/bin/sh' to `/gnu/store/29jhbbg1hf557x8j53f9sxd9imlmf02a-bash-minimal-5.0.7/bin/sh'
patch-shebang: ./tests/starttls-nntp.sh: changing `/bin/sh' to `/gnu/store/29jhbbg1hf557x8j53f9sxd9imlmf02a-bash-minimal-5.0.7/bin/sh'
patch-shebang: ./tests/starttls-pop3.sh: changing `/bin/sh' to `/gnu/store/29jhbbg1hf557x8j53f9sxd9imlmf02a-bash-minimal-5.0.7/bin/sh'
patch-shebang: ./tests/starttls-sieve.sh: changing `/bin/sh' to `/gnu/store/29jhbbg1hf557x8j53f9sxd9imlmf02a-bash-minimal-5.0.7/bin/sh'
patch-shebang: ./tests/starttls-smtp.sh: changing `/bin/sh' to `/gnu/store/29jhbbg1hf557x8j53f9sxd9imlmf02a-bash-minimal-5.0.7/bin/sh'
patch-shebang: ./tests/starttls-xmpp.sh: changing `/bin/sh' to `/gnu/store/29jhbbg1hf557x8j53f9sxd9imlmf02a-bash-minimal-5.0.7/bin/sh'
patch-shebang: ./tests/starttls.sh: changing `/bin/sh' to `/gnu/store/29jhbbg1hf557x8j53f9sxd9imlmf02a-bash-minimal-5.0.7/bin/sh'
patch-shebang: ./tests/suite/cbc-record-check.sh: changing `/bin/bash' to `/gnu/store/29jhbbg1hf557x8j53f9sxd9imlmf02a-bash-minimal-5.0.7/bin/bash'
patch-shebang: ./tests/suite/testcompat-main-openssl: changing `/bin/sh' to `/gnu/store/29jhbbg1hf557x8j53f9sxd9imlmf02a-bash-minimal-5.0.7/bin/sh'
patch-shebang: ./tests/suite/testcompat-main-polarssl: changing `/bin/sh' to `/gnu/store/29jhbbg1hf557x8j53f9sxd9imlmf02a-bash-minimal-5.0.7/bin/sh'
patch-shebang: ./tests/suite/tls-fuzzer/tls-fuzzer-common.sh: changing `/bin/bash' to `/gnu/store/29jhbbg1hf557x8j53f9sxd9imlmf02a-bash-minimal-5.0.7/bin/bash'
patch-shebang: ./tests/systemkey.sh: changing `/bin/sh' to `/gnu/store/29jhbbg1hf557x8j53f9sxd9imlmf02a-bash-minimal-5.0.7/bin/sh'
patch-shebang: ./tests/testpkcs11.pkcs15: changing `/bin/sh' to `/gnu/store/29jhbbg1hf557x8j53f9sxd9imlmf02a-bash-minimal-5.0.7/bin/sh'
patch-shebang: ./tests/testpkcs11.sc-hsm: changing `/bin/sh' to `/gnu/store/29jhbbg1hf557x8j53f9sxd9imlmf02a-bash-minimal-5.0.7/bin/sh'
patch-shebang: ./tests/testpkcs11.sh: changing `/bin/sh' to `/gnu/store/29jhbbg1hf557x8j53f9sxd9imlmf02a-bash-minimal-5.0.7/bin/sh'
patch-shebang: ./tests/testpkcs11.softhsm: changing `/bin/sh' to `/gnu/store/29jhbbg1hf557x8j53f9sxd9imlmf02a-bash-minimal-5.0.7/bin/sh'
patch-shebang: ./tests/tpmtool_test.sh: changing `/bin/sh' to `/gnu/store/29jhbbg1hf557x8j53f9sxd9imlmf02a-bash-minimal-5.0.7/bin/sh'
patch-shebang: ./tests/windows/check-output: changing `/bin/sh' to `/gnu/store/29jhbbg1hf557x8j53f9sxd9imlmf02a-bash-minimal-5.0.7/bin/sh'
phase `patch-source-shebangs' succeeded after 1.5 seconds
starting phase `configure'
source directory: "/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7" (relative from build: ".")
build directory: "/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7"
configure flags: ("CONFIG_SHELL=/gnu/store/29jhbbg1hf557x8j53f9sxd9imlmf02a-bash-minimal-5.0.7/bin/bash" "SHELL=/gnu/store/29jhbbg1hf557x8j53f9sxd9imlmf02a-bash-minimal-5.0.7/bin/bash" "--prefix=/gnu/store/80x24g3smi1nkl7ss991ai863dnz5f3d-gnutls-3.6.7" "--enable-fast-install" "--docdir=/gnu/store/j81j0zgcrjqwbqs6ydmg7clnl5s9sx0q-gnutls-3.6.7-doc/share/doc/gnutls" "--build=x86_64-unknown-linux-gnu" "--with-default-trust-store-dir=/etc/ssl/certs" "--with-guile-site-dir=$(datarootdir)/guile/site/$(GUILE_EFFECTIVE_VERSION)" "--with-guile-site-ccache-dir=$(libdir)/guile/$(GUILE_EFFECTIVE_VERSION)/site-ccache" "--with-guile-extension-dir=$(libdir)/guile/$(GUILE_EFFECTIVE_VERSION)/extensions" "--without-p11-kit")
configure: WARNING: unrecognized options: --with-guile-site-dir, --with-guile-site-ccache-dir, --with-guile-extension-dir
checking build system type... x86_64-unknown-linux-gnu
checking host system type... x86_64-unknown-linux-gnu
checking for a BSD-compatible install... /gnu/store/9kzrrccpzl6i1sfwb0drb00gi2gwk0x0-coreutils-8.31/bin/install -c
checking whether build environment is sane... yes
checking for a thread-safe mkdir -p... /gnu/store/9kzrrccpzl6i1sfwb0drb00gi2gwk0x0-coreutils-8.31/bin/mkdir -p
checking for gawk... gawk
checking whether make sets $(MAKE)... no
checking whether make supports nested variables... yes
checking whether make supports nested variables... (cached) yes
***
*** Checking for compilation programs...

checking for pkg-config... /gnu/store/i1cqaixp79vd3qwnyj1ll10pq6skm2wk-pkg-config-0.29.2/bin/pkg-config
checking pkg-config is at least version 0.9.0... yes
checking for gcc... gcc
checking whether the C compiler works... yes
checking for C compiler default output file name... a.out
checking for suffix of executables... 
checking whether we are cross compiling... no
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether gcc accepts -g... yes
checking for gcc option to accept ISO C89... none needed
checking whether gcc understands -c and -o together... yes
checking whether make supports the include directive... yes (GNU style)
checking dependency style of gcc... gcc3
checking how to run the C preprocessor... gcc -E
checking for grep that handles long lines and -e... /gnu/store/7iyvxhp2g3v3655zqwr6biz2h0lqv7pr-grep-3.3/bin/grep
checking for egrep... /gnu/store/7iyvxhp2g3v3655zqwr6biz2h0lqv7pr-grep-3.3/bin/grep -E
checking for ANSI C header files... yes
checking for sys/types.h... yes
checking for sys/stat.h... yes
checking for stdlib.h... yes
checking for string.h... yes
checking for memory.h... yes
checking for strings.h... yes
checking for inttypes.h... yes
checking for stdint.h... yes
checking for unistd.h... yes
checking minix/config.h usability... no
checking minix/config.h presence... no
checking for minix/config.h... no
checking whether it is safe to define __EXTENSIONS__... yes
checking whether _XOPEN_SOURCE should be defined... no
checking for Minix Amsterdam compiler... no
checking for ar... ar
checking the archiver (ar) interface... ar
checking for ar... (cached) ar
checking for ranlib... ranlib
checking for _LARGEFILE_SOURCE value needed for large files... no
checking for special C compiler options needed for large files... no
checking for _FILE_OFFSET_BITS value needed for large files... no
checking dependency style of gcc... gcc3
checking the archiver (ar) interface... (cached) ar
checking for g++... g++
checking whether we are using the GNU C++ compiler... yes
checking whether g++ accepts -g... yes
checking dependency style of g++... gcc3
checking for bison... no
checking for byacc... no
checking for a sed that does not truncate output... /gnu/store/afmvfw1yhfal48n1kjq6bk6kcw8sc3db-sed-4.7/bin/sed
checking for gcc option to accept ISO C99... none needed
checking whether to build with code coverage support... no
checking whether to enable maintainer-specific portions of Makefiles... yes
checking for inline... inline
checking for ANSI C header files... (cached) yes
checking cpuid.h usability... yes
checking cpuid.h presence... yes
checking for cpuid.h... yes
checking for struct iovec.iov_base... yes
checking netinet/tcp.h usability... yes
checking netinet/tcp.h presence... yes
checking for netinet/tcp.h... yes
checking stdatomic.h usability... yes
checking stdatomic.h presence... yes
checking for stdatomic.h... yes
checking for library containing __atomic_load_4... -latomic
checking threads.h usability... yes
checking threads.h presence... yes
checking for threads.h... yes
checking for getrandom... yes
checking for getentropy... no
checking for NETTLE... yes
checking for HOGWEED... yes
checking for __gmpz_cmp in -lgmp... yes
checking for LIBTASN1... yes
checking whether to use the included minitasn1... no
checking whether C99 macros are supported... yes
checking whether to allow SHA1 as an acceptable hash for cert digital signatures... yes
checking whether to disable the SSL 3.0 protocol... yes
checking whether to disable the SSL 2.0 client hello... no
checking whether to disable DTLS-SRTP extension... no
checking whether to disable ALPN extension... no
checking whether to enable TLS heartbeat support... yes
checking whether to disable SRP authentication support... no
checking whether to disable PSK authentication support... no
checking whether to disable anonymous authentication support... no
checking whether to disable DHE support... no
checking whether to disable ECDHE support... no
checking whether to disable GOST support... no
checking whether to add cryptodev support... no
checking whether to disable OCSP support... no
checking size of void *... 8
checking size of long long... 8
checking size of long... 8
checking size of int... 4
checking for sys/socket.h... yes
checking for arpa/inet.h... yes
checking for features.h... yes
checking for sys/stat.h... (cached) yes
checking for sys/time.h... yes
checking for netdb.h... yes
checking for netinet/in.h... yes
checking for limits.h... yes
checking for unistd.h... (cached) yes
checking for sys/mman.h... yes
checking for sys/param.h... yes
checking for wchar.h... yes
checking for stdint.h... (cached) yes
checking for strings.h... (cached) yes
checking for sys/uio.h... yes
checking for crtdefs.h... no
checking for inttypes.h... (cached) yes
checking for langinfo.h... yes
checking for xlocale.h... no
checking for sys/select.h... yes
checking for sys/wait.h... yes
checking for sys/ioctl.h... yes
checking for stdio_ext.h... yes
checking for termios.h... yes
checking for library containing setsockopt... none needed
checking whether to build OpenSSL compatibility layer... no
checking for gtk-doc... no
configure: WARNING:
  You will not be able to create source packages with 'make dist'
  because gtk-doc >= 1.14 is not found.
checking for gtkdoc-check... no
checking for gtkdoc-check... no
checking for gtkdoc-rebase... no
checking for gtkdoc-mkpdf... no
checking whether to build gtk-doc documentation... no
checking for GTKDOC_DEPS... no
checking whether NLS is requested... yes
checking for msgfmt... no
checking for gmsgfmt... :
checking for xgettext... no
checking for msgmerge... no
checking for ld used by gcc... /gnu/store/nc5vlidpxbvngalng30nif8nb3j7gfy2-ld-wrapper-0/bin/ld
checking if the linker (/gnu/store/nc5vlidpxbvngalng30nif8nb3j7gfy2-ld-wrapper-0/bin/ld) is GNU ld... yes
checking for shared library run path origin... done
checking 32-bit host C ABI... no
checking for the common suffixes of directories in the library search path... lib,lib
checking for CFPreferencesCopyAppValue... no
checking for CFLocaleCopyCurrent... no
checking for CFLocaleCopyPreferredLanguages... no
checking for GNU gettext in libc... yes
checking whether to use NLS... yes
checking where the gettext function comes from... libc
checking whether byte ordering is bigendian... no
checking for fork... yes
checking for setitimer... yes
checking for getrusage... yes
checking for getpwuid_r... yes
checking for nanosleep... yes
checking for daemon... yes
checking for getpid... yes
checking for localtime... yes
checking for mmap... yes
checking for explicit_bzero... yes
checking for clock_gettime... yes
checking for fmemopen... yes
checking for __register_atfork... yes
checking for secure_getenv... yes
checking for getauxval... yes
checking for libseccomp... no
checking for libcrypto... no
checking for librt... yes
checking how to link with librt... -lrt
checking for pthread_mutex_lock... yes
checking for library containing u8_normalize... -lunistring
checking for size_t... yes
checking for working alloca.h... yes
checking for alloca... yes
checking whether the preprocessor supports include_next... yes
checking whether system header files limit the line length... no
checking for complete errno.h... yes
checking whether stat file-mode macros are broken... no
checking for mode_t... yes
checking for nlink_t... yes
checking whether stdin defaults to large file offsets... yes
checking for pid_t... yes
checking whether ftello is declared... yes
checking for ftello... yes
checking whether ftello works... yes
checking whether getdelim is declared... yes
checking for getdelim... yes
checking for gettimeofday... yes
checking for mprotect... yes
checking for _set_invalid_parameter_handler... no
checking for secure_getenv... (cached) yes
checking for getuid... yes
checking for geteuid... yes
checking for getgid... yes
checking for getegid... yes
checking for snprintf... yes
checking for strdup... yes
checking for strndup... yes
checking for localtime_r... yes
checking for vasnprintf... no
checking for fcntl... yes
checking for symlink... yes
checking for ftruncate... yes
checking for getdtablesize... yes
checking for isblank... yes
checking for newlocale... yes
checking for uselocale... yes
checking for duplocale... yes
checking for freelocale... yes
checking for lstat... yes
checking for strerror_r... yes
checking for __xpg_strerror_r... yes
checking for pipe... yes
checking for setenv... yes
checking for sigaction... yes
checking for sigaltstack... yes
checking for siginterrupt... yes
checking for sleep... yes
checking for catgets... yes
checking for shutdown... yes
checking for getpass... yes
checking for __fsetlocking... yes
checking for tzset... yes
checking for timegm... yes
checking whether getline is declared... yes
checking for C/C++ restrict keyword... __restrict
checking for struct timeval... yes
checking for wide-enough struct timeval.tv_sec member... yes
checking whether <sys/socket.h> is self-contained... yes
checking for shutdown... (cached) yes
checking whether <sys/socket.h> defines the SHUT_* macros... yes
checking for struct sockaddr_storage... yes
checking for sa_family_t... yes
checking for struct sockaddr_storage.ss_family... yes
checking for IPv4 sockets... yes
checking for IPv6 sockets... yes
checking whether limits.h has LLONG_MAX, WORD_BIT, ULLONG_WIDTH etc.... yes
checking whether malloc, realloc, calloc are POSIX compliant... yes
checking for mmap... (cached) yes
checking for MAP_ANONYMOUS... yes
checking whether memchr works... yes
checking whether memmem is declared... yes
checking whether <limits.h> defines MIN and MAX... no
checking whether <sys/param.h> defines MIN and MAX... yes
checking whether snprintf returns a byte count as in C99... yes
checking whether snprintf is declared... yes
checking for stdbool.h that conforms to C99... yes
checking for _Bool... yes
checking for wchar_t... yes
checking for wint_t... yes
checking whether wint_t is too small... no
checking for unsigned long long int... yes
checking for long long int... yes
checking whether stdint.h conforms to C99... yes
checking whether stdint.h predates C++11... no
checking whether stdint.h has UINTMAX_WIDTH etc.... yes
checking whether strdup is declared... yes
checking whether strndup is declared... yes
checking whether strnlen is declared... yes
checking whether strtok_r is declared... yes
checking for struct timespec in <time.h>... yes
checking for inttypes.h... yes
checking for stdint.h... yes
checking for intmax_t... yes
checking where to find the exponent in a 'double'... word 1 bit 20
checking for snprintf... (cached) yes
checking for strnlen... yes
checking for wcslen... yes
checking for wcsnlen... yes
checking for mbrtowc... yes
checking for wcrtomb... yes
checking whether _snprintf is declared... no
checking whether vsnprintf is declared... yes
checking whether <wchar.h> uses 'inline' correctly... yes
checking for nl_langinfo and CODESET... yes
checking if environ is properly declared... yes
checking for working fcntl.h... yes
checking whether ungetc works on arbitrary bytes... yes
checking whether getcwd (NULL, 0) allocates memory for result... yes
checking for getcwd with POSIX signature... yes
checking whether getdtablesize is declared... yes
checking for inttypes.h... (cached) yes
checking whether the inttypes.h PRIxNN macros are broken... no
checking for LC_MESSAGES... yes
checking whether uselocale works... yes
checking for fake locale system (OpenBSD)... no
checking for Solaris 11.4 locale system... no
checking for getlocalename_l... no
checking whether imported symbols can be declared weak... yes
checking whether the linker supports --as-needed... yes
checking whether the linker supports --push-state... yes
checking pthread.h usability... yes
checking pthread.h presence... yes
checking for pthread.h... yes
checking for multithread API to use... posix
checking whether lstat correctly handles trailing slash... yes
checking for stdlib.h... (cached) yes
checking for GNU libc compatible malloc... yes
checking whether <sys/select.h> is self-contained... yes
checking whether select supports a 0 argument... yes
checking whether select detects invalid fds... yes
checking whether alarm is declared... yes
checking for O_CLOEXEC... yes
checking for promoted mode_t type... mode_t
checking whether strerror(0) succeeds... yes
checking for strerror_r with POSIX signature... no
checking whether __xpg_strerror_r works... yes
checking whether strerror_r is declared... yes
checking for sigset_t... yes
checking whether setenv is declared... yes
checking search.h usability... yes
checking search.h presence... yes
checking for search.h... yes
checking for tsearch... yes
checking for uid_t in sys/types.h... yes
checking whether unsetenv is declared... yes
checking for alloca as a compiler built-in... yes
checking for __builtin_expect... yes
checking byteswap.h usability... yes
checking byteswap.h presence... yes
checking for byteswap.h... yes
checking whether conversion from 'int' to 'long double' works... yes
checking for ftello... (cached) yes
checking whether ftello works... (cached) yes
checking whether __func__ is available... yes
checking for working getdelim function... yes
checking for getline... yes
checking for working getline function... yes
checking whether gettimeofday clobbers localtime buffer... no
checking for gettimeofday with POSIX signature... almost
checking for library containing inet_ntop... none required
checking whether inet_ntop is declared... yes
checking if gcc/ld supports -Wl,--output-def... no
checking if LD -Wl,--version-script works... yes
checking whether lseek detects pipes... yes
checking for memmem... yes
checking whether memmem works... yes
checking whether <netinet/in.h> is self-contained... yes
checking for pmccabe... false
checking for stdint.h... (cached) yes
checking for SIZE_MAX... yes
checking for snprintf... (cached) yes
checking whether snprintf respects a size of 1... yes
checking whether printf supports POSIX/XSI format strings with positions... yes
checking for socklen_t... yes
checking for ssize_t... yes
checking for struct stat.st_atim.tv_nsec... yes
checking whether struct stat.st_atim is of type struct timespec... yes
checking for struct stat.st_birthtimespec.tv_nsec... no
checking for struct stat.st_birthtimensec... no
checking for struct stat.st_birthtim.tv_nsec... no
checking for working stdalign.h... yes
checking for good max_align_t... yes
checking whether NULL can be used in arbitrary expressions... yes
checking which flavor of printf attribute matches inttypes macros... system
checking for strcasecmp... yes
checking for strncasecmp... yes
checking whether strncasecmp is declared... yes
checking for working strndup... yes
checking for working strnlen... yes
checking for strtok_r... yes
checking whether strtok_r works... yes
checking for strverscmp... yes
checking for nlink_t... (cached) yes
checking whether localtime_r is declared... yes
checking whether localtime_r is compatible with its POSIX signature... yes
checking for ptrdiff_t... yes
checking for vasprintf... yes
checking for vsnprintf... yes
checking whether snprintf respects a size of 1... (cached) yes
checking whether printf supports POSIX/XSI format strings with positions... (cached) yes
checking for stdint.h... (cached) yes
checking for a traditional french locale... none
checking for a turkish Unicode locale... tr_TR.UTF-8
checking whether dup2 works... yes
checking whether fcntl handles F_DUPFD correctly... yes
checking whether fcntl understands F_DUPFD_CLOEXEC... needs runtime check
checking whether fdopen sets errno... yes
checking for flexible array member... yes
checking whether getdtablesize works... yes
checking for getpagesize... yes
checking whether getpagesize is declared... yes
checking whether byte ordering is bigendian... (cached) no
checking for library containing inet_pton... none required
checking whether inet_pton is declared... yes
checking whether byte ordering is bigendian... (cached) no
checking whether INT32_MAX < INTMAX_MAX... yes
checking whether INT64_MAX == LONG_MAX... yes
checking whether UINT32_MAX < UINTMAX_MAX... yes
checking whether UINT64_MAX == ULONG_MAX... yes
checking for ioctl... yes
checking for ioctl with POSIX signature... no
checking whether langinfo.h defines CODESET... yes
checking whether langinfo.h defines T_FMT_AMPM... yes
checking whether langinfo.h defines ALTMON_1... yes
checking whether langinfo.h defines ERA... yes
checking whether langinfo.h defines YESEXPR... yes
checking whether locale.h conforms to POSIX:2001... yes
checking whether struct lconv is properly defined... yes
checking for pthread_rwlock_t... yes
checking whether pthread_rwlock_rdlock prefers a writer to a reader... no
checking for mmap... (cached) yes
checking for MAP_ANONYMOUS... yes
checking for library containing nanosleep... none required
checking for working nanosleep... no (mishandles large arguments)
checking whether open recognizes a trailing slash... yes
checking whether perror matches strerror... yes
checking for putenv compatible with GNU and SVID... yes
checking for raise... yes
checking for sigprocmask... yes
checking whether select supports a 0 argument... (cached) yes
checking whether select detects invalid fds... (cached) yes
checking whether setenv validates arguments... yes
checking for a traditional french locale... (cached) none
checking for a french Unicode locale... fr_FR.UTF-8
checking for a traditional japanese locale... none
checking for a transitional chinese locale... none
checking for struct sigaction.sa_sigaction... yes
checking for volatile sig_atomic_t... yes
checking for sighandler_t... yes
checking for sigprocmask... (cached) yes
checking whether sleep is declared... yes
checking for working sleep... yes
checking whether stat handles trailing slashes on files... yes
checking for working strerror function... yes
checking for mmap... (cached) yes
checking for MAP_ANONYMOUS... yes
checking whether symlink handles trailing slash correctly... yes
checking whether <sys/ioctl.h> declares ioctl... yes
checking for unsetenv... yes
checking for unsetenv() return type... int
checking whether unsetenv obeys POSIX... yes
checking whether fseeko is declared... yes
checking for fseeko... yes
checking for library containing gethostbyname... none required
checking for gethostbyname... yes
checking for library containing getservbyname... none required
checking for getservbyname... yes
checking whether fflush_unlocked is declared... yes
checking whether flockfile is declared... yes
checking whether fputs_unlocked is declared... yes
checking whether funlockfile is declared... yes
checking whether putc_unlocked is declared... yes
checking whether time_t is signed... yes
checking for working mktime... yes
checking whether struct tm is in sys/time.h or time.h... time.h
checking for struct tm.tm_zone... yes
checking for struct tm.tm_gmtoff... yes
checking for compound literals... yes
checking for alloca as a compiler built-in... (cached) yes
checking for library containing clock_gettime... none required
checking for clock_gettime... (cached) yes
checking for clock_settime... yes
checking whether dup2 works... (cached) yes
checking for flexible array member... (cached) yes
checking whether conversion from 'int' to 'long double' works... (cached) yes
checking for fseeko... (cached) yes
checking for ftello... (cached) yes
checking whether ftello works... (cached) yes
checking how to do getaddrinfo, freeaddrinfo and getnameinfo... checking for library containing getaddrinfo... none required
checking for getaddrinfo... yes
checking whether gai_strerror is declared... yes
checking whether gai_strerrorA is declared... no
checking for gai_strerror with POSIX signature... yes
checking for struct sockaddr.sa_len... no
checking whether getaddrinfo is declared... yes
checking whether freeaddrinfo is declared... yes
checking whether getnameinfo is declared... yes
checking for struct addrinfo... yes
checking for working getdelim function... (cached) yes
checking for getline... (cached) yes
checking for working getline function... (cached) yes
checking whether gettimeofday clobbers localtime buffer... (cached) no
checking for gettimeofday with POSIX signature... (cached) almost
checking for library containing gethostbyname... (cached) none required
checking for gethostbyname... (cached) yes
checking for library containing inet_ntop... (cached) none required
checking whether inet_ntop is declared... (cached) yes
checking for library containing inet_pton... (cached) none required
checking whether inet_pton is declared... (cached) yes
checking whether INT32_MAX < INTMAX_MAX... (cached) yes
checking whether INT64_MAX == LONG_MAX... (cached) yes
checking whether UINT32_MAX < UINTMAX_MAX... (cached) yes
checking whether UINT64_MAX == ULONG_MAX... (cached) yes
checking whether the compiler supports the __inline keyword... yes
checking whether lseek detects pipes... (cached) yes
checking for __mktime_internal... no
checking whether <netinet/in.h> is self-contained... (cached) yes
checking for struct tm.tm_zone... (cached) yes
checking whether program_invocation_name is declared... yes
checking whether program_invocation_short_name is declared... yes
checking whether select supports a 0 argument... (cached) yes
checking whether select detects invalid fds... (cached) yes
checking for library containing getservbyname... (cached) none required
checking for getservbyname... (cached) yes
checking whether setenv validates arguments... (cached) yes
checking for volatile sig_atomic_t... (cached) yes
checking for sighandler_t... (cached) yes
checking for stdint.h... (cached) yes
checking for SIZE_MAX... (cached) yes
checking for snprintf... (cached) yes
checking whether snprintf respects a size of 1... (cached) yes
checking whether printf supports POSIX/XSI format strings with positions... (cached) yes
checking for socklen_t... (cached) yes
checking for ssize_t... (cached) yes
checking for struct stat.st_atim.tv_nsec... (cached) yes
checking whether struct stat.st_atim is of type struct timespec... (cached) yes
checking for struct stat.st_birthtimespec.tv_nsec... (cached) no
checking for struct stat.st_birthtimensec... (cached) no
checking for struct stat.st_birthtim.tv_nsec... (cached) no
checking for working stdalign.h... (cached) yes
checking for good max_align_t... (cached) yes
checking whether NULL can be used in arbitrary expressions... (cached) yes
checking which flavor of printf attribute matches inttypes macros... (cached) system
checking for nlink_t... (cached) yes
checking whether localtime_r is declared... (cached) yes
checking whether localtime_r is compatible with its POSIX signature... (cached) yes
checking whether localtime loops forever near extrema... no
checking for timezone_t... no
checking whether tzset clobbers localtime buffer... no
checking for unsetenv... (cached) yes
checking for unsetenv() return type... (cached) int
checking whether unsetenv obeys POSIX... (cached) yes
checking for ptrdiff_t... (cached) yes
checking for stdint.h... (cached) yes
checking whether the compiler generally respects inline... yes
checking for ssize_t... (cached) yes
checking whether C compiler handles -Werror -Wunknown-warning-option... no
checking whether C compiler handles -Wtype-limits... yes
checking whether -Wno-missing-field-initializers is supported... yes
checking whether -Wno-missing-field-initializers is needed... no
checking whether -Wuninitialized is supported... yes
checking max safe object size... 9223372036854775807
checking whether C compiler handles -fno-common... yes
checking whether C compiler handles -W... yes
checking whether C compiler handles -Waddress... yes
checking whether C compiler handles -Waggressive-loop-optimizations... yes
checking whether C compiler handles -Wall... yes
checking whether C compiler handles -Wattribute-alias... no
checking whether C compiler handles -Wattributes... yes
checking whether C compiler handles -Wbad-function-cast... yes
checking whether C compiler handles -Wbool-compare... yes
checking whether C compiler handles -Wbool-operation... yes
checking whether C compiler handles -Wbuiltin-declaration-mismatch... yes
checking whether C compiler handles -Wbuiltin-macro-redefined... yes
checking whether C compiler handles -Wcast-align... yes
checking whether C compiler handles -Wcast-align=strict... no
checking whether C compiler handles -Wcast-function-type... no
checking whether C compiler handles -Wchar-subscripts... yes
checking whether C compiler handles -Wclobbered... yes
checking whether C compiler handles -Wcomment... yes
checking whether C compiler handles -Wcomments... yes
checking whether C compiler handles -Wcoverage-mismatch... yes
checking whether C compiler handles -Wcpp... yes
checking whether C compiler handles -Wdangling-else... yes
checking whether C compiler handles -Wdate-time... yes
checking whether C compiler handles -Wdeprecated... yes
checking whether C compiler handles -Wdeprecated-declarations... yes
checking whether C compiler handles -Wdesignated-init... yes
checking whether C compiler handles -Wdisabled-optimization... yes
checking whether C compiler handles -Wdiscarded-array-qualifiers... yes
checking whether C compiler handles -Wdiscarded-qualifiers... yes
checking whether C compiler handles -Wdiv-by-zero... yes
checking whether C compiler handles -Wdouble-promotion... yes
checking whether C compiler handles -Wduplicated-branches... yes
checking whether C compiler handles -Wduplicated-cond... yes
checking whether C compiler handles -Wduplicate-decl-specifier... yes
checking whether C compiler handles -Wempty-body... yes
checking whether C compiler handles -Wendif-labels... yes
checking whether C compiler handles -Wenum-compare... yes
checking whether C compiler handles -Wexpansion-to-defined... yes
checking whether C compiler handles -Wextra... yes
checking whether C compiler handles -Wformat-contains-nul... yes
checking whether C compiler handles -Wformat-extra-args... yes
checking whether C compiler handles -Wformat-security... yes
checking whether C compiler handles -Wformat-zero-length... yes
checking whether C compiler handles -Wframe-address... yes
checking whether C compiler handles -Wfree-nonheap-object... yes
checking whether C compiler handles -Whsa... yes
checking whether C compiler handles -Wif-not-aligned... no
checking whether C compiler handles -Wignored-attributes... yes
checking whether C compiler handles -Wignored-qualifiers... yes
checking whether C compiler handles -Wimplicit... yes
checking whether C compiler handles -Wimplicit-function-declaration... yes
checking whether C compiler handles -Wimplicit-int... yes
checking whether C compiler handles -Wincompatible-pointer-types... yes
checking whether C compiler handles -Winit-self... yes
checking whether C compiler handles -Wint-conversion... yes
checking whether C compiler handles -Wint-in-bool-context... yes
checking whether C compiler handles -Wint-to-pointer-cast... yes
checking whether C compiler handles -Winvalid-memory-model... yes
checking whether C compiler handles -Winvalid-pch... yes
checking whether C compiler handles -Wlogical-not-parentheses... yes
checking whether C compiler handles -Wlogical-op... yes
checking whether C compiler handles -Wmain... yes
checking whether C compiler handles -Wmaybe-uninitialized... yes
checking whether C compiler handles -Wmemset-elt-size... yes
checking whether C compiler handles -Wmemset-transposed-args... yes
checking whether C compiler handles -Wmisleading-indentation... yes
checking whether C compiler handles -Wmissing-attributes... no
checking whether C compiler handles -Wmissing-braces... yes
checking whether C compiler handles -Wmissing-declarations... yes
checking whether C compiler handles -Wmissing-field-initializers... yes
checking whether C compiler handles -Wmissing-include-dirs... yes
checking whether C compiler handles -Wmissing-parameter-type... yes
checking whether C compiler handles -Wmissing-prototypes... yes
checking whether C compiler handles -Wmultichar... yes
checking whether C compiler handles -Wmultistatement-macros... no
checking whether C compiler handles -Wnarrowing... yes
checking whether C compiler handles -Wnested-externs... yes
checking whether C compiler handles -Wnonnull... yes
checking whether C compiler handles -Wnonnull-compare... yes
checking whether C compiler handles -Wnull-dereference... yes
checking whether C compiler handles -Wodr... yes
checking whether C compiler handles -Wold-style-declaration... yes
checking whether C compiler handles -Wold-style-definition... yes
checking whether C compiler handles -Wopenmp-simd... yes
checking whether C compiler handles -Woverflow... yes
checking whether C compiler handles -Woverride-init... yes
checking whether C compiler handles -Wpacked... yes
checking whether C compiler handles -Wpacked-bitfield-compat... yes
checking whether C compiler handles -Wpacked-not-aligned... no
checking whether C compiler handles -Wparentheses... yes
checking whether C compiler handles -Wpointer-arith... yes
checking whether C compiler handles -Wpointer-compare... yes
checking whether C compiler handles -Wpointer-sign... yes
checking whether C compiler handles -Wpointer-to-int-cast... yes
checking whether C compiler handles -Wpragmas... yes
checking whether C compiler handles -Wpsabi... yes
checking whether C compiler handles -Wrestrict... yes
checking whether C compiler handles -Wreturn-local-addr... yes
checking whether C compiler handles -Wreturn-type... yes
checking whether C compiler handles -Wscalar-storage-order... yes
checking whether C compiler handles -Wsequence-point... yes
checking whether C compiler handles -Wshadow... yes
checking whether C compiler handles -Wshift-count-negative... yes
checking whether C compiler handles -Wshift-count-overflow... yes
checking whether C compiler handles -Wshift-negative-value... yes
checking whether C compiler handles -Wsizeof-array-argument... yes
checking whether C compiler handles -Wsizeof-pointer-div... no
checking whether C compiler handles -Wsizeof-pointer-memaccess... yes
checking whether C compiler handles -Wstrict-aliasing... yes
checking whether C compiler handles -Wstrict-prototypes... yes
checking whether C compiler handles -Wstringop-truncation... no
checking whether C compiler handles -Wsuggest-attribute=cold... no
checking whether C compiler handles -Wsuggest-attribute=format... yes
checking whether C compiler handles -Wsuggest-attribute=malloc... no
checking whether C compiler handles -Wsuggest-final-methods... yes
checking whether C compiler handles -Wsuggest-final-types... yes
checking whether C compiler handles -Wswitch... yes
checking whether C compiler handles -Wswitch-bool... yes
checking whether C compiler handles -Wswitch-unreachable... yes
checking whether C compiler handles -Wsync-nand... yes
checking whether C compiler handles -Wtautological-compare... yes
checking whether C compiler handles -Wtrampolines... yes
checking whether C compiler handles -Wtrigraphs... yes
checking whether C compiler handles -Wtype-limits... (cached) yes
checking whether C compiler handles -Wuninitialized... yes
checking whether C compiler handles -Wunknown-pragmas... yes
checking whether C compiler handles -Wunused... yes
checking whether C compiler handles -Wunused-but-set-parameter... yes
checking whether C compiler handles -Wunused-but-set-variable... yes
checking whether C compiler handles -Wunused-function... yes
checking whether C compiler handles -Wunused-label... yes
checking whether C compiler handles -Wunused-local-typedefs... yes
checking whether C compiler handles -Wunused-macros... yes
checking whether C compiler handles -Wunused-parameter... yes
checking whether C compiler handles -Wunused-result... yes
checking whether C compiler handles -Wunused-value... yes
checking whether C compiler handles -Wunused-variable... yes
checking whether C compiler handles -Wvarargs... yes
checking whether C compiler handles -Wvariadic-macros... yes
checking whether C compiler handles -Wvector-operation-performance... yes
checking whether C compiler handles -Wvolatile-register-var... yes
checking whether C compiler handles -Wwrite-strings... yes
checking whether C compiler handles -Walloc-size-larger-than=9223372036854775807... yes
checking whether C compiler handles -Warray-bounds=2... yes
checking whether C compiler handles -Wformat-overflow=2... yes
checking whether C compiler handles -Wformat-truncation=2... yes
checking whether C compiler handles -Wimplicit-fallthrough=5... yes
checking whether C compiler handles -Wnormalized=nfc... yes
checking whether C compiler handles -Wshift-overflow=2... yes
checking whether C compiler handles -Wstringop-overflow=2... yes
checking whether C compiler handles -Wunused-const-variable=2... yes
checking whether C compiler handles -Wvla-larger-than=4031... yes
checking whether C compiler handles -Wno-missing-field-initializers... yes
checking whether C compiler handles -Wno-unused-parameter... yes
checking whether C compiler handles -Wno-format-truncation... yes
checking whether C compiler handles -Wimplicit-fallthrough=2... yes
checking whether C compiler handles -Wabi=11... yes
checking whether C compiler handles -fdiagnostics-show-option... yes
checking whether ln -s works... yes
checking how to print strings... printf
checking for a sed that does not truncate output... (cached) /gnu/store/afmvfw1yhfal48n1kjq6bk6kcw8sc3db-sed-4.7/bin/sed
checking for fgrep... /gnu/store/7iyvxhp2g3v3655zqwr6biz2h0lqv7pr-grep-3.3/bin/grep -F
checking for ld used by gcc... /gnu/store/nc5vlidpxbvngalng30nif8nb3j7gfy2-ld-wrapper-0/bin/ld
checking if the linker (/gnu/store/nc5vlidpxbvngalng30nif8nb3j7gfy2-ld-wrapper-0/bin/ld) is GNU ld... yes
checking for BSD- or MS-compatible name lister (nm)... /gnu/store/3hkdiscs4910r75njbrql10znxxn7chk-binutils-2.32/bin/nm -B
checking the name lister (/gnu/store/3hkdiscs4910r75njbrql10znxxn7chk-binutils-2.32/bin/nm -B) interface... BSD nm
checking the maximum length of command line arguments... 1572864
checking how to convert x86_64-unknown-linux-gnu file names to x86_64-unknown-linux-gnu format... func_convert_file_noop
checking how to convert x86_64-unknown-linux-gnu file names to toolchain format... func_convert_file_noop
checking for /gnu/store/nc5vlidpxbvngalng30nif8nb3j7gfy2-ld-wrapper-0/bin/ld option to reload object files... -r
checking for objdump... objdump
checking how to recognize dependent libraries... pass_all
checking for dlltool... no
checking how to associate runtime and link libraries... printf %s\n
checking for archiver @FILE support... @
checking for strip... strip
checking for ranlib... (cached) ranlib
checking command to parse /gnu/store/3hkdiscs4910r75njbrql10znxxn7chk-binutils-2.32/bin/nm -B output from gcc object... ok
checking for sysroot... no
checking for a working dd... /gnu/store/9kzrrccpzl6i1sfwb0drb00gi2gwk0x0-coreutils-8.31/bin/dd
checking how to truncate binary pipes... /gnu/store/9kzrrccpzl6i1sfwb0drb00gi2gwk0x0-coreutils-8.31/bin/dd bs=4096 count=1
checking for mt... no
checking if : is a manifest tool... no
checking for dlfcn.h... yes
checking for objdir... .libs
checking if gcc supports -fno-rtti -fno-exceptions... no
checking for gcc option to produce PIC... -fPIC -DPIC
checking if gcc PIC flag -fPIC -DPIC works... yes
checking if gcc static flag -static works... no
checking if gcc supports -c -o file.o... yes
checking if gcc supports -c -o file.o... (cached) yes
checking whether the gcc linker (/gnu/store/nc5vlidpxbvngalng30nif8nb3j7gfy2-ld-wrapper-0/bin/ld -m elf_x86_64) supports shared libraries... yes
checking whether -lc should be explicitly linked in... no
checking dynamic linker characteristics... GNU/Linux ld.so
checking how to hardcode library paths into programs... immediate
checking whether stripping libraries is possible... yes
checking if libtool supports shared libraries... yes
checking whether to build shared libraries... yes
checking whether to build static libraries... no
checking how to run the C++ preprocessor... g++ -E
checking for ld used by g++... /gnu/store/nc5vlidpxbvngalng30nif8nb3j7gfy2-ld-wrapper-0/bin/ld -m elf_x86_64
checking if the linker (/gnu/store/nc5vlidpxbvngalng30nif8nb3j7gfy2-ld-wrapper-0/bin/ld -m elf_x86_64) is GNU ld... yes
checking whether the g++ linker (/gnu/store/nc5vlidpxbvngalng30nif8nb3j7gfy2-ld-wrapper-0/bin/ld -m elf_x86_64) supports shared libraries... yes
checking for g++ option to produce PIC... -fPIC -DPIC
checking if g++ PIC flag -fPIC -DPIC works... yes
checking if g++ static flag -static works... no
checking if g++ supports -c -o file.o... yes
checking if g++ supports -c -o file.o... (cached) yes
checking whether the g++ linker (/gnu/store/nc5vlidpxbvngalng30nif8nb3j7gfy2-ld-wrapper-0/bin/ld -m elf_x86_64) supports shared libraries... yes
checking dynamic linker characteristics... (cached) GNU/Linux ld.so
checking how to hardcode library paths into programs... immediate
checking for libdl... yes
checking how to link with libdl... -ldl
checking for CMOCKA... no
checking for library containing idn2_lookup_u8... -lidn2
checking for nettle_secp_192r1 in -lhogweed... no
checking for nettle_rsa_sec_decrypt... yes
checking for nettle_cfb8_encrypt... yes
checking for nettle_cmac128_update... yes
checking whether to build libdane... yes
checking for unbound library... no
configure: WARNING:
***
*** libunbound was not found. Libdane will not be built.
*** 
checking for tss library... no
configure: WARNING:
***
*** trousers was not found. TPM support will be disabled.
*** 
checking for autogen... no
configure: WARNING:
***
*** autogen not found. Will not link against system libopts.
*** 
checking for dirent.h that defines DIR... yes
checking for library containing opendir... none required
checking for sys/mman.h... (cached) yes
checking for sys/param.h... (cached) yes
checking sys/poll.h usability... yes
checking sys/poll.h presence... yes
checking for sys/poll.h... yes
checking sys/procset.h usability... no
checking sys/procset.h presence... no
checking for sys/procset.h... no
checking for sys/select.h... (cached) yes
checking for sys/socket.h... (cached) yes
checking sys/stropts.h usability... yes
checking sys/stropts.h presence... yes
checking for sys/stropts.h... yes
checking for sys/time.h... (cached) yes
checking sys/un.h usability... yes
checking sys/un.h presence... yes
checking for sys/un.h... yes
checking for sys/wait.h... (cached) yes
checking for dlfcn.h... (cached) yes
checking errno.h usability... yes
checking errno.h presence... yes
checking for errno.h... yes
checking fcntl.h usability... yes
checking fcntl.h presence... yes
checking for fcntl.h... yes
checking libgen.h usability... yes
checking libgen.h presence... yes
checking for libgen.h... yes
checking libintl.h usability... yes
checking libintl.h presence... yes
checking for libintl.h... yes
checking for memory.h... (cached) yes
checking for netinet/in.h... (cached) yes
checking setjmp.h usability... yes
checking setjmp.h presence... yes
checking for setjmp.h... yes
checking for stdbool.h... (cached) yes
checking sysexits.h usability... yes
checking sysexits.h presence... yes
checking for sysexits.h... yes
checking for unistd.h... (cached) yes
checking utime.h usability... yes
checking utime.h presence... yes
checking for utime.h... yes
checking stdarg.h usability... yes
checking stdarg.h presence... yes
checking for stdarg.h... yes
checking for string.h... (cached) yes
checking for limits.h... (cached) yes
checking for inttypes.h... (cached) yes
checking for working stdnoreturn.h... yes
checking for runetype.h... no
checking for wchar.h... (cached) yes
checking for wchar_t... yes
checking for wint_t... yes
checking for int8_t... yes
checking for uint8_t... yes
checking for int16_t... yes
checking for uint16_t... yes
checking for int32_t... yes
checking for uint32_t... yes
checking for intptr_t... yes
checking for uintptr_t... yes
checking for uint_t... no
checking for pid_t... (cached) yes
checking for size_t... (cached) yes
checking for ptrdiff_t... (cached) yes
checking size of char *... 8
checking size of int... (cached) 4
checking size of long... (cached) 8
checking size of short... 2
checking for pathfind in -lgen... no
checking for gettext in -lintl... no
checking for vprintf... yes
checking for _doprnt... no
checking vfork.h usability... no
checking vfork.h presence... no
checking for vfork.h... no
checking for fork... (cached) yes
checking for vfork... yes
checking for working fork... yes
checking for working vfork... (cached) yes
checking for mmap... (cached) yes
checking for canonicalize_file_name... yes
checking for snprintf... (cached) yes
checking for strdup... (cached) yes
checking for strchr... yes
checking for strrchr... yes
checking for strsignal... yes
checking for fchmod... yes
checking for fstat... yes
checking for chmod... yes
checking for a sed that does not truncate output... (cached) /gnu/store/afmvfw1yhfal48n1kjq6bk6kcw8sc3db-sed-4.7/bin/sed
configure: Using supplied libopts tearoff
checking whether a reg expr header is specified... no
checking whether with-libregex was specified... no
checking whether with-libregex-cflags was specified... no
checking whether with-libregex-libs was specified... no
checking whether libregex functions properly... yes
checking whether pathfind(3) works... no
checking whether /dev/zero is readable device... crw-rw-rw- 1 0 0 1, 5 Oct 27 12:55 /dev/zero
checking whether we have a functional realpath(3C)... yes
checking whether strftime() works... yes
checking whether fopen accepts "b" mode... yes
checking whether fopen accepts "t" mode... yes
checking whether not wanting optional option args... yes
checking size of unsigned long int... 8
checking size of unsigned int... 4
checking size of time_t... 8
checking whether building Guile bindings... yes
***
*** Detecting GNU Guile...

checking for guile-snarf... /gnu/store/1mkkv2caiqbdbbd256c4dirfi4kwsacv-guile-2.2.6/bin/guile-snarf
checking for guild... /gnu/store/1mkkv2caiqbdbbd256c4dirfi4kwsacv-guile-2.2.6/bin/guild
checking for pkg-config... (cached) /gnu/store/i1cqaixp79vd3qwnyj1ll10pq6skm2wk-pkg-config-0.29.2/bin/pkg-config
checking pkg-config is at least version 0.9.0... yes
configure: checking for guile 2.2
configure: found guile 2.2
checking for guile-2.2... no
checking for guile2.2... no
checking for guile-2... no
checking for guile2... no
checking for guile... /gnu/store/1mkkv2caiqbdbbd256c4dirfi4kwsacv-guile-2.2.6/bin/guile
checking for Guile version >= 2.2... 2.2.6
checking for guild... (cached) /gnu/store/1mkkv2caiqbdbbd256c4dirfi4kwsacv-guile-2.2.6/bin/guild
checking for guile-config... /gnu/store/1mkkv2caiqbdbbd256c4dirfi4kwsacv-guile-2.2.6/bin/guile-config
checking for Guile site directory... /gnu/store/1mkkv2caiqbdbbd256c4dirfi4kwsacv-guile-2.2.6/share/guile/site/2.2
checking for Guile site-ccache directory using pkgconfig... /gnu/store/1mkkv2caiqbdbbd256c4dirfi4kwsacv-guile-2.2.6/lib/guile/2.2/site-ccache
checking for Guile extensions directory... /gnu/store/1mkkv2caiqbdbbd256c4dirfi4kwsacv-guile-2.2.6/lib/guile/2.2/extensions
checking for GUILE... yes
checking whether GNU Guile is recent enough... checking the Guile effective version... 2.2
yes
checking whether gcc supports -fgnu89-inline... yes
checking for scm_gc_malloc_pointerless... yes
checking that generated files are newer than configure... done
configure: creating ./config.status
config.status: creating src/libopts/Makefile
config.status: creating guile/pre-inst-guile
config.status: creating Makefile
config.status: creating doc/Makefile
config.status: creating doc/credentials/Makefile
config.status: creating doc/credentials/srp/Makefile
config.status: creating doc/credentials/x509/Makefile
config.status: creating doc/doxygen/Doxyfile
config.status: creating doc/examples/Makefile
config.status: creating doc/latex/Makefile
config.status: creating doc/manpages/Makefile
config.status: creating doc/reference/Makefile
config.status: creating doc/reference/version.xml
config.status: creating doc/scripts/Makefile
config.status: creating extra/Makefile
config.status: creating extra/includes/Makefile
config.status: creating libdane/Makefile
config.status: creating libdane/includes/Makefile
config.status: creating libdane/gnutls-dane.pc
config.status: creating gl/Makefile
config.status: creating gl/tests/Makefile
config.status: creating guile/Makefile
config.status: creating guile/src/Makefile
config.status: creating lib/Makefile
config.status: creating lib/accelerated/Makefile
config.status: creating lib/accelerated/x86/Makefile
config.status: creating lib/accelerated/aarch64/Makefile
config.status: creating lib/algorithms/Makefile
config.status: creating lib/auth/Makefile
config.status: creating lib/ext/Makefile
config.status: creating lib/extras/Makefile
config.status: creating lib/gnutls.pc
config.status: creating lib/includes/Makefile
config.status: creating lib/includes/gnutls/gnutls.h
config.status: creating lib/minitasn1/Makefile
config.status: creating lib/nettle/Makefile
config.status: creating lib/x509/Makefile
config.status: creating lib/unistring/Makefile
config.status: creating po/Makefile.in
config.status: creating src/Makefile
config.status: creating src/args-std.def
config.status: creating src/gl/Makefile
config.status: creating tests/Makefile
config.status: creating tests/windows/Makefile
config.status: creating tests/cert-tests/Makefile
config.status: creating tests/slow/Makefile
config.status: creating tests/suite/Makefile
config.status: creating fuzz/Makefile
config.status: creating config.h
config.status: executing depfiles commands
config.status: executing po-directories commands
config.status: creating po/POTFILES
config.status: creating po/Makefile
config.status: executing libtool commands
configure: WARNING: unrecognized options: --with-guile-site-dir, --with-guile-site-ccache-dir, --with-guile-extension-dir
configure: summary of build options:

  version:              3.6.7 shared 53:2:23
  Host/Target system:   x86_64-unknown-linux-gnu
  Build system:         x86_64-unknown-linux-gnu
  Install prefix:       /gnu/store/80x24g3smi1nkl7ss991ai863dnz5f3d-gnutls-3.6.7
  Compiler:             gcc
  Valgrind:             no 
  CFlags:               -g -O2
  Library types:        Shared=yes, Static=no
  Local libopts:        yes
  Local libtasn1:       no
  Local unistring:      no
  Use nettle-mini:      no
  Documentation:        yes (manpages: yes)

configure: External hardware support:

  /dev/crypto:          no
  Hardware accel:       x86-64
  Padlock accel:        yes
  Random gen. variant:  getrandom
  PKCS#11 support:      no
  TPM support:          no

configure: Optional features:
(note that included applications might not compile properly
if features are disabled)

  SSL3.0 support:       no
  SSL2.0 client hello:  yes
  Allow SHA1 sign:      no
  DTLS-SRTP support:    yes
  ALPN support:         yes
  OCSP support:         yes
  SRP support:          yes
  PSK support:          yes
  DHE support:          yes
  ECDHE support:        yes
  GOST support:         yes
  Anon auth support:    yes
  Heartbeat support:    yes
  IDNA support:         IDNA 2008 (libidn2)
  Non-SuiteB curves:    no
  FIPS140 mode:         no

configure: Optional libraries:

  Guile wrappers:       yes
  C++ library:          yes
  DANE library:         no
  OpenSSL compat:       no

configure: System files:

  Trust store pkcs11:   
  Trust store dir:      /etc/ssl/certs
  Trust store file:     
  Blacklist file:       
  CRL file:             
  Priority file:        /etc/gnutls/default-priorities
  DNSSEC root key file: /etc/unbound/root.key

configure: WARNING:
***
*** The DNSSEC root key file in /etc/unbound/root.key was not found.
*** This file is needed for the verification of DNSSEC responses.
*** Use the command: unbound-anchor -a "/etc/unbound/root.key"
*** to generate or update it.
*** 
phase `configure' succeeded after 82.0 seconds
starting phase `patch-generated-file-shebangs'
patch-shebang: ./doc/scripts/cleanup-autogen.pl: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./doc/scripts/gdoc: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./doc/scripts/getfuncs-map.pl: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./doc/scripts/getfuncs.pl: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./doc/scripts/sort2.pl: warning: no binary for interpreter `perl' found in $PATH
patch-shebang: ./doc/scripts/split-texi.pl: warning: no binary for interpreter `perl' found in $PATH
patch-makefile-SHELL: ./po/Makefile: changing `SHELL' from `/bin/sh' to `/gnu/store/29jhbbg1hf557x8j53f9sxd9imlmf02a-bash-minimal-5.0.7/bin/sh'
phase `patch-generated-file-shebangs' succeeded after 1.1 seconds
starting phase `build'
make  all-recursive
make[1]: Entering directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7'
Making all in gl
make[2]: Entering directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/gl'
  GEN      alloca.h
  GEN      arpa/inet.h
  GEN      limits.h
  GEN      netdb.h
  GEN      stdio.h
  GEN      stdlib.h
  GEN      string.h
  GEN      strings.h
  GEN      sys/socket.h
  GEN      sys/stat.h
  GEN      sys/time.h
  GEN      sys/types.h
  GEN      sys/uio.h
  GEN      time.h
  GEN      unistd.h
  GEN      wchar.h
make  all-recursive
make[3]: Entering directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/gl'
Making all in .
make[4]: Entering directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/gl'
  CC       c-ctype.lo
  CC       c-strcasecmp.lo
  CC       c-strncasecmp.lo
  CC       hash-pjw-bare.lo
  CC       read-file.lo
  CC       stat-time.lo
  CC       sys_socket.lo
  CC       unistd.lo
  CC       xsize.lo
  CC       asnprintf.lo
  CC       localtime-buffer.lo
  CC       printf-args.lo
  CC       printf-parse.lo
  CC       vasnprintf.lo
  CCLD     libgnu.la
ar: `u' modifier ignored since `D' is the default (see `U')
make[4]: Leaving directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/gl'
Making all in tests
make[4]: Entering directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/gl/tests'
  GEN      ctype.h
  GEN      fcntl.h
  GEN      inttypes.h
  GEN      langinfo.h
  GEN      locale.h
  GEN      signal.h
  GEN      sys/ioctl.h
  GEN      sys/select.h
make  all-recursive
make[5]: Entering directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/gl/tests'
Making all in .
make[6]: Entering directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/gl/tests'
make[6]: Nothing to be done for 'all-am'.
make[6]: Leaving directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/gl/tests'
make[5]: Leaving directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/gl/tests'
make[4]: Leaving directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/gl/tests'
make[3]: Leaving directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/gl'
make[2]: Leaving directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/gl'
Making all in lib
make[2]: Entering directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/lib'
make  all-recursive
make[3]: Entering directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/lib'
Making all in includes
make[4]: Entering directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/lib/includes'
make[4]: Nothing to be done for 'all'.
make[4]: Leaving directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/lib/includes'
Making all in x509
make[4]: Entering directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/lib/x509'
make  all-am
make[5]: Entering directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/lib/x509'
  CC       common.lo
  CC       key_encode.lo
  CC       key_decode.lo
  CC       time.lo
  CC       crl.lo
  CC       crl_write.lo
  CC       crq.lo
  CC       dn.lo
  CC       attributes.lo
  CC       prov-seed.lo
  CC       extensions.lo
  CC       mpi.lo
  CC       output.lo
  CC       pkcs12.lo
  CC       pkcs12_bag.lo
  CC       pkcs12_encr.lo
  CC       pkcs7.lo
  CC       pkcs7-attrs.lo
  CC       pkcs7-crypt.lo
  CC       privkey.lo
  CC       privkey_pkcs8.lo
  CC       privkey_pkcs8_pbes1.lo
  CC       privkey_openssl.lo
  CC       hostname-verify.lo
  CC       sign.lo
  CC       verify.lo
  CC       x509.lo
  CC       x509_dn.lo
  CC       x509_write.lo
  CC       name_constraints.lo
  CC       verify-high.lo
  CC       verify-high2.lo
  CC       x509_ext.lo
  CC       email-verify.lo
  CC       pkcs7-output.lo
  CC       virt-san.lo
  CC       spki.lo
  CC       tls_features.lo
  CC       krb5.lo
  CC       ip.lo
  CC       ocsp.lo
  CC       ocsp_output.lo
  CCLD     libgnutls_x509.la
ar: `u' modifier ignored since `D' is the default (see `U')
make[5]: Leaving directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/lib/x509'
make[4]: Leaving directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/lib/x509'
Making all in auth
make[4]: Entering directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/lib/auth'
  CC       anon.lo
  CC       cert.lo
  CC       dh_common.lo
  CC       dhe.lo
  CC       rsa_psk.lo
  CC       dhe_psk.lo
  CC       psk.lo
  CC       psk_passwd.lo
  CC       rsa.lo
  CC       srp_kx.lo
  CC       srp_passwd.lo
  CC       srp_rsa.lo
  CC       srp_sb64.lo
  CC       anon_ecdh.lo
  CC       ecdhe.lo
  CCLD     libgnutls_auth.la
ar: `u' modifier ignored since `D' is the default (see `U')
make[4]: Leaving directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/lib/auth'
Making all in ext
make[4]: Entering directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/lib/ext'
  CC       max_record.lo
  CC       server_name.lo
  CC       signature.lo
  CC       safe_renegotiation.lo
  CC       session_ticket.lo
  CC       srp.lo
  CC       heartbeat.lo
  CC       status_request.lo
  CC       dumbfw.lo
  CC       ext_master_secret.lo
  CC       etm.lo
  CC       supported_versions.lo
  CC       post_handshake.lo
  CC       key_share.lo
  CC       cookie.lo
  CC       psk_ke_modes.lo
  CC       pre_shared_key.lo
  CC       supported_groups.lo
  CC       ec_point_formats.lo
  CC       early_data.lo
  CC       record_size_limit.lo
  CC       client_cert_type.lo
  CC       server_cert_type.lo
  CC       alpn.lo
  CC       srtp.lo
  CCLD     libgnutls_ext.la
ar: `u' modifier ignored since `D' is the default (see `U')
make[4]: Leaving directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/lib/ext'
Making all in algorithms
make[4]: Entering directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/lib/algorithms'
  CC       cert_types.lo
  CC       ciphers.lo
  CC       ciphersuites.lo
  CC       ecc.lo
  CC       kx.lo
  CC       mac.lo
  CC       protocols.lo
  CC       publickey.lo
  CC       secparams.lo
  CC       sign.lo
  CC       groups.lo
  CCLD     libgnutls_alg.la
ar: `u' modifier ignored since `D' is the default (see `U')
make[4]: Leaving directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/lib/algorithms'
Making all in extras
make[4]: Entering directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/lib/extras'
  CC       randomart.lo
  CC       hex.lo
  CCLD     libgnutls_extras.la
ar: `u' modifier ignored since `D' is the default (see `U')
make[4]: Leaving directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/lib/extras'
Making all in accelerated
make[4]: Entering directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/lib/accelerated'
Making all in x86
make[5]: Entering directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/lib/accelerated/x86'
  CC       x86-common.lo
  CC       sha-x86-ssse3.lo
  CC       hmac-x86-ssse3.lo
  CC       aes-gcm-x86-ssse3.lo
  CC       aes-gcm-x86-aesni.lo
  CC       aes-cbc-x86-ssse3.lo
  CC       aes-cbc-x86-aesni.lo
  CC       aes-ccm-x86-aesni.lo
  CC       sha-padlock.lo
  CC       hmac-padlock.lo
  CC       aes-padlock.lo
  CC       aes-gcm-padlock.lo
  CC       aes-gcm-x86-pclmul.lo
  CC       aes-gcm-x86-pclmul-avx.lo
  CCAS     elf/aesni-x86_64.lo
  CCAS     elf/cpuid-x86_64.lo
  CCAS     elf/ghash-x86_64.lo
  CCAS     elf/sha1-ssse3-x86_64.lo
  CCAS     elf/sha512-ssse3-x86_64.lo
  CCAS     elf/aes-ssse3-x86_64.lo
  CCAS     elf/aesni-gcm-x86_64.lo
  CCAS     elf/e_padlock-x86_64.lo
  CCLD     libx86.la
ar: `u' modifier ignored since `D' is the default (see `U')
make[5]: Leaving directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/lib/accelerated/x86'
make[5]: Entering directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/lib/accelerated'
  CC       accelerated.lo
  CC       cryptodev.lo
  CC       cryptodev-gcm.lo
  CCLD     libaccelerated.la
ar: `u' modifier ignored since `D' is the default (see `U')
make[5]: Leaving directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/lib/accelerated'
make[4]: Leaving directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/lib/accelerated'
Making all in nettle
make[4]: Entering directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/lib/nettle'
  CC       pk.lo
  CC       mpi.lo
  CC       mac.lo
  CC       cipher.lo
  CC       init.lo
  CC       prf.lo
  CC       rnd.lo
  CC       sysrng-linux.lo
  CC       rnd-fuzzer.lo
  CC       backport/cfb8.lo
  CC       backport/cmac.lo
In file included from backport/cfb8.c:42:0:
backport/cfb8.h:59:0: warning: "cfb8_encrypt" redefined
 #define cfb8_encrypt _gnutls_backport_nettle_cfb8_encrypt
 
In file included from backport/cfb8.h:38:0,
                 from backport/cfb8.c:42:
/gnu/store/lvnybsygfd6gya6xbdv48g72lb0iqqzx-nettle-3.5.1/include/nettle/cfb.h:48:0: note: this is the location of the previous definition
 #define cfb8_encrypt nettle_cfb8_encrypt
 
In file included from backport/cfb8.c:42:0:
backport/cfb8.h:60:0: warning: "cfb8_decrypt" redefined
 #define cfb8_decrypt _gnutls_backport_nettle_cfb8_decrypt
 
In file included from backport/cfb8.h:38:0,
                 from backport/cfb8.c:42:
/gnu/store/lvnybsygfd6gya6xbdv48g72lb0iqqzx-nettle-3.5.1/include/nettle/cfb.h:49:0: note: this is the location of the previous definition
 #define cfb8_decrypt nettle_cfb8_decrypt
 
  CC       int/rsa-keygen-fips186.lo
  CC       int/provable-prime.lo
  CC       int/dsa-keygen-fips186.lo
  CC       int/dsa-validate.lo
  CC       int/tls1-prf.lo
  CC       gost/gost28147.lo
  CC       gost/gosthash94.lo
  CC       gost/gosthash94-meta.lo
  CC       gost/streebog.lo
  CC       gost/streebog-meta.lo
  CC       gost/hmac-gosthash94.lo
  CC       gost/hmac-streebog.lo
  CC       gost/bignum-le.lo
  CC       gost/pbkdf2-hmac-gosthash94.lo
  CC       gost/pbkdf2-hmac-streebog.lo
  CC       gost/ecc-gost256cpa.lo
  CC       gost/ecc-gost512a.lo
  CC       gost/ecc-gostdsa-sign.lo
  CC       gost/ecc-gostdsa-verify.lo
  CC       gost/gostdsa-mask.lo
  CC       gost/gostdsa-sign.lo
  CC       gost/gostdsa-verify.lo
  CC       gost/ecc-gost-hash.lo
  CCLD     libcrypto.la
ar: `u' modifier ignored since `D' is the default (see `U')
make[4]: Leaving directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/lib/nettle'
make[4]: Entering directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/lib'
  CC       range.lo
  CC       record.lo
  CC       compress.lo
  CC       debug.lo
  CC       cipher.lo
  CC       handshake-tls13.lo
  CC       mbuffers.lo
  CC       buffers.lo
  CC       handshake.lo
  CC       num.lo
  CC       errors.lo
  CC       dh.lo
  CC       kx.lo
  CC       cipher-cbc.lo
  CC       priority.lo
  CC       hash_int.lo
  CC       cipher_int.lo
  CC       session.lo
  CC       db.lo
  CC       x509_b64.lo
  CC       hello_ext.lo
  CC       auth.lo
  CC       sslv2_compat.lo
  CC       datum.lo
  CC       session_pack.lo
  CC       mpi.lo
  CC       pk.lo
  CC       cert-cred.lo
  CC       global.lo
  CC       constate.lo
  CC       anon_cred.lo
  CC       pkix_asn1_tab.lo
  CC       gnutls_asn1_tab.lo
  CC       mem.lo
  CC       fingerprint.lo
  CC       tls-sig.lo
  CC       ecc.lo
  CC       alert.lo
  CC       privkey_raw.lo
  CC       str-iconv.lo
  CC       system.lo
  CC       str.lo
  CC       str-unicode.lo
  CC       str-idna.lo
  CC       state.lo
str-idna.c: In function 'gnutls_idna_map':
str-idna.c:69:15: warning: declaration of 'idn2_flags' shadows a global declaration [-Wshadow]
  unsigned int idn2_flags = IDN2_NFC_INPUT;
               ^~~~~~~~~~
In file included from str-idna.c:31:0:
/gnu/store/7gabmw9siqrz79slpi1f8i90v3w1638x-libidn2-2.2.0/include/idn2.h:206:5: note: shadowed declaration is here
   } idn2_flags;
     ^~~~~~~~~~
  CC       cert-cred-x509.lo
  CC       file.lo
  CC       supplemental.lo
  CC       random.lo
  CC       crypto-api.lo
  CC       privkey.lo
  CC       pcert.lo
  CC       pubkey.lo
  CC       locks.lo
  CC       dtls.lo
  CC       system_override.lo
  CC       crypto-backend.lo
  CC       verify-tofu.lo
  CC       pin.lo
  CC       tpm.lo
  CC       fips.lo
  CC       safe-memfuncs.lo
  CC       atfork.lo
  CC       randomart.lo
  CC       urls.lo
  CC       prf.lo
  CC       auto-verify.lo
  CC       dh-session.lo
  CC       cert-session.lo
  CC       handshake-checks.lo
  CC       dtls-sw.lo
  CC       dh-primes.lo
  CC       openpgp_compat.lo
  CC       crypto-selftests.lo
  CC       crypto-selftests-pk.lo
  CC       secrets.lo
  CC       extv.lo
  CC       hello_ext_lib.lo
  CC       ocsp-api.lo
  CC       stek.lo
  CC       cert-cred-rawpk.lo
  CC       system/keys-dummy.lo
  CC       tls13-sig.lo
  CC       tls13/finished.lo
  CC       tls13/key_update.lo
  CC       tls13/hello_retry.lo
  CC       tls13/session_ticket.lo
  CC       tls13/certificate.lo
  CC       tls13/early_data.lo
  CC       tls13/post_handshake.lo
  CC       tls13/psk_ext_parser.lo
  CC       tls13/anti_replay.lo
  CC       srp.lo
  CC       psk.lo
  CXX      libgnutlsxx_la-gnutlsxx.lo
  CC       system/certs.lo
  CC       system/threads.lo
  CC       system/fastopen.lo
  CC       system/sockets.lo
  CC       tls13/encrypted_extensions.lo
  CC       tls13/certificate_request.lo
  CC       tls13/certificate_verify.lo
  CCLD     libgnutls.la
  CXXLD    libgnutlsxx.la
make[4]: Leaving directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/lib'
make[3]: Leaving directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/lib'
make[2]: Leaving directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/lib'
Making all in extra
make[2]: Entering directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/extra'
Making all in includes
make[3]: Entering directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/extra/includes'
make[3]: Nothing to be done for 'all'.
make[3]: Leaving directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/extra/includes'
make[3]: Entering directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/extra'
make[3]: Nothing to be done for 'all-am'.
make[3]: Leaving directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/extra'
make[2]: Leaving directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/extra'
Making all in po
make[2]: Entering directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/po'
make[2]: Nothing to be done for 'all'.
make[2]: Leaving directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/po'
Making all in src/gl
make[2]: Entering directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/src/gl'
  GEN      alloca.h
  GEN      arpa/inet.h
  GEN      inttypes.h
  GEN      limits.h
  GEN      netdb.h
  GEN      signal.h
  GEN      stdlib.h
  GEN      stdio.h
  GEN      string.h
  GEN      sys/select.h
  GEN      sys/socket.h
  GEN      sys/stat.h
  GEN      sys/time.h
  GEN      sys/types.h
  GEN      sys/uio.h
  GEN      time.h
  GEN      unistd.h
  GEN      wchar.h
make  all-recursive
make[3]: Entering directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/src/gl'
make[4]: Entering directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/src/gl'
  CC       c-ctype.lo
  CC       fd-hook.lo
  CC       gettime.lo
  CC       malloca.lo
  CC       nstrftime.lo
  CC       parse-datetime.lo
  CC       progname.lo
  CC       read-file.lo
  CC       sockets.lo
  CC       stat-time.lo
  CC       sys_socket.lo
  CC       timespec.lo
  CC       unistd.lo
  CC       xsize.lo
  CC       asnprintf.lo
  CC       localtime-buffer.lo
  CC       mktime.lo
  CC       printf-args.lo
  CC       printf-parse.lo
  CC       time_rz.lo
  CC       vasnprintf.lo
  CCLD     libgnu_gpl.la
ar: `u' modifier ignored since `D' is the default (see `U')
make[4]: Leaving directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/src/gl'
make[3]: Leaving directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/src/gl'
make[2]: Leaving directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/src/gl'
Making all in src
make[2]: Entering directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/src'
  GEN      srptool-args.stamp
  GEN      psktool-args.stamp
/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/build-aux/missing: line 81: autogen: command not found
/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/build-aux/missing: line 81: autogen: command not found
WARNING: 'autogen' is missing on your system.
         You might have modified some files without having the proper
         tools for further handling them.  Check the 'README' file, it
         often tells you about the needed prerequisites for installing
         this package.  You may also peek at any GNU archive site, in
         case some other package contains this missing 'autogen' program.
WARNING: 'autogen' is missing on your system.
         You might have modified some files without having the proper
         tools for further handling them.  Check the 'README' file, it
         often tells you about the needed prerequisites for installing
         this package.  You may also peek at any GNU archive site, in
         case some other package contains this missing 'autogen' program.
  GEN      ocsptool-args.stamp
/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/build-aux/missing: line 81: autogen: command not found
WARNING: 'autogen' is missing on your system.
         You might have modified some files without having the proper
         tools for further handling them.  Check the 'README' file, it
         often tells you about the needed prerequisites for installing
         this package.  You may also peek at any GNU archive site, in
         case some other package contains this missing 'autogen' program.
  GEN      serv-args.stamp
/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/build-aux/missing: line 81: autogen: command not found
WARNING: 'autogen' is missing on your system.
         You might have modified some files without having the proper
         tools for further handling them.  Check the 'README' file, it
         often tells you about the needed prerequisites for installing
         this package.  You may also peek at any GNU archive site, in
         case some other package contains this missing 'autogen' program.
  GEN      cli-args.stamp
/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/build-aux/missing: line 81: autogen: command not found
WARNING: 'autogen' is missing on your system.
         You might have modified some files without having the proper
         tools for further handling them.  Check the 'README' file, it
         often tells you about the needed prerequisites for installing
         this package.  You may also peek at any GNU archive site, in
         case some other package contains this missing 'autogen' program.
  GEN      cli-debug-args.stamp
  GEN      certtool-args.stamp
/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/build-aux/missing: line 81: autogen: command not found
/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/build-aux/missing: line 81: autogen: command not found
WARNING: 'autogen' is missing on your system.
         You might have modified some files without having the proper
         tools for further handling them.  Check the 'README' file, it
         often tells you about the needed prerequisites for installing
         this package.  You may also peek at any GNU archive site, in
         case some other package contains this missing 'autogen' program.
WARNING: 'autogen' is missing on your system.
         You might have modified some files without having the proper
         tools for further handling them.  Check the 'README' file, it
         often tells you about the needed prerequisites for installing
         this package.  You may also peek at any GNU archive site, in
         case some other package contains this missing 'autogen' program.
  GEN      danetool-args.stamp
  GEN      p11tool-args.stamp
/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/build-aux/missing: line 81: autogen: command not found
/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/build-aux/missing: line 81: autogen: command not found
WARNING: 'autogen' is missing on your system.
         You might have modified some files without having the proper
         tools for further handling them.  Check the 'README' file, it
         often tells you about the needed prerequisites for installing
         this package.  You may also peek at any GNU archive site, in
         case some other package contains this missing 'autogen' program.
WARNING: 'autogen' is missing on your system.
         You might have modified some files without having the proper
         tools for further handling them.  Check the 'README' file, it
         often tells you about the needed prerequisites for installing
         this package.  You may also peek at any GNU archive site, in
         case some other package contains this missing 'autogen' program.
  GEN      tpmtool-args.stamp
/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/build-aux/missing: line 81: autogen: command not found
  GEN      systemkey-args.stamp
WARNING: 'autogen' is missing on your system.
         You might have modified some files without having the proper
         tools for further handling them.  Check the 'README' file, it
         often tells you about the needed prerequisites for installing
         this package.  You may also peek at any GNU archive site, in
         case some other package contains this missing 'autogen' program.
/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/build-aux/missing: line 81: autogen: command not found
WARNING: 'autogen' is missing on your system.
         You might have modified some files without having the proper
         tools for further handling them.  Check the 'README' file, it
         often tells you about the needed prerequisites for installing
         this package.  You may also peek at any GNU archive site, in
         case some other package contains this missing 'autogen' program.
make  all-recursive
make[3]: Entering directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/src'
Making all in libopts
make[4]: Entering directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/src/libopts'
make  all-am
make[5]: Entering directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/src/libopts'
  CC       libopts_la-libopts.lo
In file included from libopts.c:30:0:
genshell.c:68:13: warning: initializer-string for array of chars is too long
 /*     0 */ "genshellopt 1\n"
             ^~~~~~~~~~~~~~~~~
  CCLD     libopts.la
ar: `u' modifier ignored since `D' is the default (see `U')
make[5]: Leaving directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/src/libopts'
make[4]: Leaving directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/src/libopts'
make[4]: Entering directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/src'
  CC       psk.o
  CC       psktool-args.lo
  CC       cli-debug.o
psktool-args.c:337:41: warning: suggest parentheses around arithmetic in operand of '|' [-Wparentheses]
 # define OPTPROC_BASE OPTPROC_TRANSLATE | OPTPROC_NXLAT_OPT
                                         ^
psktool-args.c:495:7: note: in expansion of macro 'OPTPROC_BASE'
     ( OPTPROC_BASE
       ^~~~~~~~~~~~
In file included from psktool-args.h:49:0,
                 from psktool-args.c:43:
psktool-args.c: In function 'AO_gettext':
../src/libopts/autoopts/options.h:91:29: warning: cast from function call of type 'char *' to non-matching type 'long unsigned int' [-Wbad-function-cast]
 #define VOIDP(_a)  ((void *)(uintptr_t)(_a))
                             ^
psktool-args.c:569:27: note: in expansion of macro 'VOIDP'
             res = (char *)VOIDP(_(pz));
                           ^~~~~
../src/libopts/autoopts/options.h:91:29: warning: cast from function call of type 'char *' to non-matching type 'long unsigned int' [-Wbad-function-cast]
 #define VOIDP(_a)  ((void *)(uintptr_t)(_a))
                             ^
psktool-args.c:571:23: note: in expansion of macro 'VOIDP'
         res = (char *)VOIDP(_(pz));
                       ^~~~~
  CC       tests.o
psktool-args.c: At top level:
psktool-args.c:42:0: warning: macro "OPTION_CODE_COMPILE" is not used [-Wunused-macros]
 #define OPTION_CODE_COMPILE 1
 
  CC       socket.o
  CC       common.o
  CC       cli-debug-args.lo
cli-debug-args.c:341:41: warning: suggest parentheses around arithmetic in operand of '|' [-Wparentheses]
 # define OPTPROC_BASE OPTPROC_TRANSLATE | OPTPROC_NXLAT_OPT
                                         ^
cli-debug-args.c:499:7: note: in expansion of macro 'OPTPROC_BASE'
     ( OPTPROC_BASE
       ^~~~~~~~~~~~
In file included from cli-debug-args.h:49:0,
                 from cli-debug-args.c:43:
cli-debug-args.c: In function 'AO_gettext':
../src/libopts/autoopts/options.h:91:29: warning: cast from function call of type 'char *' to non-matching type 'long unsigned int' [-Wbad-function-cast]
 #define VOIDP(_a)  ((void *)(uintptr_t)(_a))
                             ^
cli-debug-args.c:574:27: note: in expansion of macro 'VOIDP'
             res = (char *)VOIDP(_(pz));
                           ^~~~~
../src/libopts/autoopts/options.h:91:29: warning: cast from function call of type 'char *' to non-matching type 'long unsigned int' [-Wbad-function-cast]
 #define VOIDP(_a)  ((void *)(uintptr_t)(_a))
                             ^
cli-debug-args.c:576:23: note: in expansion of macro 'VOIDP'
         res = (char *)VOIDP(_(pz));
                       ^~~~~
  CC       certtool.o
cli-debug-args.c: At top level:
cli-debug-args.c:42:0: warning: macro "OPTION_CODE_COMPILE" is not used [-Wunused-macros]
 #define OPTION_CODE_COMPILE 1
 
  CC       certtool-common.o
  CC       certtool-extras.o
  CC       certtool-cfg.lo
  CC       certtool-args.lo
certtool-args.c:2719:41: warning: suggest parentheses around arithmetic in operand of '|' [-Wparentheses]
 # define OPTPROC_BASE OPTPROC_TRANSLATE | OPTPROC_NXLAT_OPT
                                         ^
certtool-args.c:2898:7: note: in expansion of macro 'OPTPROC_BASE'
     ( OPTPROC_BASE
       ^~~~~~~~~~~~
In file included from certtool-args.h:49:0,
                 from certtool-args.c:43:
certtool-args.c: In function 'AO_gettext':
../src/libopts/autoopts/options.h:91:29: warning: cast from function call of type 'char *' to non-matching type 'long unsigned int' [-Wbad-function-cast]
 #define VOIDP(_a)  ((void *)(uintptr_t)(_a))
                             ^
certtool-args.c:2973:27: note: in expansion of macro 'VOIDP'
             res = (char *)VOIDP(_(pz));
                           ^~~~~
../src/libopts/autoopts/options.h:91:29: warning: cast from function call of type 'char *' to non-matching type 'long unsigned int' [-Wbad-function-cast]
 #define VOIDP(_a)  ((void *)(uintptr_t)(_a))
                             ^
certtool-args.c:2975:23: note: in expansion of macro 'VOIDP'
         res = (char *)VOIDP(_(pz));
                       ^~~~~
certtool-args.c: At top level:
certtool-args.c:42:0: warning: macro "OPTION_CODE_COMPILE" is not used [-Wunused-macros]
 #define OPTION_CODE_COMPILE 1
 
  CC       srptool.o
  CC       srptool-args.lo
srptool-args.c:429:41: warning: suggest parentheses around arithmetic in operand of '|' [-Wparentheses]
 # define OPTPROC_BASE OPTPROC_TRANSLATE | OPTPROC_NXLAT_OPT
                                         ^
srptool-args.c:536:7: note: in expansion of macro 'OPTPROC_BASE'
     ( OPTPROC_BASE
       ^~~~~~~~~~~~
In file included from srptool-args.h:49:0,
                 from srptool-args.c:43:
srptool-args.c: In function 'AO_gettext':
../src/libopts/autoopts/options.h:91:29: warning: cast from function call of type 'char *' to non-matching type 'long unsigned int' [-Wbad-function-cast]
 #define VOIDP(_a)  ((void *)(uintptr_t)(_a))
                             ^
srptool-args.c:610:27: note: in expansion of macro 'VOIDP'
             res = (char *)VOIDP(_(pz));
                           ^~~~~
../src/libopts/autoopts/options.h:91:29: warning: cast from function call of type 'char *' to non-matching type 'long unsigned int' [-Wbad-function-cast]
 #define VOIDP(_a)  ((void *)(uintptr_t)(_a))
                             ^
srptool-args.c:612:23: note: in expansion of macro 'VOIDP'
         res = (char *)VOIDP(_(pz));
                       ^~~~~
srptool-args.c: At top level:
srptool-args.c:42:0: warning: macro "OPTION_CODE_COMPILE" is not used [-Wunused-macros]
 #define OPTION_CODE_COMPILE 1
 
  CC       ocsptool.o
  CC       ocsptool-common.o
  CC       ocsptool-args.lo
  CC       serv.o
ocsptool-args.c:827:41: warning: suggest parentheses around arithmetic in operand of '|' [-Wparentheses]
 # define OPTPROC_BASE OPTPROC_TRANSLATE | OPTPROC_NXLAT_OPT
                                         ^
ocsptool-args.c:1128:7: note: in expansion of macro 'OPTPROC_BASE'
     ( OPTPROC_BASE
       ^~~~~~~~~~~~
In file included from ocsptool-args.h:49:0,
                 from ocsptool-args.c:43:
ocsptool-args.c: In function 'AO_gettext':
../src/libopts/autoopts/options.h:91:29: warning: cast from function call of type 'char *' to non-matching type 'long unsigned int' [-Wbad-function-cast]
 #define VOIDP(_a)  ((void *)(uintptr_t)(_a))
                             ^
ocsptool-args.c:1203:27: note: in expansion of macro 'VOIDP'
             res = (char *)VOIDP(_(pz));
                           ^~~~~
../src/libopts/autoopts/options.h:91:29: warning: cast from function call of type 'char *' to non-matching type 'long unsigned int' [-Wbad-function-cast]
 #define VOIDP(_a)  ((void *)(uintptr_t)(_a))
                             ^
ocsptool-args.c:1205:23: note: in expansion of macro 'VOIDP'
         res = (char *)VOIDP(_(pz));
                       ^~~~~
ocsptool-args.c: At top level:
ocsptool-args.c:42:0: warning: macro "OPTION_CODE_COMPILE" is not used [-Wunused-macros]
 #define OPTION_CODE_COMPILE 1
 
  CC       udp-serv.o
  CC       serv-args.lo
  CC       cli.o
serv-args.c:1351:41: warning: suggest parentheses around arithmetic in operand of '|' [-Wparentheses]
 # define OPTPROC_BASE OPTPROC_TRANSLATE | OPTPROC_NXLAT_OPT
                                         ^
serv-args.c:1760:7: note: in expansion of macro 'OPTPROC_BASE'
     ( OPTPROC_BASE
       ^~~~~~~~~~~~
In file included from serv-args.h:49:0,
                 from serv-args.c:43:
serv-args.c: In function 'AO_gettext':
../src/libopts/autoopts/options.h:91:29: warning: cast from function call of type 'char *' to non-matching type 'long unsigned int' [-Wbad-function-cast]
 #define VOIDP(_a)  ((void *)(uintptr_t)(_a))
                             ^
serv-args.c:1834:27: note: in expansion of macro 'VOIDP'
             res = (char *)VOIDP(_(pz));
                           ^~~~~
../src/libopts/autoopts/options.h:91:29: warning: cast from function call of type 'char *' to non-matching type 'long unsigned int' [-Wbad-function-cast]
 #define VOIDP(_a)  ((void *)(uintptr_t)(_a))
                             ^
serv-args.c:1836:23: note: in expansion of macro 'VOIDP'
         res = (char *)VOIDP(_(pz));
                       ^~~~~
serv-args.c: At top level:
serv-args.c:42:0: warning: macro "OPTION_CODE_COMPILE" is not used [-Wunused-macros]
 #define OPTION_CODE_COMPILE 1
 
  CC       benchmark-cipher.o
  CC       benchmark.o
  CC       benchmark-tls.o
  CC       cli-args.lo
  CC       systemkey.o
cli-args.c:1859:41: warning: suggest parentheses around arithmetic in operand of '|' [-Wparentheses]
 # define OPTPROC_BASE OPTPROC_TRANSLATE | OPTPROC_NXLAT_OPT
                                         ^
cli-args.c:2100:7: note: in expansion of macro 'OPTPROC_BASE'
     ( OPTPROC_BASE
       ^~~~~~~~~~~~
In file included from cli-args.h:49:0,
                 from cli-args.c:43:
cli-args.c: In function 'AO_gettext':
../src/libopts/autoopts/options.h:91:29: warning: cast from function call of type 'char *' to non-matching type 'long unsigned int' [-Wbad-function-cast]
 #define VOIDP(_a)  ((void *)(uintptr_t)(_a))
                             ^
cli-args.c:2175:27: note: in expansion of macro 'VOIDP'
             res = (char *)VOIDP(_(pz));
                           ^~~~~
../src/libopts/autoopts/options.h:91:29: warning: cast from function call of type 'char *' to non-matching type 'long unsigned int' [-Wbad-function-cast]
 #define VOIDP(_a)  ((void *)(uintptr_t)(_a))
                             ^
cli-args.c:2177:23: note: in expansion of macro 'VOIDP'
         res = (char *)VOIDP(_(pz));
                       ^~~~~
  CC       systemkey-args.lo
cli-args.c: At top level:
cli-args.c:42:0: warning: macro "OPTION_CODE_COMPILE" is not used [-Wunused-macros]
 #define OPTION_CODE_COMPILE 1
 
  CC       danetool-args.lo
systemkey-args.c:402:41: warning: suggest parentheses around arithmetic in operand of '|' [-Wparentheses]
 # define OPTPROC_BASE OPTPROC_TRANSLATE | OPTPROC_NXLAT_OPT
                                         ^
systemkey-args.c:533:7: note: in expansion of macro 'OPTPROC_BASE'
     ( OPTPROC_BASE
       ^~~~~~~~~~~~
In file included from systemkey-args.h:49:0,
                 from systemkey-args.c:43:
systemkey-args.c: In function 'AO_gettext':
../src/libopts/autoopts/options.h:91:29: warning: cast from function call of type 'char *' to non-matching type 'long unsigned int' [-Wbad-function-cast]
 #define VOIDP(_a)  ((void *)(uintptr_t)(_a))
                             ^
systemkey-args.c:608:27: note: in expansion of macro 'VOIDP'
             res = (char *)VOIDP(_(pz));
                           ^~~~~
../src/libopts/autoopts/options.h:91:29: warning: cast from function call of type 'char *' to non-matching type 'long unsigned int' [-Wbad-function-cast]
 #define VOIDP(_a)  ((void *)(uintptr_t)(_a))
                             ^
systemkey-args.c:610:23: note: in expansion of macro 'VOIDP'
         res = (char *)VOIDP(_(pz));
                       ^~~~~
systemkey-args.c: At top level:
systemkey-args.c:42:0: warning: macro "OPTION_CODE_COMPILE" is not used [-Wunused-macros]
 #define OPTION_CODE_COMPILE 1
 
  CCLD     libcmd-psk.la
danetool-args.c:958:41: warning: suggest parentheses around arithmetic in operand of '|' [-Wparentheses]
 # define OPTPROC_BASE OPTPROC_TRANSLATE | OPTPROC_NXLAT_OPT
                                         ^
danetool-args.c:1137:7: note: in expansion of macro 'OPTPROC_BASE'
     ( OPTPROC_BASE
       ^~~~~~~~~~~~
In file included from danetool-args.h:49:0,
                 from danetool-args.c:43:
danetool-args.c: In function 'AO_gettext':
../src/libopts/autoopts/options.h:91:29: warning: cast from function call of type 'char *' to non-matching type 'long unsigned int' [-Wbad-function-cast]
 #define VOIDP(_a)  ((void *)(uintptr_t)(_a))
                             ^
danetool-args.c:1212:27: note: in expansion of macro 'VOIDP'
             res = (char *)VOIDP(_(pz));
                           ^~~~~
../src/libopts/autoopts/options.h:91:29: warning: cast from function call of type 'char *' to non-matching type 'long unsigned int' [-Wbad-function-cast]
 #define VOIDP(_a)  ((void *)(uintptr_t)(_a))
                             ^
danetool-args.c:1214:23: note: in expansion of macro 'VOIDP'
         res = (char *)VOIDP(_(pz));
                       ^~~~~
danetool-args.c: At top level:
danetool-args.c:42:0: warning: macro "OPTION_CODE_COMPILE" is not used [-Wunused-macros]
 #define OPTION_CODE_COMPILE 1
 
  CCLD     libcmd-cli-debug.la
ar: `u' modifier ignored since `D' is the default (see `U')
  CCLD     libcmd-certtool.la
ar: `u' modifier ignored since `D' is the default (see `U')
  CCLD     libcmd-srp.la
ar: `u' modifier ignored since `D' is the default (see `U')
  CCLD     libcmd-ocsp.la
copying selected object files to avoid basename conflicts...
ar: `u' modifier ignored since `D' is the default (see `U')
  CCLD     libcmd-serv.la
ar: `u' modifier ignored since `D' is the default (see `U')
  CCLD     libcmd-cli.la
ar: `u' modifier ignored since `D' is the default (see `U')
  CCLD     libcmd-systemkey.la
ar: `u' modifier ignored since `D' is the default (see `U')
  CCLD     libcmd-danetool.la
copying selected object files to avoid basename conflicts...
ar: `u' modifier ignored since `D' is the default (see `U')
  CCLD     psktool
copying selected object files to avoid basename conflicts...
ar: `u' modifier ignored since `D' is the default (see `U')
  CCLD     gnutls-cli-debug
  CCLD     certtool
  CCLD     srptool
  CCLD     ocsptool
  CCLD     gnutls-serv
  CCLD     gnutls-cli
  CCLD     systemkey
make[4]: Leaving directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/src'
make[3]: Leaving directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/src'
make[2]: Leaving directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/src'
Making all in tests
make[2]: Entering directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/tests'
Making all in .
make[3]: Entering directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/tests'
  CC       utils.lo
  CC       seccomp.lo
  CC       utils-adv.lo
  CCLD     libutils.la
ar: `u' modifier ignored since `D' is the default (see `U')
make[3]: Leaving directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/tests'
Making all in cert-tests
make[3]: Entering directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/tests/cert-tests'
make[3]: Nothing to be done for 'all'.
make[3]: Leaving directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/tests/cert-tests'
Making all in slow
make[3]: Entering directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/tests/slow'
make[3]: Nothing to be done for 'all'.
make[3]: Leaving directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/tests/slow'
make[2]: Leaving directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/tests'
Making all in fuzz
make[2]: Entering directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/fuzz'
make[2]: Nothing to be done for 'all'.
make[2]: Leaving directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/fuzz'
Making all in guile
make[2]: Entering directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/guile'
Making all in src
make[3]: Entering directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/guile/src'
  GEN      enum-map.i.c
  GEN      smob-types.i.c
  GEN      enums.h
  GEN      smobs.h
  GEN      core.x
  GEN      errors.x
make  all-am
make[4]: Entering directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/guile/src'
  CC       guile_gnutls_v_2_la-core.lo
  CC       guile_gnutls_v_2_la-errors.lo
  CC       guile_gnutls_v_2_la-utils.lo
  CCLD     guile-gnutls-v-2.la
make[4]: Leaving directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/guile/src'
make[3]: Leaving directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/guile/src'
make[3]: Entering directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/guile'
  GEN      modules/gnutls.scm
  GUILEC   modules/gnutls.go
  GUILEC   modules/gnutls/extra.go
;;; note: auto-compilation is enabled, set GUILE_AUTO_COMPILE=0
;;;       or pass the --no-auto-compile argument to disable.
;;; compiling /gnu/store/1mkkv2caiqbdbbd256c4dirfi4kwsacv-guile-2.2.6/bin/guild
;;; WARNING: compilation of /gnu/store/1mkkv2caiqbdbbd256c4dirfi4kwsacv-guile-2.2.6/bin/guild failed:
;;; failed to create path for auto-compiled file "/gnu/store/1mkkv2caiqbdbbd256c4dirfi4kwsacv-guile-2.2.6/bin/guild"
;;; note: auto-compilation is enabled, set GUILE_AUTO_COMPILE=0
;;;       or pass the --no-auto-compile argument to disable.
;;; compiling /gnu/store/1mkkv2caiqbdbbd256c4dirfi4kwsacv-guile-2.2.6/bin/guild
;;; WARNING: compilation of /gnu/store/1mkkv2caiqbdbbd256c4dirfi4kwsacv-guile-2.2.6/bin/guild failed:
;;; failed to create path for auto-compiled file "/gnu/store/1mkkv2caiqbdbbd256c4dirfi4kwsacv-guile-2.2.6/bin/guild"
make[3]: Leaving directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/guile'
make[2]: Leaving directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/guile'
Making all in doc/manpages
make[2]: Entering directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/doc/manpages'
make[2]: Nothing to be done for 'all'.
make[2]: Leaving directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/doc/manpages'
Making all in doc
make[2]: Entering directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/doc'
make  all-recursive
make[3]: Entering directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/doc'
Making all in examples
make[4]: Entering directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/doc/examples'
  CC       ex-client-resume.o
  CC       ex-alert.lo
  CC       ex-pkcs12.lo
  CC       ex-session-info.lo
  CC       ex-x509-info.lo
  CC       ex-verify.lo
  CC       ex-client-x509-3.1.lo
  CC       tcp.lo
  CC       udp.lo
  CC       ex-pkcs11-list.lo
  CC       verify.lo
  CC       ex-verify-ssh.lo
  CC       ex-client-dtls.o
  CC       ex-cert-select.o
  CC       ex-client-x509.o
  CC       ex-serv-dtls.o
  CC       print-ciphersuites.o
  CC       ex-serv-x509.o
  CXX      ex-cxx.o
  CC       ex-client-anon.o
  CC       ex-serv-anon.o
  CC       ex-client-psk.o
  CC       ex-serv-psk.o
  CC       ex-client-srp.o
  CC       ex-serv-srp.o
  CC       ex-ocsp-client.o
  CCLD     libexamples.la
  CC       tlsproxy/buffer.o
  CC       tlsproxy/crypto-gnutls.o
ar: `u' modifier ignored since `D' is the default (see `U')
  CC       tlsproxy/tlsproxy.o
  CCLD     ex-ocsp-client
  CCLD     ex-client-resume
  CCLD     ex-client-dtls
  CCLD     ex-cert-select
  CCLD     ex-client-x509
  CCLD     ex-serv-dtls
  CCLD     print-ciphersuites
  CCLD     ex-serv-x509
  CXXLD    ex-cxx
  CCLD     ex-client-anon
  CCLD     ex-serv-anon
  CCLD     ex-client-psk
  CCLD     ex-serv-psk
  CCLD     ex-client-srp
  CCLD     ex-serv-srp
  CCLD     tlsproxy/tlsproxy
make[4]: Leaving directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/doc/examples'
Making all in scripts
make[4]: Entering directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/doc/scripts'
make[4]: Nothing to be done for 'all'.
make[4]: Leaving directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/doc/scripts'
Making all in credentials
make[4]: Entering directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/doc/credentials'
Making all in srp
make[5]: Entering directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/doc/credentials/srp'
make[5]: Nothing to be done for 'all'.
make[5]: Leaving directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/doc/credentials/srp'
Making all in x509
make[5]: Entering directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/doc/credentials/x509'
make[5]: Nothing to be done for 'all'.
make[5]: Leaving directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/doc/credentials/x509'
make[5]: Entering directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/doc/credentials'
make[5]: Nothing to be done for 'all-am'.
make[5]: Leaving directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/doc/credentials'
make[4]: Leaving directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/doc/credentials'
Making all in latex
make[4]: Entering directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/doc/latex'
make[4]: Nothing to be done for 'all'.
make[4]: Leaving directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/doc/latex'
make[4]: Entering directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/doc'
make[4]: Nothing to be done for 'all-am'.
make[4]: Leaving directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/doc'
make[3]: Leaving directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/doc'
make[2]: Leaving directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/doc'
make[2]: Entering directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7'
make[2]: Leaving directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7'
make[1]: Leaving directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7'
phase `build' succeeded after 149.4 seconds
starting phase `check'
Making check in gl
make[1]: Entering directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/gl'
make  check-recursive
make[2]: Entering directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/gl'
Making check in .
make[3]: Entering directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/gl'
make[3]: Nothing to be done for 'check-am'.
make[3]: Leaving directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/gl'
Making check in tests
make[3]: Entering directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/gl/tests'
make  check-recursive
make[4]: Entering directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/gl/tests'
Making check in .
make[5]: Entering directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/gl/tests'
make  test-accept test-alloca-opt test-arpa_inet test-binary-io test-bind test-byteswap test-c-ctype test-c-strcasecmp test-c-strncasecmp test-cloexec test-close test-connect test-ctype test-dup2 test-environ test-errno test-fcntl-h test-fcntl test-fdopen test-fgetc test-float test-fputc test-fread test-fstat test-ftell test-ftell3 test-ftello test-ftello3 test-ftello4 test-ftruncate test-func test-fwrite test-getcwd-lgpl test-getdelim test-getdtablesize test-getline test-gettimeofday test-ignore-value test-inet_ntop test-inet_pton test-intprops test-inttypes test-ioctl test-isblank test-langinfo test-limits-h test-listen test-locale test-localename test-lstat test-malloca test-memchr test-nanosleep test-netdb test-netinet_in test-open test-pathmax test-perror test-perror2 test-pipe test-r
 aise test-read-file test-select test-select-fd test-select-stdin test-setenv test-setlocale1 test-setlocale2 test-setsockopt test-sigaction test-signal-h test-sigprocmask test-sleep test-snp
 rintf test-sockets test-stat test-stat-time test-stdalign test-stdbool test-stddef test-stdint test-stdio test-stdlib test-strerror test-strerror_r test-string test-strings test-strnlen test-strverscmp test-symlink test-sys_ioctl test-sys_select test-sys_socket test-sys_stat test-sys_time test-sys_types test-sys_uio test-time test-unistd test-unsetenv test-vasnprintf test-vasprintf test-verify test-vsnprintf test-wchar libtests.a
make[6]: Entering directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/gl/tests'
  CC       test-accept.o
  CC       binary-io.o
  CC       cloexec.o
  CC       fd-hook.o
  CC       localename.o
  CC       localename-table.o
  CC       malloca.o
  CC       sig-handler.o
  CC       sockets.o
  CC       glthread/threadlib.o
  CC       fcntl.o
  CC       ioctl.o
  CC       nanosleep.o
  CC       strerror_r.o
  CC       test-alloca-opt.o
  CC       test-arpa_inet.o
  CC       test-binary-io.o
  CC       test-bind.o
  CC       test-byteswap.o
  CC       test-c-ctype.o
  CC       test-c-strcasecmp.o
  CC       test-c-strncasecmp.o
  CC       test-cloexec.o
  CC       test-close.o
  CC       test-connect.o
  CC       test-ctype.o
  CC       test-dup2.o
  CC       test-environ.o
  CC       test-errno.o
  CC       test-fcntl-h.o
  CC       test-fcntl.o
  CC       test-fdopen.o
  CC       test-fgetc.o
  CC       test-float.o
  CC       test-fputc.o
  CC       test-fread.o
  CC       test-fstat.o
  CC       test-ftell.o
  CC       test-ftell3.o
  CC       test-ftello.o
  CC       test-ftello3.o
  CC       test-ftello4.o
  CC       test-ftruncate.o
  CC       test-func.o
  CC       test-fwrite.o
  CC       test-getcwd-lgpl.o
  CC       test-getdelim.o
  CC       test-getdtablesize.o
  CC       test-getline.o
  CC       test-gettimeofday.o
  CC       test-ignore-value.o
  CC       test-inet_ntop.o
  CC       test-inet_pton.o
  CC       test-intprops.o
  CC       test-inttypes.o
  CC       test-ioctl.o
  CC       test-isblank.o
  CC       test-langinfo.o
  CC       test-limits-h.o
  CC       test-listen.o
  CC       test-locale.o
  CC       test-localename.o
  CC       test-lstat.o
  CC       test-malloca.o
  CC       test-memchr.o
  CC       test-nanosleep.o
  CC       test-netdb.o
  CC       test-netinet_in.o
  CC       test-open.o
  CC       test-pathmax.o
  CC       test-perror.o
  CC       test-perror2.o
  CC       test-pipe.o
  CC       test-raise.o
  CC       test-read-file.o
  CC       test-select.o
  CC       test-select-fd.o
  CC       test-select-stdin.o
  CC       test-setenv.o
  CC       test-setlocale1.o
  CC       test-setlocale2.o
  CC       test-setsockopt.o
  CC       test-sigaction.o
  CC       test-signal-h.o
  CC       test-sigprocmask.o
  CC       test-sleep.o
  CC       test-snprintf.o
  CC       test-sockets.o
  CC       test-stat.o
  CC       test-stat-time.o
  CC       test-stdalign.o
  CC       test-stdbool.o
  CC       test-stddef.o
  CC       test-stdint.o
  CC       test-stdio.o
  CC       test-stdlib.o
  CC       test-strerror.o
  CC       test-strerror_r.o
  CC       test-string.o
  CC       test-strings.o
  CC       test-strnlen.o
  CC       test-strverscmp.o
  CC       test-symlink.o
  CC       test-sys_ioctl.o
  CC       test-sys_select.o
  CC       test-sys_socket.o
  CC       test-sys_stat.o
  CC       test-sys_time.o
  CC       test-sys_types.o
  CC       test-sys_uio.o
  CC       test-time.o
  CC       test-unistd.o
  CC       test-unsetenv.o
  CC       test-vasnprintf.o
  CC       test-vasprintf.o
  CC       test-verify.o
  CC       test-vsnprintf.o
  CC       test-wchar.o
  CC       glthread/lock.o
  AR       libtests.a
  CCLD     test-alloca-opt
  CCLD     test-accept
  CCLD     test-arpa_inet
  CCLD     test-binary-io
  CCLD     test-bind
  CCLD     test-byteswap
  CCLD     test-c-ctype
  CCLD     test-c-strcasecmp
  CCLD     test-c-strncasecmp
  CCLD     test-cloexec
  CCLD     test-close
  CCLD     test-connect
  CCLD     test-ctype
  CCLD     test-dup2
  CCLD     test-environ
  CCLD     test-errno
  CCLD     test-fcntl-h
  CCLD     test-fcntl
  CCLD     test-fdopen
  CCLD     test-fgetc
  CCLD     test-float
  CCLD     test-fputc
  CCLD     test-fread
  CCLD     test-fstat
  CCLD     test-ftell
  CCLD     test-ftell3
  CCLD     test-ftello
  CCLD     test-ftello3
  CCLD     test-ftello4
  CCLD     test-ftruncate
  CCLD     test-func
  CCLD     test-fwrite
  CCLD     test-getcwd-lgpl
  CCLD     test-getdelim
  CCLD     test-getdtablesize
  CCLD     test-getline
  CCLD     test-gettimeofday
  CCLD     test-ignore-value
  CCLD     test-inet_ntop
  CCLD     test-inet_pton
  CCLD     test-intprops
  CCLD     test-inttypes
  CCLD     test-ioctl
  CCLD     test-isblank
  CCLD     test-langinfo
  CCLD     test-limits-h
  CCLD     test-listen
  CCLD     test-locale
  CCLD     test-localename
  CCLD     test-lstat
  CCLD     test-malloca
  CCLD     test-memchr
  CCLD     test-nanosleep
  CCLD     test-netdb
  CCLD     test-netinet_in
  CCLD     test-open
  CCLD     test-pathmax
  CCLD     test-perror
  CCLD     test-perror2
  CCLD     test-pipe
  CCLD     test-raise
  CCLD     test-read-file
  CCLD     test-select
  CCLD     test-select-fd
  CCLD     test-select-stdin
  CCLD     test-setenv
  CCLD     test-setlocale1
  CCLD     test-setlocale2
  CCLD     test-setsockopt
  CCLD     test-sigaction
  CCLD     test-signal-h
  CCLD     test-sigprocmask
  CCLD     test-sleep
  CCLD     test-snprintf
  CCLD     test-sockets
  CCLD     test-stat
  CCLD     test-stat-time
  CCLD     test-stdalign
  CCLD     test-stdbool
  CCLD     test-stddef
  CCLD     test-stdint
  CCLD     test-stdio
  CCLD     test-stdlib
  CCLD     test-strerror
  CCLD     test-strerror_r
  CCLD     test-string
  CCLD     test-strings
  CCLD     test-strnlen
  CCLD     test-strverscmp
  CCLD     test-symlink
  CCLD     test-sys_ioctl
  CCLD     test-sys_select
  CCLD     test-sys_socket
  CCLD     test-sys_stat
  CCLD     test-sys_time
  CCLD     test-sys_types
  CCLD     test-sys_uio
  CCLD     test-time
  CCLD     test-unistd
  CCLD     test-unsetenv
  CCLD     test-vasnprintf
  CCLD     test-vasprintf
  CCLD     test-verify
  CCLD     test-vsnprintf
make[6]: 'libtests.a' is up to date.
  CCLD     test-wchar
make[6]: Leaving directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/gl/tests'
make  check-TESTS
make[6]: Entering directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/gl/tests'
make[7]: Entering directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/gl/tests'
PASS: test-accept
PASS: test-alloca-opt
PASS: test-arpa_inet
PASS: test-binary-io.sh
PASS: test-bind
PASS: test-c-ctype
PASS: test-byteswap
PASS: test-cloexec
PASS: test-c-strcase.sh
PASS: test-close
PASS: test-connect
PASS: test-ctype
PASS: test-dup2
PASS: test-environ
PASS: test-errno
PASS: test-fcntl-h
PASS: test-fcntl
PASS: test-fdopen
PASS: test-fgetc
PASS: test-float
PASS: test-fputc
PASS: test-fread
PASS: test-fstat
PASS: test-ftell.sh
PASS: test-ftell2.sh
PASS: test-ftell3
PASS: test-ftello.sh
PASS: test-ftello2.sh
PASS: test-ftello3
PASS: test-ftruncate.sh
PASS: test-ftello4.sh
PASS: test-func
PASS: test-fwrite
PASS: test-getdelim
PASS: test-getcwd-lgpl
PASS: test-getdtablesize
PASS: test-getline
PASS: test-gettimeofday
PASS: test-ignore-value
PASS: test-inet_ntop
PASS: test-inet_pton
PASS: test-intprops
PASS: test-inttypes
PASS: test-ioctl
PASS: test-isblank
PASS: test-langinfo
PASS: test-limits-h
PASS: test-locale
PASS: test-listen
PASS: test-lstat
PASS: test-localename
PASS: test-malloca
PASS: test-memchr
PASS: test-netdb
PASS: test-netinet_in
PASS: test-open
PASS: test-pathmax
PASS: test-perror.sh
PASS: test-perror2
PASS: test-pipe
PASS: test-raise
PASS: test-read-file
PASS: test-select
PASS: test-nanosleep
PASS: test-select-out.sh
PASS: test-setenv
PASS: test-setlocale1.sh
PASS: test-setlocale2.sh
PASS: test-setsockopt
PASS: test-sigaction
PASS: test-signal-h
PASS: test-select-in.sh
PASS: test-sigprocmask
PASS: test-snprintf
PASS: test-sockets
PASS: test-stat
PASS: test-stat-time
PASS: test-stdalign
PASS: test-stdbool
PASS: test-stddef
PASS: test-stdint
PASS: test-stdio
PASS: test-stdlib
PASS: test-strerror
PASS: test-strerror_r
PASS: test-string
PASS: test-strings
PASS: test-strnlen
PASS: test-strverscmp
PASS: test-symlink
PASS: test-sys_ioctl
PASS: test-sys_select
PASS: test-sys_socket
PASS: test-sys_stat
PASS: test-sys_time
PASS: test-sys_types
PASS: test-sys_uio
PASS: test-init.sh
PASS: test-time
PASS: test-unistd
PASS: test-sleep
PASS: test-unsetenv
PASS: test-vasnprintf
PASS: test-vasprintf
SKIP: test-vc-list-files-git.sh
SKIP: test-vc-list-files-cvs.sh
PASS: test-verify
PASS: test-vsnprintf
PASS: test-wchar
PASS: test-verify.sh
============================================================================
Testsuite summary for GnuTLS 3.6.7
============================================================================
# TOTAL: 110
# PASS:  108
# SKIP:  2
# XFAIL: 0
# FAIL:  0
# XPASS: 0
# ERROR: 0
============================================================================
make[7]: Leaving directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/gl/tests'
make[6]: Leaving directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/gl/tests'
make[5]: Leaving directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/gl/tests'
make[4]: Leaving directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/gl/tests'
make[3]: Leaving directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/gl/tests'
make[2]: Leaving directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/gl'
make[1]: Leaving directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/gl'
Making check in lib
make[1]: Entering directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/lib'
make  check-recursive
make[2]: Entering directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/lib'
Making check in includes
make[3]: Entering directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/lib/includes'
make[3]: Nothing to be done for 'check'.
make[3]: Leaving directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/lib/includes'
Making check in x509
make[3]: Entering directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/lib/x509'
make  check-am
make[4]: Entering directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/lib/x509'
make[4]: Nothing to be done for 'check-am'.
make[4]: Leaving directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/lib/x509'
make[3]: Leaving directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/lib/x509'
Making check in auth
make[3]: Entering directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/lib/auth'
make[3]: Nothing to be done for 'check'.
make[3]: Leaving directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/lib/auth'
Making check in ext
make[3]: Entering directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/lib/ext'
make[3]: Nothing to be done for 'check'.
make[3]: Leaving directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/lib/ext'
Making check in algorithms
make[3]: Entering directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/lib/algorithms'
make[3]: Nothing to be done for 'check'.
make[3]: Leaving directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/lib/algorithms'
Making check in extras
make[3]: Entering directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/lib/extras'
make[3]: Nothing to be done for 'check'.
make[3]: Leaving directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/lib/extras'
Making check in accelerated
make[3]: Entering directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/lib/accelerated'
Making check in x86
make[4]: Entering directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/lib/accelerated/x86'
make[4]: Nothing to be done for 'check'.
make[4]: Leaving directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/lib/accelerated/x86'
make[4]: Entering directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/lib/accelerated'
make[4]: Nothing to be done for 'check-am'.
make[4]: Leaving directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/lib/accelerated'
make[3]: Leaving directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/lib/accelerated'
Making check in nettle
make[3]: Entering directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/lib/nettle'
make[3]: Nothing to be done for 'check'.
make[3]: Leaving directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/lib/nettle'
make[3]: Entering directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/lib'
make[3]: Nothing to be done for 'check-am'.
make[3]: Leaving directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/lib'
make[2]: Leaving directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/lib'
make[1]: Leaving directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/lib'
Making check in extra
make[1]: Entering directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/extra'
Making check in includes
make[2]: Entering directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/extra/includes'
make[2]: Nothing to be done for 'check'.
make[2]: Leaving directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/extra/includes'
make[2]: Entering directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/extra'
make[2]: Nothing to be done for 'check-am'.
make[2]: Leaving directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/extra'
make[1]: Leaving directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/extra'
Making check in po
make[1]: Entering directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/po'
make[1]: Nothing to be done for 'check'.
make[1]: Leaving directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/po'
Making check in src/gl
make[1]: Entering directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/src/gl'
make  check-recursive
make[2]: Entering directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/src/gl'
make[3]: Entering directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/src/gl'
make[3]: Nothing to be done for 'check-am'.
make[3]: Leaving directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/src/gl'
make[2]: Leaving directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/src/gl'
make[1]: Leaving directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/src/gl'
Making check in src
make[1]: Entering directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/src'
make  check-recursive
make[2]: Entering directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/src'
Making check in libopts
make[3]: Entering directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/src/libopts'
make  check-am
make[4]: Entering directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/src/libopts'
make[4]: Nothing to be done for 'check-am'.
make[4]: Leaving directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/src/libopts'
make[3]: Leaving directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/src/libopts'
make[3]: Entering directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/src'
make[3]: Nothing to be done for 'check-am'.
make[3]: Leaving directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/src'
make[2]: Leaving directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/src'
make[1]: Leaving directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/src'
Making check in tests
make[1]: Entering directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/tests'
Making check in .
make[2]: Entering directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/tests'
make   tls13/supported_versions tls13/tls12-no-tls13-exts tls13/post-handshake-with-cert tls13/post-handshake-without-cert tls13/cookie tls13/key_share tls13/prf tls13/post-handshake-with-cert-ticket tls12-rollback-detection tls11-rollback-detection tls12-check-rollback-val tls11-check-rollback-val tls13/hello_random_value tls13/post-handshake-with-psk tls13/post-handshake-with-cert-auto tls13/anti_replay tls13/hello_retry_request tls13/psk-ext tls13/key_update tls13/key_limits tls13/multi-ocsp tls13/ocsp-client tls13/change_cipher_spec tls13-cipher-neg tls13/no-psk-exts tls13/psk-dumbfw tls13-early-start mini-record-2 simple gnutls_hmac_fast set_pkcs12_cred cert certuniqueid tls-neg-ext-key mpi certificate_set_x509_crl dn parse_ca x509-dn x509-dn-decode record-sizes hostname-check cve-200
 8-4989 pkcs12_s2k chainverify record-sizes-range crq_key_id x509sign-verify sign-verify cve-2009-1415 cve-2009-1416 tls10-server-kx-neg tls11-server-kx-neg tls12-server-kx-neg ssl30-server-k
 x-neg tls12-cipher-neg tls11-cipher-neg tls10-cipher-neg ssl30-cipher-neg crq_apis init_roundtrip pkcs12_s2k_pem dn2 tls12-rehandshake-cert-3 nul-in-x509-names x509_altname pkcs12_encode mini-x509 gnutls_session_set_id rng-fork mini-eagain-dtls resume-dtls empty_retrieve_function tls13-rehandshake-cert gnutls_ext_raw_parse handshake-large-cert x509cert x509cert-tl infoaccess mini-dtls-hello-verify sign-verify-ed25519-rfc8080 trustdb-tofu dtls-rehandshake-anon mini-alpn mini-dtls-large mini-termination mini-x509-cas mini-x509-2 pkcs12_simple tls-pthread mini-emsgsize-dtls chainverify-unsorted mini-overhead tls12-ffdhe mini-dtls-heartbeat mini-x509-callbacks key-openssl priorities priorities-groups gnutls_x509_privkey_import gnutls_x509_crt_list_import sign-verify-ext4 tls-neg-ext4-key resu
 me-lifetime memset0 memset1 mini-dtls-srtp rsa-encrypt-decrypt mini-loss-time gnutls-strcodes mini-record mini-dtls-record handshake-timeout mini-record-range cert-status fips-mode-pthread r
 sa-psk global-init sec-params sign-verify-data fips-test fips-override-test mini-global-load name-constraints x509-extensions long-session-id mini-x509-callbacks-intr mini-dtls-lowmtu set_x509_key_file-late crlverify mini-dtls-discard init_fds mini-record-failure tls12-rehandshake-cert-2 custom-urls set_x509_key_mem set_x509_key_file tls12-rehandshake-cert-auto tls12-rehandshake-set-prio mini-chain-unsorted x509-verify-with-crl mini-dtls-mtu privkey-verify-broken mini-dtls-record-asym key-import-export priority-set priority-set2 pubkey-import-export sign-is-secure spki spki-abstract rsa-rsa-pss mini-dtls-fork dtls-pthread mini-key-material x509cert-invalid tls-ext-register tls-supplemental mini-dtls0-9 duplicate-extensions record-retvals mini-server-name tls-etm tls-force-etm x509-cert-ca
 llback alerts client-sign-md5-rep tls12-invalid-key-exchanges session-rdn-read tls13-cert-key-exchange x509-cert-callback-ocsp gnutls_ocsp_resp_list_import2 server-sign-md5-rep privkey-keyge
 n mini-tls-nonblock no-signal pkcs7-gen dtls-etm x509sign-verify-rsa x509sign-verify-ecdsa x509sign-verify-gost mini-alignment oids atfork prf psk-file priority-init2 post-client-hello-change-prio status-request status-request-ok status-request-missing sign-verify-ext fallback-scsv pkcs8-key-decode urls dtls-rehandshake-cert key-usage-rsa key-usage-ecdhe-rsa mini-session-verify-function auto-verify record-timeouts mini-dtls-hello-verify-48 set-default-prio tls12-anon-upgrade global-init-override tlsext-decoding rsa-psk-cb rehandshake-switch-cert rehandshake-switch-cert-allow rehandshake-switch-cert-client rehandshake-switch-cert-client-allow handshake-versions dtls-handshake-versions dtls-max-record tls12-max-record alpn-server-prec ocsp-filename-memleak dh-params rehandshake-ext-secret p
 cert-list session-export-funcs handshake-false-start version-checks key-material-dtls key-material-set-dtls system-prio-file name-constraints-merge crl-basic crq-basic send-client-cert custo
 m-urls-override hex rehandshake-switch-psk-id rehandshake-switch-srp-id base64 srpbase64 pkcs1-digest-info set_x509_key set_x509_key_file_der set_x509_pkcs12_key crt_apis tls12-cert-key-exchange tls11-cert-key-exchange tls10-cert-key-exchange ssl30-cert-key-exchange dtls12-cert-key-exchange dtls10-cert-key-exchange x509-cert-callback-legacy keylog-env ssl2-hello tlsfeature-ext dtls-rehandshake-cert-2 dtls-session-ticket-lost tlsfeature-crt dtls-rehandshake-cert-3 resume-with-false-start set_x509_key_file_ocsp client-fastopen rng-sigint srp rng-pthread safe-renegotiation/srn0 safe-renegotiation/srn1 safe-renegotiation/srn2 safe-renegotiation/srn3 safe-renegotiation/srn4 safe-renegotiation/srn5 rsa-illegal-import set_x509_ocsp_multi_invalid set_key set_x509_key_file_ocsp_multi2 set_x509_ocs
 p_multi_unknown set_x509_ocsp_multi_pem tls-ext-not-in-dtls set_key_utf8 set_x509_key_utf8 insecure_key handshake-large-packet client_dsa_key server_ecdsa_key tls-session-ext-register tls-se
 ssion-supplemental multi-alerts naked-alerts pkcs7-cat-parse set_known_dh_params_x509 set_known_dh_params_anon set_known_dh_params_psk session-tickets-ok session-tickets-missing set_x509_key_file_legacy status-request-ext gnutls_x509_crt_sign gnutls_x509_crq_sign dtls-repro-20170915 rng-no-onload dtls1-2-mtu-check crl_apis cert_verify_inv_utf8 no-extensions hostname-check-utf8 pkcs8-key-decode-encrypted priority-mix pkcs7 send-data-before-handshake recv-data-before-handshake crt_inv_write x509sign-verify-error rng-op-nonce rng-op-random rng-op-key x509-dn-decode-compat ip-check mini-x509-ipaddr trust-store base64-raw random-art dhex509self dss-sig-val sign-pk-api tls-session-ext-override record-pad tls13-server-kx-neg gnutls_ext_raw_parse_dtls key-export-pkcs8 null_retrieve_function tls-r
 ecord-size-limit tls-crt_type-neg resume-with-stek-expiration resume-with-previous-stek rawpk-api     ocsp   x509self x509dn anonself pskself dhepskself setcredcrash tls12-resume-x509 tls12-
 resume-psk tls12-resume-anon tls13-resume-x509 tls13-resume-psk tls13-early-data tls13-early-data-neg resume-with-record-size-limit  dtls-stress  \
  rfc2253-escape-test rsa-md5-collision/rsa-md5-collision.sh systemkey.sh dtls/dtls dtls/dtls-resume fastopen.sh pkgconfig.sh starttls.sh starttls-ftp.sh starttls-smtp.sh starttls-lmtp.sh starttls-pop3.sh starttls-xmpp.sh starttls-nntp.sh starttls-sieve.sh ocsp-tests/ocsp-tls-connection ocsp-tests/ocsp-must-staple-connection ocsp-tests/ocsp-test cipher-listings.sh sni-hostname.sh server-multi-keys.sh psktool.sh ocsp-tests/ocsp-load-chain gnutls-cli-save-data.sh gnutls-cli-debug.sh sni-resume.sh ocsp-tests/ocsptool cert-reencoding.sh pkcs7-cat.sh long-crl.sh serv-udp.sh logfile-option.sh gnutls-cli-resume.sh gnutls-cli-self-signed.sh gnutls-cli-invalid-crl.sh    
make[3]: Entering directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/tests'
  CC       tls13-cipher-neg.o
  CC       tls13-early-start.o
  CC       mini-record-2.o
  CC       simple.o
  CC       gnutls_hmac_fast.o
  CC       set_pkcs12_cred.o
  CC       cert.o
  CC       certuniqueid.o
  CC       tls-neg-ext-key.o
  CC       mpi-mpi.o
  CC       certificate_set_x509_crl.o
  CC       dn.o
  CC       parse_ca.o
  CC       x509-dn.o
  CC       x509-dn-decode.o
  CC       record-sizes.o
  CC       hostname-check.o
  CC       cve-2008-4989.o
  CC       pkcs12_s2k-pkcs12_s2k.o
  CC       chainverify.o
  CC       record-sizes-range.o
  CC       crq_key_id.o
  CC       x509sign-verify.o
  CC       sign-verify.o
  CC       cve-2009-1415.o
  CC       cve-2009-1416.o
  CC       tls10-server-kx-neg.o
  CC       tls11-server-kx-neg.o
  CC       tls12-server-kx-neg.o
  CC       ssl30-server-kx-neg.o
In file included from ssl30-server-kx-neg.c:38:0:
server-kx-neg-common.c:114:13: warning: 'try' defined but not used [-Wunused-function]
 static void try(test_case_st *test)
             ^~~
  CC       tls12-cipher-neg.o
  CC       tls11-cipher-neg.o
  CC       tls10-cipher-neg.o
  CC       ssl30-cipher-neg.o
  CC       crq_apis.o
In file included from ssl30-cipher-neg.c:38:0:
cipher-neg-common.c:33:13: warning: 'try' defined but not used [-Wunused-function]
 static void try(test_case_st *test)
             ^~~
  CC       init_roundtrip.o
  CC       pkcs12_s2k_pem.o
  CC       dn2.o
  CC       tls12-rehandshake-cert-3.o
  CC       nul-in-x509-names.o
  CC       x509_altname.o
  CC       pkcs12_encode.o
  CC       mini-x509.o
  CC       gnutls_session_set_id.o
  CC       rng-fork.o
  CC       mini-eagain-dtls.o
  CC       resume-dtls.o
  CC       empty_retrieve_function.o
  CC       tls13-rehandshake-cert.o
  CC       gnutls_ext_raw_parse.o
  CC       handshake-large-cert.o
  CC       x509cert.o
  CC       x509cert-tl.o
  CC       infoaccess.o
  CC       mini-dtls-hello-verify.o
  CC       sign-verify-ed25519-rfc8080.o
  CC       trustdb-tofu.o
  CC       dtls-rehandshake-anon.o
  CC       mini-alpn.o
  CC       mini-dtls-large.o
  CC       mini-termination.o
  CC       mini-x509-cas.o
  CC       mini-x509-2.o
  CC       pkcs12_simple.o
  CC       tls-pthread.o
  CC       mini-emsgsize-dtls.o
  CC       chainverify-unsorted.o
  CC       mini-overhead.o
  CC       tls12-ffdhe.o
  CC       mini-dtls-heartbeat.o
  CC       mini-x509-callbacks.o
  CC       key-openssl.o
  CC       priorities.o
  CC       priorities-groups.o
  CC       gnutls_x509_privkey_import.o
  CC       gnutls_x509_crt_list_import.o
  CC       sign-verify-ext4.o
  CC       tls-neg-ext4-key.o
  CC       resume-lifetime.o
  CC       memset0-memset.o
  CC       memset1-memset.o
  CC       mini-dtls-srtp.o
  CC       rsa-encrypt-decrypt.o
  CC       mini-loss-time.o
  CC       gnutls-strcodes.o
  CC       mini-record.o
  CC       mini-dtls-record.o
  CC       handshake-timeout.o
  CC       mini-record-range.o
  CC       cert-status.o
  CC       fips-mode-pthread.o
  CC       rsa-psk.o
  CC       global-init.o
  CC       sec-params.o
  CC       sign-verify-data.o
  CC       fips-test.o
  CC       fips-override-test.o
  CC       mini-global-load.o
  CC       name-constraints.o
  CC       x509-extensions.o
  CC       long-session-id.o
  CC       mini-x509-callbacks-intr.o
  CC       mini-dtls-lowmtu.o
  CC       set_x509_key_file-late.o
  CC       crlverify.o
  CC       mini-dtls-discard.o
  CC       init_fds.o
  CC       mini-record-failure.o
  CC       tls12-rehandshake-cert-2.o
  CC       custom-urls.o
  CC       set_x509_key_mem.o
  CC       set_x509_key_file.o
  CC       tls12-rehandshake-cert-auto.o
  CC       tls12-rehandshake-set-prio.o
  CC       mini-chain-unsorted.o
  CC       x509-verify-with-crl.o
  CC       mini-dtls-mtu.o
  CC       privkey-verify-broken.o
  CC       mini-dtls-record-asym.o
  CC       key-import-export.o
  CC       priority-set.o
  CC       priority-set2.o
  CC       pubkey-import-export.o
  CC       sign-is-secure.o
  CC       spki.o
  CC       spki-abstract.o
  CC       rsa-rsa-pss.o
  CC       mini-dtls-fork.o
  CC       dtls-pthread.o
  CC       mini-key-material.o
  CC       x509cert-invalid.o
  CC       tls-ext-register.o
  CC       tls-supplemental.o
  CC       mini-dtls0-9.o
  CC       duplicate-extensions.o
  CC       record-retvals.o
  CC       mini-server-name.o
  CC       tls-etm.o
  CC       tls-force-etm.o
  CC       x509-cert-callback.o
  CC       alerts.o
  CC       client-sign-md5-rep.o
  CC       tls12-invalid-key-exchanges.o
  CC       session-rdn-read.o
  CC       common-cert-key-exchange.o
  CC       tls13-cert-key-exchange.o
  CC       x509-cert-callback-ocsp.o
  CC       gnutls_ocsp_resp_list_import2.o
  CC       server-sign-md5-rep.o
  CC       privkey-keygen.o
  CC       mini-tls-nonblock.o
  CC       no-signal.o
  CC       pkcs7-gen.o
  CC       dtls-etm.o
  CC       x509sign-verify-rsa.o
  CC       x509sign-verify-ecdsa.o
  CC       x509sign-verify-gost.o
  CC       mini_alignment-mini-alignment.o
mini-alignment.c: In function 'myaes_setkey':
mini-alignment.c:158:3: warning: 'nettle_aes_set_encrypt_key' is deprecated [-Wdeprecated-declarations]
   aes_set_encrypt_key(&ctx->aes, keysize, userkey);
   ^~~~~~~~~~~~~~~~~~~
In file included from mini-alignment.c:53:0:
/gnu/store/lvnybsygfd6gya6xbdv48g72lb0iqqzx-nettle-3.5.1/include/nettle/aes.h:44:29: note: declared here
 #define aes_set_encrypt_key nettle_aes_set_encrypt_key
                             ^
/gnu/store/lvnybsygfd6gya6xbdv48g72lb0iqqzx-nettle-3.5.1/include/nettle/aes.h:158:1: note: in expansion of macro 'aes_set_encrypt_key'
 aes_set_encrypt_key(struct aes_ctx *ctx,
 ^~~~~~~~~~~~~~~~~~~
mini-alignment.c:160:3: warning: 'nettle_aes_set_decrypt_key' is deprecated [-Wdeprecated-declarations]
   aes_set_decrypt_key(&ctx->aes, keysize, userkey);
   ^~~~~~~~~~~~~~~~~~~
In file included from mini-alignment.c:53:0:
/gnu/store/lvnybsygfd6gya6xbdv48g72lb0iqqzx-nettle-3.5.1/include/nettle/aes.h:45:29: note: declared here
 #define aes_set_decrypt_key nettle_aes_set_decrypt_key
                             ^
/gnu/store/lvnybsygfd6gya6xbdv48g72lb0iqqzx-nettle-3.5.1/include/nettle/aes.h:163:1: note: in expansion of macro 'aes_set_decrypt_key'
 aes_set_decrypt_key(struct aes_ctx *ctx,
 ^~~~~~~~~~~~~~~~~~~
mini-alignment.c: In function 'myaes_encrypt':
mini-alignment.c:189:2: warning: 'nettle_aes_encrypt' is deprecated [-Wdeprecated-declarations]
  cbc_encrypt(&ctx->aes, (nettle_cipher_func*)aes_encrypt, 16, ctx->iv, src_size, dst, src);
  ^~~~~~~~~~~
In file included from mini-alignment.c:53:0:
/gnu/store/lvnybsygfd6gya6xbdv48g72lb0iqqzx-nettle-3.5.1/include/nettle/aes.h:47:21: note: declared here
 #define aes_encrypt nettle_aes_encrypt
                     ^
/gnu/store/lvnybsygfd6gya6xbdv48g72lb0iqqzx-nettle-3.5.1/include/nettle/aes.h:173:1: note: in expansion of macro 'aes_encrypt'
 aes_encrypt(const struct aes_ctx *ctx,
 ^~~~~~~~~~~
mini-alignment.c: In function 'myaes_decrypt':
mini-alignment.c:209:2: warning: 'nettle_aes_decrypt' is deprecated [-Wdeprecated-declarations]
  cbc_decrypt(&ctx->aes, (nettle_cipher_func*)aes_decrypt, 16, ctx->iv, src_size, dst, src);
  ^~~~~~~~~~~
In file included from mini-alignment.c:53:0:
/gnu/store/lvnybsygfd6gya6xbdv48g72lb0iqqzx-nettle-3.5.1/include/nettle/aes.h:48:21: note: declared here
 #define aes_decrypt nettle_aes_decrypt
                     ^
/gnu/store/lvnybsygfd6gya6xbdv48g72lb0iqqzx-nettle-3.5.1/include/nettle/aes.h:177:1: note: in expansion of macro 'aes_decrypt'
 aes_decrypt(const struct aes_ctx *ctx,
 ^~~~~~~~~~~
  CC       oids.o
  CC       atfork-atfork.o
  CC       prf.o
  CC       psk-file.o
  CC       priority-init2.o
  CC       post-client-hello-change-prio.o
  CC       status-request.o
  CC       status-request-ok.o
  CC       status-request-missing.o
  CC       sign-verify-ext.o
  CC       fallback-scsv.o
  CC       pkcs8-key-decode.o
  CC       urls.o
  CC       dtls-rehandshake-cert.o
  CC       key-usage-rsa.o
  CC       key-usage-ecdhe-rsa.o
  CC       mini-session-verify-function.o
  CC       auto-verify.o
  CC       record-timeouts.o
  CC       mini-dtls-hello-verify-48.o
  CC       set-default-prio.o
  CC       tls12-anon-upgrade.o
  CC       global-init-override.o
  CC       tlsext-decoding.o
  CC       rsa-psk-cb.o
  CC       rehandshake-switch-cert.o
  CC       rehandshake-switch-cert-allow.o
  CC       rehandshake-switch-cert-client.o
  CC       rehandshake-switch-cert-client-allow.o
  CC       handshake-versions.o
  CC       dtls-handshake-versions.o
  CC       dtls-max-record.o
  CC       tls12-max-record.o
  CC       alpn-server-prec.o
  CC       ocsp-filename-memleak.o
  CC       dh-params.o
  CC       rehandshake-ext-secret.o
  CC       pcert-list.o
  CC       session-export-funcs.o
  CC       handshake-false-start.o
  CC       version-checks.o
  CC       key-material-dtls.o
  CC       key-material-set-dtls.o
  CC       system-prio-file.o
  CC       name_constraints_merge-name-constraints-merge.o
  CC       crl-basic.o
  CC       crq-basic.o
  CC       send-client-cert.o
  CC       custom-urls-override.o
  CC       hex.o
  CC       rehandshake-switch-psk-id.o
  CC       rehandshake-switch-srp-id.o
  CC       base64.o
  CC       srpbase64.o
  CC       pkcs1-digest-info.o
  CC       set_x509_key.o
  CC       set_x509_key_file_der.o
  CC       set_x509_pkcs12_key.o
  CC       crt_apis.o
  CC       tls12-cert-key-exchange.o
  CC       tls11-cert-key-exchange.o
  CC       tls10-cert-key-exchange.o
  CC       ssl30-cert-key-exchange.o
  CC       dtls12-cert-key-exchange.o
  CC       dtls10-cert-key-exchange.o
  CC       x509-cert-callback-legacy.o
  CC       keylog-env.o
  CC       ssl2-hello.o
  CC       tlsfeature-ext.o
  CC       dtls-rehandshake-cert-2.o
  CC       dtls-session-ticket-lost.o
  CC       tlsfeature-crt.o
  CC       dtls-rehandshake-cert-3.o
  CC       resume-with-false-start.o
  CC       set_x509_key_file_ocsp.o
  CC       client-fastopen.o
  CC       rng-sigint.o
  CC       srp.o
  CC       rng-pthread.o
  CC       rsa_illegal_import-rsa-illegal-import.o
  CC       set_x509_ocsp_multi_invalid.o
  CC       set_key.o
  CC       set_x509_key_file_ocsp_multi2.o
  CC       set_x509_ocsp_multi_unknown.o
  CC       set_x509_ocsp_multi_pem.o
  CC       tls-ext-not-in-dtls.o
  CC       set_key_utf8.o
  CC       set_x509_key_utf8.o
  CC       insecure_key.o
  CC       handshake-large-packet.o
  CC       client_dsa_key.o
  CC       server_ecdsa_key.o
  CC       tls-session-ext-register.o
  CC       tls-session-supplemental.o
  CC       multi-alerts.o
  CC       naked-alerts.o
  CC       pkcs7-cat-parse.o
  CC       set_known_dh_params_x509.o
  CC       set_known_dh_params_anon.o
  CC       set_known_dh_params_psk.o
  CC       session-tickets-ok.o
  CC       session-tickets-missing.o
  CC       set_x509_key_file_legacy.o
  CC       status-request-ext.o
  CC       gnutls_x509_crt_sign.o
  CC       gnutls_x509_crq_sign.o
  CC       dtls-repro-20170915.o
  CC       rng-no-onload.o
  CC       dtls1-2-mtu-check.o
  CC       crl_apis.o
  CC       cert_verify_inv_utf8.o
  CC       no-extensions.o
  CC       hostname-check-utf8.o
  CC       pkcs8-key-decode-encrypted.o
  CC       priority-mix.o
  CC       pkcs7.o
  CC       send-data-before-handshake.o
  CC       recv-data-before-handshake.o
  CC       crt_inv_write.o
  CC       x509sign-verify-error.o
  CC       rng-op-nonce.o
  CC       rng-op-random.o
  CC       rng-op-key.o
  CC       x509-dn-decode-compat.o
  CC       ip-check.o
  CC       mini-x509-ipaddr.o
  CC       trust-store.o
  CC       base64-raw.o
  CC       random-art.o
  CC       dhex509self.o
  CC       dss-sig-val.o
  CC       sign-pk-api.o
  CC       tls-session-ext-override.o
  CC       record-pad.o
  CC       tls13-server-kx-neg.o
  CC       gnutls_ext_raw_parse_dtls.o
  CC       key-export-pkcs8.o
  CC       null_retrieve_function.o
  CC       tls-record-size-limit.o
  CC       tls-crt_type-neg.o
  CC       resume-with-stek-expiration.o
  CC       resume-with-previous-stek.o
  CC       rawpk-api.o
  CC       ocsp.o
  CC       x509self.o
  CC       x509dn.o
  CC       anonself.o
  CC       pskself.o
  CC       dhepskself.o
  CC       setcredcrash.o
  CC       tls12_resume_x509-resume.o
  CC       tls12_resume_psk-resume.o
  CC       tls12_resume_anon-resume.o
  CC       tls13_resume_x509-resume.o
  CC       tls13_resume_psk-resume.o
  CC       tls13-early-data.o
  CC       tls13-early-data-neg.o
  CC       resume-with-record-size-limit.o
make[3]: Nothing to be done for 'rfc2253-escape-test'.
make[3]: Nothing to be done for 'rsa-md5-collision/rsa-md5-collision.sh'.
make[3]: Nothing to be done for 'systemkey.sh'.
make[3]: Nothing to be done for 'dtls/dtls'.
make[3]: Nothing to be done for 'dtls/dtls-resume'.
make[3]: Nothing to be done for 'fastopen.sh'.
make[3]: Nothing to be done for 'pkgconfig.sh'.
make[3]: Nothing to be done for 'starttls.sh'.
make[3]: Nothing to be done for 'starttls-ftp.sh'.
make[3]: Nothing to be done for 'starttls-smtp.sh'.
make[3]: Nothing to be done for 'starttls-lmtp.sh'.
make[3]: Nothing to be done for 'starttls-pop3.sh'.
make[3]: Nothing to be done for 'starttls-xmpp.sh'.
make[3]: Nothing to be done for 'starttls-nntp.sh'.
make[3]: Nothing to be done for 'starttls-sieve.sh'.
make[3]: Nothing to be done for 'ocsp-tests/ocsp-tls-connection'.
make[3]: Nothing to be done for 'ocsp-tests/ocsp-must-staple-connection'.
make[3]: Nothing to be done for 'ocsp-tests/ocsp-test'.
make[3]: Nothing to be done for 'cipher-listings.sh'.
make[3]: Nothing to be done for 'sni-hostname.sh'.
make[3]: Nothing to be done for 'server-multi-keys.sh'.
make[3]: Nothing to be done for 'psktool.sh'.
make[3]: Nothing to be done for 'ocsp-tests/ocsp-load-chain'.
make[3]: Nothing to be done for 'gnutls-cli-save-data.sh'.
make[3]: Nothing to be done for 'gnutls-cli-debug.sh'.
make[3]: Nothing to be done for 'sni-resume.sh'.
make[3]: Nothing to be done for 'ocsp-tests/ocsptool'.
make[3]: Nothing to be done for 'cert-reencoding.sh'.
make[3]: Nothing to be done for 'pkcs7-cat.sh'.
make[3]: Nothing to be done for 'long-crl.sh'.
make[3]: Nothing to be done for 'serv-udp.sh'.
make[3]: Nothing to be done for 'logfile-option.sh'.
make[3]: Nothing to be done for 'gnutls-cli-resume.sh'.
make[3]: Nothing to be done for 'gnutls-cli-self-signed.sh'.
make[3]: Nothing to be done for 'gnutls-cli-invalid-crl.sh'.
  CC       tls13/supported_versions.o
  CC       tls13/tls12-no-tls13-exts.o
  CC       tls13/post-handshake-with-cert.o
  CC       tls13/post-handshake-without-cert.o
  CC       tls13/cookie.o
  CC       tls13/key_share.o
  CC       tls13/prf.o
  CC       tls13/post-handshake-with-cert-ticket.o
  CC       tls13/tls12_rollback_detection-rnd-rollback-detection.o
  CC       tls13/tls11_rollback_detection-rnd-rollback-detection.o
  CC       tls13/tls12_check_rollback_val-rnd-check-rollback-val.o
  CC       tls13/tls11_check_rollback_val-rnd-check-rollback-val.o
  CC       tls13/hello_random_value.o
  CC       tls13/post-handshake-with-psk.o
  CC       tls13/post-handshake-with-cert-auto.o
  CC       tls13/anti_replay-anti_replay.o
  CC       tls13/hello_retry_request.o
  CC       tls13/psk-ext.o
  CC       tls13/key_update.o
  CC       tls13/key_limits.o
  CC       tls13/multi-ocsp.o
  CC       tls13/ocsp-client.o
  CC       tls13/change_cipher_spec.o
  CCLD     tls13-cipher-neg
  CC       tls13/no-psk-exts.o
  CC       tls13/psk-dumbfw.o
  CCLD     tls13-early-start
  CCLD     mini-record-2
  CCLD     simple
  CCLD     gnutls_hmac_fast
  CCLD     set_pkcs12_cred
  CCLD     cert
  CCLD     certuniqueid
  CCLD     tls-neg-ext-key
  CCLD     mpi
  CCLD     certificate_set_x509_crl
  CCLD     dn
  CCLD     parse_ca
  CCLD     x509-dn
  CCLD     x509-dn-decode
  CCLD     record-sizes
  CCLD     hostname-check
  CCLD     cve-2008-4989
  CCLD     pkcs12_s2k
  CCLD     chainverify
  CCLD     record-sizes-range
  CCLD     crq_key_id
  CCLD     x509sign-verify
  CCLD     sign-verify
  CCLD     cve-2009-1415
  CCLD     cve-2009-1416
  CCLD     tls10-server-kx-neg
  CCLD     tls11-server-kx-neg
  CCLD     tls12-server-kx-neg
  CCLD     ssl30-server-kx-neg
  CCLD     tls12-cipher-neg
  CCLD     tls11-cipher-neg
  CCLD     tls10-cipher-neg
  CCLD     ssl30-cipher-neg
  CCLD     crq_apis
  CCLD     init_roundtrip
  CCLD     pkcs12_s2k_pem
  CCLD     dn2
  CCLD     tls12-rehandshake-cert-3
  CCLD     nul-in-x509-names
  CCLD     x509_altname
  CCLD     pkcs12_encode
  CCLD     mini-x509
  CCLD     gnutls_session_set_id
  CCLD     rng-fork
  CCLD     mini-eagain-dtls
  CCLD     resume-dtls
  CCLD     empty_retrieve_function
  CCLD     tls13-rehandshake-cert
  CCLD     gnutls_ext_raw_parse
  CCLD     handshake-large-cert
  CCLD     x509cert
  CCLD     x509cert-tl
  CCLD     infoaccess
  CCLD     mini-dtls-hello-verify
  CCLD     sign-verify-ed25519-rfc8080
  CCLD     trustdb-tofu
  CCLD     dtls-rehandshake-anon
  CCLD     mini-alpn
  CCLD     mini-dtls-large
  CCLD     mini-termination
  CCLD     mini-x509-cas
  CCLD     mini-x509-2
  CCLD     pkcs12_simple
  CCLD     tls-pthread
  CCLD     mini-emsgsize-dtls
  CCLD     chainverify-unsorted
  CCLD     mini-overhead
  CCLD     tls12-ffdhe
  CCLD     mini-dtls-heartbeat
  CCLD     mini-x509-callbacks
  CCLD     key-openssl
  CCLD     priorities
  CCLD     priorities-groups
  CCLD     gnutls_x509_privkey_import
  CCLD     gnutls_x509_crt_list_import
  CCLD     sign-verify-ext4
  CCLD     tls-neg-ext4-key
  CCLD     resume-lifetime
  CCLD     memset0
  CCLD     memset1
  CCLD     mini-dtls-srtp
  CCLD     rsa-encrypt-decrypt
  CCLD     mini-loss-time
  CCLD     gnutls-strcodes
  CCLD     mini-record
  CCLD     mini-dtls-record
  CCLD     handshake-timeout
  CCLD     mini-record-range
  CCLD     cert-status
  CCLD     fips-mode-pthread
  CCLD     rsa-psk
  CCLD     global-init
  CCLD     sec-params
  CCLD     sign-verify-data
  CCLD     fips-test
  CCLD     fips-override-test
  CCLD     mini-global-load
  CCLD     name-constraints
  CCLD     x509-extensions
  CCLD     long-session-id
  CCLD     mini-x509-callbacks-intr
  CCLD     mini-dtls-lowmtu
  CCLD     set_x509_key_file-late
  CCLD     crlverify
  CCLD     mini-dtls-discard
  CCLD     init_fds
  CCLD     mini-record-failure
  CCLD     tls12-rehandshake-cert-2
  CCLD     custom-urls
  CCLD     set_x509_key_mem
  CCLD     set_x509_key_file
  CCLD     tls12-rehandshake-cert-auto
  CCLD     tls12-rehandshake-set-prio
  CCLD     mini-chain-unsorted
  CCLD     x509-verify-with-crl
  CCLD     mini-dtls-mtu
  CCLD     privkey-verify-broken
  CCLD     mini-dtls-record-asym
  CCLD     key-import-export
  CCLD     priority-set
  CCLD     priority-set2
  CCLD     pubkey-import-export
  CCLD     sign-is-secure
  CCLD     spki
  CCLD     spki-abstract
  CCLD     rsa-rsa-pss
  CCLD     mini-dtls-fork
  CCLD     dtls-pthread
  CCLD     mini-key-material
  CCLD     x509cert-invalid
  CCLD     tls-ext-register
  CCLD     tls-supplemental
  CCLD     mini-dtls0-9
  CCLD     duplicate-extensions
  CCLD     record-retvals
  CCLD     mini-server-name
  CCLD     tls-etm
  CCLD     tls-force-etm
  CCLD     x509-cert-callback
  CCLD     alerts
  CCLD     client-sign-md5-rep
  CCLD     tls12-invalid-key-exchanges
  CCLD     session-rdn-read
  CCLD     tls13-cert-key-exchange
  CCLD     x509-cert-callback-ocsp
  CCLD     gnutls_ocsp_resp_list_import2
  CCLD     server-sign-md5-rep
  CCLD     privkey-keygen
  CCLD     mini-tls-nonblock
  CCLD     no-signal
  CCLD     pkcs7-gen
  CCLD     dtls-etm
  CCLD     x509sign-verify-rsa
  CCLD     x509sign-verify-ecdsa
  CCLD     x509sign-verify-gost
  CCLD     mini-alignment
  CCLD     oids
  CCLD     atfork
  CCLD     prf
  CCLD     psk-file
  CCLD     priority-init2
  CCLD     post-client-hello-change-prio
  CCLD     status-request
  CCLD     status-request-ok
  CCLD     status-request-missing
  CCLD     sign-verify-ext
  CCLD     fallback-scsv
  CCLD     pkcs8-key-decode
  CCLD     urls
  CCLD     dtls-rehandshake-cert
  CCLD     key-usage-rsa
  CCLD     key-usage-ecdhe-rsa
  CCLD     mini-session-verify-function
  CCLD     auto-verify
  CCLD     record-timeouts
  CCLD     mini-dtls-hello-verify-48
  CCLD     set-default-prio
  CCLD     tls12-anon-upgrade
  CCLD     global-init-override
  CCLD     tlsext-decoding
  CCLD     rsa-psk-cb
  CCLD     rehandshake-switch-cert
  CCLD     rehandshake-switch-cert-allow
  CCLD     rehandshake-switch-cert-client
  CCLD     rehandshake-switch-cert-client-allow
  CCLD     handshake-versions
  CCLD     dtls-handshake-versions
  CCLD     dtls-max-record
  CCLD     tls12-max-record
  CCLD     alpn-server-prec
  CCLD     ocsp-filename-memleak
  CCLD     dh-params
  CCLD     rehandshake-ext-secret
  CCLD     pcert-list
  CCLD     session-export-funcs
  CCLD     handshake-false-start
  CCLD     version-checks
  CCLD     key-material-dtls
  CCLD     key-material-set-dtls
  CCLD     system-prio-file
  CCLD     name-constraints-merge
  CCLD     crl-basic
  CCLD     crq-basic
  CCLD     send-client-cert
  CCLD     custom-urls-override
  CCLD     hex
  CCLD     rehandshake-switch-psk-id
  CCLD     rehandshake-switch-srp-id
  CCLD     base64
  CCLD     srpbase64
  CCLD     pkcs1-digest-info
  CCLD     set_x509_key
  CCLD     set_x509_key_file_der
  CCLD     set_x509_pkcs12_key
  CCLD     crt_apis
  CCLD     tls12-cert-key-exchange
  CCLD     tls11-cert-key-exchange
  CCLD     tls10-cert-key-exchange
  CCLD     ssl30-cert-key-exchange
  CCLD     dtls12-cert-key-exchange
  CCLD     dtls10-cert-key-exchange
  CCLD     x509-cert-callback-legacy
  CCLD     keylog-env
  CCLD     ssl2-hello
  CCLD     tlsfeature-ext
  CCLD     dtls-rehandshake-cert-2
  CCLD     dtls-session-ticket-lost
  CCLD     tlsfeature-crt
  CCLD     dtls-rehandshake-cert-3
  CCLD     resume-with-false-start
  CCLD     set_x509_key_file_ocsp
  CCLD     client-fastopen
  CCLD     rng-sigint
  CCLD     srp
  CCLD     rng-pthread
  CC       safe-renegotiation/srn0.o
  CC       safe-renegotiation/srn1.o
  CC       safe-renegotiation/srn2.o
  CC       safe-renegotiation/srn3.o
  CC       safe-renegotiation/srn4.o
  CC       safe-renegotiation/srn5.o
  CCLD     rsa-illegal-import
  CCLD     set_x509_ocsp_multi_invalid
  CCLD     set_key
  CCLD     set_x509_key_file_ocsp_multi2
  CCLD     set_x509_ocsp_multi_unknown
  CCLD     set_x509_ocsp_multi_pem
  CCLD     tls-ext-not-in-dtls
  CCLD     set_key_utf8
  CCLD     set_x509_key_utf8
  CCLD     insecure_key
  CCLD     handshake-large-packet
  CCLD     client_dsa_key
  CCLD     server_ecdsa_key
  CCLD     tls-session-ext-register
  CCLD     tls-session-supplemental
  CCLD     multi-alerts
  CCLD     naked-alerts
  CCLD     pkcs7-cat-parse
  CCLD     set_known_dh_params_x509
  CCLD     set_known_dh_params_anon
  CCLD     set_known_dh_params_psk
  CCLD     session-tickets-ok
  CCLD     session-tickets-missing
  CCLD     set_x509_key_file_legacy
  CCLD     status-request-ext
  CCLD     gnutls_x509_crt_sign
  CCLD     gnutls_x509_crq_sign
  CCLD     dtls-repro-20170915
  CCLD     rng-no-onload
  CCLD     dtls1-2-mtu-check
  CCLD     crl_apis
  CCLD     cert_verify_inv_utf8
  CCLD     no-extensions
  CCLD     hostname-check-utf8
  CCLD     pkcs8-key-decode-encrypted
  CCLD     priority-mix
  CCLD     pkcs7
  CCLD     send-data-before-handshake
  CCLD     recv-data-before-handshake
  CCLD     crt_inv_write
  CCLD     x509sign-verify-error
  CCLD     rng-op-nonce
  CCLD     rng-op-random
  CCLD     rng-op-key
  CCLD     x509-dn-decode-compat
  CCLD     ip-check
  CCLD     mini-x509-ipaddr
  CCLD     trust-store
  CCLD     base64-raw
  CCLD     random-art
  CCLD     dhex509self
  CCLD     dss-sig-val
  CCLD     sign-pk-api
  CCLD     tls-session-ext-override
  CCLD     record-pad
  CCLD     tls13-server-kx-neg
  CCLD     gnutls_ext_raw_parse_dtls
  CCLD     key-export-pkcs8
  CCLD     null_retrieve_function
  CCLD     tls-record-size-limit
  CCLD     tls-crt_type-neg
  CCLD     resume-with-stek-expiration
  CCLD     resume-with-previous-stek
  CCLD     rawpk-api
  CCLD     ocsp
  CCLD     x509self
  CCLD     x509dn
  CCLD     anonself
  CCLD     pskself
  CCLD     dhepskself
  CCLD     setcredcrash
  CCLD     tls12-resume-x509
  CCLD     tls12-resume-psk
  CCLD     tls12-resume-anon
  CCLD     tls13-resume-x509
  CCLD     tls13-resume-psk
  CCLD     tls13-early-data
  CCLD     tls13-early-data-neg
  CCLD     resume-with-record-size-limit
  CC       dtls/dtls-stress.o
  CCLD     tls13/supported_versions
  CCLD     tls13/tls12-no-tls13-exts
  CCLD     tls13/post-handshake-with-cert
  CCLD     tls13/post-handshake-without-cert
  CCLD     tls13/cookie
  CCLD     tls13/key_share
  CCLD     tls13/prf
  CCLD     tls13/post-handshake-with-cert-ticket
  CCLD     tls12-rollback-detection
  CCLD     tls11-rollback-detection
  CCLD     tls12-check-rollback-val
  CCLD     tls11-check-rollback-val
  CCLD     tls13/hello_random_value
  CCLD     tls13/post-handshake-with-psk
  CCLD     tls13/post-handshake-with-cert-auto
  CCLD     tls13/anti_replay
  CCLD     tls13/hello_retry_request
  CCLD     tls13/psk-ext
  CCLD     tls13/key_update
  CCLD     tls13/key_limits
  CCLD     tls13/multi-ocsp
  CCLD     tls13/ocsp-client
  CCLD     tls13/change_cipher_spec
  CCLD     tls13/no-psk-exts
  CCLD     tls13/psk-dumbfw
  CCLD     safe-renegotiation/srn0
  CCLD     safe-renegotiation/srn1
  CCLD     safe-renegotiation/srn2
  CCLD     safe-renegotiation/srn3
  CCLD     safe-renegotiation/srn4
  CCLD     safe-renegotiation/srn5
  CCLD     dtls-stress
make[3]: Leaving directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/tests'
make  check-TESTS
make[3]: Entering directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/tests'
make[4]: Entering directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/tests'
PASS: tls13/supported_versions
PASS: tls13/tls12-no-tls13-exts
PASS: tls13/post-handshake-without-cert
PASS: tls13/cookie
PASS: tls13/post-handshake-with-cert
PASS: tls13/prf
PASS: tls13/post-handshake-with-cert-ticket
PASS: tls13/key_share
PASS: tls12-rollback-detection
PASS: tls11-rollback-detection
PASS: tls12-check-rollback-val
PASS: tls11-check-rollback-val
PASS: tls13/hello_random_value
PASS: tls13/post-handshake-with-psk
PASS: tls13/anti_replay
PASS: tls13/post-handshake-with-cert-auto
PASS: tls13/hello_retry_request
PASS: tls13/psk-ext
PASS: tls13/key_limits
PASS: tls13/multi-ocsp
PASS: tls13/ocsp-client
PASS: tls13/change_cipher_spec
PASS: tls13-cipher-neg
PASS: tls13/no-psk-exts
PASS: tls13/psk-dumbfw
PASS: tls13-early-start
PASS: tls13/key_update
PASS: simple
PASS: gnutls_hmac_fast
PASS: set_pkcs12_cred
PASS: cert
PASS: certuniqueid
PASS: tls-neg-ext-key
PASS: mpi
PASS: certificate_set_x509_crl
PASS: dn
PASS: parse_ca
PASS: x509-dn
PASS: x509-dn-decode
PASS: record-sizes
PASS: hostname-check
PASS: cve-2008-4989
PASS: pkcs12_s2k
PASS: chainverify
PASS: record-sizes-range
PASS: crq_key_id
PASS: x509sign-verify
PASS: sign-verify
PASS: cve-2009-1415
PASS: cve-2009-1416
PASS: tls10-server-kx-neg
PASS: tls11-server-kx-neg
PASS: tls12-server-kx-neg
SKIP: ssl30-server-kx-neg
PASS: tls12-cipher-neg
PASS: tls11-cipher-neg
PASS: tls10-cipher-neg
SKIP: ssl30-cipher-neg
PASS: crq_apis
PASS: init_roundtrip
PASS: pkcs12_s2k_pem
PASS: dn2
PASS: tls12-rehandshake-cert-3
PASS: nul-in-x509-names
PASS: x509_altname
PASS: pkcs12_encode
PASS: mini-x509
PASS: gnutls_session_set_id
PASS: rng-fork
PASS: mini-eagain-dtls
PASS: resume-dtls
PASS: empty_retrieve_function
PASS: tls13-rehandshake-cert
PASS: gnutls_ext_raw_parse
PASS: handshake-large-cert
PASS: x509cert
PASS: x509cert-tl
PASS: infoaccess
PASS: mini-dtls-hello-verify
PASS: sign-verify-ed25519-rfc8080
PASS: trustdb-tofu
PASS: mini-record-2
PASS: mini-alpn
PASS: mini-dtls-large
PASS: mini-termination
PASS: mini-x509-cas
PASS: mini-x509-2
SKIP: pkcs12_simple
PASS: tls-pthread
PASS: mini-emsgsize-dtls
PASS: chainverify-unsorted
PASS: mini-overhead
PASS: tls12-ffdhe
PASS: mini-dtls-heartbeat
PASS: mini-x509-callbacks
PASS: key-openssl
PASS: priorities
PASS: priorities-groups
PASS: gnutls_x509_privkey_import
PASS: gnutls_x509_crt_list_import
PASS: sign-verify-ext4
PASS: tls-neg-ext4-key
PASS: resume-lifetime
PASS: memset0
PASS: memset1
PASS: mini-dtls-srtp
PASS: rsa-encrypt-decrypt
PASS: dtls-rehandshake-anon
PASS: gnutls-strcodes
PASS: mini-record
PASS: mini-dtls-record
PASS: handshake-timeout
PASS: mini-record-range
PASS: cert-status
SKIP: fips-mode-pthread
PASS: rsa-psk
PASS: global-init
PASS: sec-params
PASS: sign-verify-data
SKIP: fips-test
SKIP: fips-override-test
PASS: mini-global-load
PASS: name-constraints
PASS: x509-extensions
PASS: long-session-id
PASS: mini-x509-callbacks-intr
PASS: mini-dtls-lowmtu
PASS: set_x509_key_file-late
PASS: crlverify
PASS: mini-dtls-discard
PASS: init_fds
PASS: mini-record-failure
PASS: tls12-rehandshake-cert-2
PASS: custom-urls
PASS: set_x509_key_mem
PASS: set_x509_key_file
PASS: tls12-rehandshake-cert-auto
PASS: tls12-rehandshake-set-prio
PASS: mini-chain-unsorted
PASS: x509-verify-with-crl
PASS: mini-dtls-mtu
PASS: privkey-verify-broken
PASS: mini-dtls-record-asym
PASS: key-import-export
PASS: priority-set
PASS: priority-set2
PASS: pubkey-import-export
PASS: sign-is-secure
PASS: spki
PASS: spki-abstract
PASS: rsa-rsa-pss
PASS: mini-dtls-fork
PASS: dtls-pthread
PASS: mini-key-material
PASS: x509cert-invalid
PASS: tls-ext-register
PASS: tls-supplemental
PASS: mini-dtls0-9
PASS: duplicate-extensions
PASS: mini-loss-time
PASS: mini-server-name
PASS: tls-etm
PASS: tls-force-etm
PASS: x509-cert-callback
PASS: alerts
PASS: client-sign-md5-rep
PASS: tls12-invalid-key-exchanges
PASS: session-rdn-read
PASS: tls13-cert-key-exchange
PASS: x509-cert-callback-ocsp
PASS: gnutls_ocsp_resp_list_import2
PASS: server-sign-md5-rep
PASS: privkey-keygen
PASS: mini-tls-nonblock
PASS: no-signal
PASS: pkcs7-gen
PASS: dtls-etm
PASS: record-retvals
PASS: x509sign-verify-rsa
PASS: x509sign-verify-ecdsa
PASS: mini-alignment
PASS: oids
PASS: x509sign-verify-gost
PASS: atfork
PASS: prf
PASS: priority-init2
PASS: psk-file
PASS: post-client-hello-change-prio
PASS: status-request-ok
PASS: status-request
PASS: status-request-missing
PASS: sign-verify-ext
PASS: pkcs8-key-decode
PASS: urls
PASS: fallback-scsv
PASS: key-usage-rsa
PASS: key-usage-ecdhe-rsa
PASS: mini-session-verify-function
PASS: auto-verify
PASS: record-timeouts
PASS: mini-dtls-hello-verify-48
PASS: set-default-prio
PASS: tls12-anon-upgrade
PASS: global-init-override
PASS: tlsext-decoding
PASS: rsa-psk-cb
PASS: rehandshake-switch-cert
PASS: rehandshake-switch-cert-allow
PASS: rehandshake-switch-cert-client
PASS: rehandshake-switch-cert-client-allow
PASS: handshake-versions
PASS: dtls-handshake-versions
PASS: dtls-max-record
PASS: tls12-max-record
PASS: alpn-server-prec
PASS: ocsp-filename-memleak
PASS: dh-params
PASS: rehandshake-ext-secret
PASS: pcert-list
PASS: session-export-funcs
PASS: handshake-false-start
PASS: version-checks
PASS: key-material-dtls
PASS: key-material-set-dtls
PASS: system-prio-file
PASS: name-constraints-merge
PASS: crl-basic
PASS: crq-basic
PASS: send-client-cert
PASS: custom-urls-override
PASS: hex
PASS: rehandshake-switch-psk-id
PASS: rehandshake-switch-srp-id
PASS: base64
PASS: srpbase64
PASS: pkcs1-digest-info
PASS: set_x509_key
PASS: set_x509_key_file_der
PASS: set_x509_pkcs12_key
PASS: crt_apis
PASS: tls12-cert-key-exchange
PASS: tls11-cert-key-exchange
PASS: tls10-cert-key-exchange
SKIP: ssl30-cert-key-exchange
PASS: dtls12-cert-key-exchange
PASS: dtls10-cert-key-exchange
PASS: x509-cert-callback-legacy
PASS: keylog-env
PASS: ssl2-hello
PASS: tlsfeature-ext
PASS: dtls-rehandshake-cert
PASS: dtls-session-ticket-lost
PASS: tlsfeature-crt
PASS: dtls-rehandshake-cert-3
PASS: resume-with-false-start
PASS: set_x509_key_file_ocsp
PASS: client-fastopen
PASS: rng-sigint
PASS: srp
PASS: rng-pthread
PASS: safe-renegotiation/srn0
PASS: safe-renegotiation/srn1
PASS: safe-renegotiation/srn2
PASS: safe-renegotiation/srn3
PASS: safe-renegotiation/srn4
PASS: safe-renegotiation/srn5
PASS: rsa-illegal-import
PASS: set_x509_ocsp_multi_invalid
PASS: set_key
PASS: set_x509_key_file_ocsp_multi2
PASS: set_x509_ocsp_multi_unknown
PASS: set_x509_ocsp_multi_pem
PASS: tls-ext-not-in-dtls
PASS: set_key_utf8
PASS: set_x509_key_utf8
PASS: insecure_key
PASS: handshake-large-packet
PASS: client_dsa_key
PASS: server_ecdsa_key
PASS: tls-session-ext-register
PASS: tls-session-supplemental
PASS: multi-alerts
PASS: naked-alerts
PASS: pkcs7-cat-parse
PASS: set_known_dh_params_x509
PASS: set_known_dh_params_anon
PASS: set_known_dh_params_psk
PASS: session-tickets-ok
PASS: session-tickets-missing
PASS: set_x509_key_file_legacy
PASS: status-request-ext
PASS: gnutls_x509_crt_sign
PASS: gnutls_x509_crq_sign
PASS: dtls-repro-20170915
PASS: rng-no-onload
PASS: dtls1-2-mtu-check
PASS: crl_apis
PASS: cert_verify_inv_utf8
PASS: no-extensions
PASS: hostname-check-utf8
PASS: pkcs8-key-decode-encrypted
PASS: priority-mix
PASS: pkcs7
PASS: send-data-before-handshake
PASS: recv-data-before-handshake
PASS: crt_inv_write
PASS: x509sign-verify-error
PASS: rng-op-nonce
PASS: dtls-rehandshake-cert-2
PASS: rng-op-random
PASS: x509-dn-decode-compat
PASS: ip-check
PASS: mini-x509-ipaddr
PASS: trust-store
PASS: base64-raw
PASS: random-art
PASS: dhex509self
PASS: dss-sig-val
PASS: sign-pk-api
PASS: tls-session-ext-override
PASS: record-pad
PASS: tls13-server-kx-neg
PASS: gnutls_ext_raw_parse_dtls
PASS: key-export-pkcs8
PASS: null_retrieve_function
PASS: tls-record-size-limit
PASS: tls-crt_type-neg
PASS: resume-with-stek-expiration
PASS: resume-with-previous-stek
PASS: rawpk-api
PASS: ocsp
PASS: rng-op-key
PASS: x509self
PASS: x509dn
PASS: anonself
PASS: dhepskself
PASS: setcredcrash
PASS: pskself
PASS: tls12-resume-psk
PASS: tls12-resume-anon
PASS: tls13-resume-x509
PASS: tls12-resume-x509
PASS: tls13-resume-psk
PASS: tls13-early-data-neg
PASS: tls13-early-data
PASS: resume-with-record-size-limit
PASS: rfc2253-escape-test
SKIP: rsa-md5-collision/rsa-md5-collision.sh
PASS: systemkey.sh
PASS: dtls/dtls-resume
PASS: fastopen.sh
PASS: pkgconfig.sh
SKIP: starttls.sh
SKIP: starttls-ftp.sh
SKIP: starttls-smtp.sh
SKIP: starttls-lmtp.sh
SKIP: starttls-pop3.sh
SKIP: starttls-xmpp.sh
SKIP: starttls-nntp.sh
SKIP: starttls-sieve.sh
SKIP: ocsp-tests/ocsp-tls-connection
SKIP: ocsp-tests/ocsp-must-staple-connection
SKIP: ocsp-tests/ocsp-test
PASS: cipher-listings.sh
PASS: sni-hostname.sh
SKIP: server-multi-keys.sh
PASS: psktool.sh
SKIP: ocsp-tests/ocsp-load-chain
PASS: gnutls-cli-save-data.sh
SKIP: gnutls-cli-debug.sh
PASS: sni-resume.sh
PASS: ocsp-tests/ocsptool
SKIP: cert-reencoding.sh
SKIP: pkcs7-cat.sh
PASS: long-crl.sh
PASS: serv-udp.sh
PASS: logfile-option.sh
PASS: gnutls-cli-resume.sh
SKIP: gnutls-cli-self-signed.sh
SKIP: gnutls-cli-invalid-crl.sh
PASS: dtls/dtls
============================================================================
Testsuite summary for GnuTLS 3.6.7
============================================================================
# TOTAL: 381
# PASS:  355
# SKIP:  26
# XFAIL: 0
# FAIL:  0
# XPASS: 0
# ERROR: 0
============================================================================
make[4]: Leaving directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/tests'
make[3]: Leaving directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/tests'
make[2]: Leaving directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/tests'
Making check in cert-tests
make[2]: Entering directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/tests/cert-tests'
make  pathlen aki invalid-sig email pkcs7 pkcs7-broken-sigs privkey-import name-constraints certtool-long-cn crl provable-privkey provable-dh userid sha2-test sha2-dsa-test provable-privkey-dsa2048 provable-privkey-rsa2048 provable-privkey-gen-default pkcs7-constraints pkcs7-constraints2 certtool-long-oids pkcs7-cat cert-sanity cert-critical pkcs12 certtool-crl-decoding pkcs12-encode pkcs12-corner-cases inhibit-anypolicy smime cert-time alt-chain pkcs7-list-sign pkcs7-eddsa certtool-ecdsa key-id pkcs8 pkcs8-decode ecdsa illegal-rsa pkcs8-invalid key-invalid pkcs8-eddsa key-id ecdsa pkcs8-invalid key-invalid pkcs8-decode pkcs8 pkcs8-eddsa certtool-utf8 crq  template-test pem-decoding othername-test krb5-test sha3-test md5-test tlsfeature-test template-exts-test pkcs1-pad pkcs12-utf8 rsa-pss
 -pad dsa certtool  gost pkcs12-gost pkcs8-gost certtool-rsa-pss certtool-eddsa
make[3]: Entering directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/tests/cert-tests'
make[3]: Nothing to be done for 'pathlen'.
make[3]: Nothing to be done for 'aki'.
make[3]: Nothing to be done for 'invalid-sig'.
make[3]: Nothing to be done for 'email'.
make[3]: Nothing to be done for 'pkcs7'.
make[3]: Nothing to be done for 'pkcs7-broken-sigs'.
make[3]: Nothing to be done for 'privkey-import'.
make[3]: Nothing to be done for 'name-constraints'.
make[3]: Nothing to be done for 'certtool-long-cn'.
make[3]: Nothing to be done for 'crl'.
make[3]: Nothing to be done for 'provable-privkey'.
make[3]: Nothing to be done for 'provable-dh'.
make[3]: Nothing to be done for 'userid'.
make[3]: Nothing to be done for 'sha2-test'.
make[3]: Nothing to be done for 'sha2-dsa-test'.
make[3]: Nothing to be done for 'provable-privkey-dsa2048'.
make[3]: Nothing to be done for 'provable-privkey-rsa2048'.
make[3]: Nothing to be done for 'provable-privkey-gen-default'.
make[3]: Nothing to be done for 'pkcs7-constraints'.
make[3]: Nothing to be done for 'pkcs7-constraints2'.
make[3]: Nothing to be done for 'certtool-long-oids'.
make[3]: Nothing to be done for 'pkcs7-cat'.
make[3]: Nothing to be done for 'cert-sanity'.
make[3]: Nothing to be done for 'cert-critical'.
make[3]: Nothing to be done for 'pkcs12'.
make[3]: Nothing to be done for 'certtool-crl-decoding'.
make[3]: Nothing to be done for 'pkcs12-encode'.
make[3]: Nothing to be done for 'pkcs12-corner-cases'.
make[3]: Nothing to be done for 'inhibit-anypolicy'.
make[3]: Nothing to be done for 'smime'.
make[3]: Nothing to be done for 'cert-time'.
make[3]: Nothing to be done for 'alt-chain'.
make[3]: Nothing to be done for 'pkcs7-list-sign'.
make[3]: Nothing to be done for 'pkcs7-eddsa'.
make[3]: Nothing to be done for 'certtool-ecdsa'.
make[3]: Nothing to be done for 'key-id'.
make[3]: Nothing to be done for 'pkcs8'.
make[3]: Nothing to be done for 'pkcs8-decode'.
make[3]: Nothing to be done for 'ecdsa'.
make[3]: Nothing to be done for 'illegal-rsa'.
make[3]: Nothing to be done for 'pkcs8-invalid'.
make[3]: Nothing to be done for 'key-invalid'.
make[3]: Nothing to be done for 'pkcs8-eddsa'.
make[3]: Nothing to be done for 'key-id'.
make[3]: Nothing to be done for 'ecdsa'.
make[3]: Nothing to be done for 'pkcs8-invalid'.
make[3]: Nothing to be done for 'key-invalid'.
make[3]: Nothing to be done for 'pkcs8-decode'.
make[3]: Nothing to be done for 'pkcs8'.
make[3]: Nothing to be done for 'pkcs8-eddsa'.
make[3]: Nothing to be done for 'certtool-utf8'.
make[3]: Nothing to be done for 'crq'.
make[3]: Nothing to be done for 'template-test'.
make[3]: Nothing to be done for 'pem-decoding'.
make[3]: Nothing to be done for 'othername-test'.
make[3]: Nothing to be done for 'krb5-test'.
make[3]: Nothing to be done for 'sha3-test'.
make[3]: Nothing to be done for 'md5-test'.
make[3]: Nothing to be done for 'tlsfeature-test'.
make[3]: Nothing to be done for 'template-exts-test'.
make[3]: Nothing to be done for 'pkcs1-pad'.
make[3]: Nothing to be done for 'pkcs12-utf8'.
make[3]: Nothing to be done for 'rsa-pss-pad'.
make[3]: Nothing to be done for 'dsa'.
make[3]: Nothing to be done for 'certtool'.
make[3]: Nothing to be done for 'gost'.
make[3]: Nothing to be done for 'pkcs12-gost'.
make[3]: Nothing to be done for 'pkcs8-gost'.
make[3]: Nothing to be done for 'certtool-rsa-pss'.
make[3]: Nothing to be done for 'certtool-eddsa'.
make[3]: Leaving directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/tests/cert-tests'
make  check-TESTS
make[3]: Entering directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/tests/cert-tests'
make[4]: Entering directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/tests/cert-tests'
PASS: aki
PASS: pathlen
PASS: invalid-sig
SKIP: pkcs7
PASS: email
PASS: pkcs7-broken-sigs
SKIP: name-constraints
PASS: certtool-long-cn
PASS: privkey-import
SKIP: crl
PASS: provable-privkey
PASS: userid
PASS: sha2-test
PASS: sha2-dsa-test
PASS: provable-privkey-dsa2048
PASS: provable-privkey-rsa2048
PASS: provable-privkey-gen-default
SKIP: pkcs7-constraints
SKIP: pkcs7-constraints2
PASS: certtool-long-oids
SKIP: pkcs7-cat
PASS: cert-sanity
SKIP: cert-critical
PASS: pkcs12
PASS: certtool-crl-decoding
PASS: pkcs12-encode
PASS: pkcs12-corner-cases
SKIP: inhibit-anypolicy
SKIP: smime
PASS: cert-time
SKIP: alt-chain
SKIP: pkcs7-list-sign
SKIP: pkcs7-eddsa
PASS: certtool-ecdsa
PASS: key-id
PASS: provable-dh
PASS: pkcs8
PASS: pkcs8-decode
PASS: ecdsa
PASS: illegal-rsa
PASS: key-invalid
PASS: pkcs8-invalid
PASS: pkcs8-eddsa
PASS: certtool-utf8
SKIP: crq
SKIP: template-test
SKIP: othername-test
SKIP: krb5-test
SKIP: sha3-test
SKIP: md5-test
SKIP: tlsfeature-test
SKIP: template-exts-test
SKIP: pkcs1-pad
PASS: pkcs12-utf8
SKIP: rsa-pss-pad
PASS: pem-decoding
SKIP: certtool
PASS: gost
PASS: pkcs12-gost
PASS: pkcs8-gost
PASS: dsa
SKIP: certtool-eddsa
SKIP: certtool-rsa-pss
============================================================================
Testsuite summary for GnuTLS 3.6.7
============================================================================
# TOTAL: 70
# PASS:  45
# SKIP:  25
# XFAIL: 0
# FAIL:  0
# XPASS: 0
# ERROR: 0
============================================================================
make[4]: Leaving directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/tests/cert-tests'
make[3]: Leaving directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/tests/cert-tests'
make[2]: Leaving directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/tests/cert-tests'
Making check in slow
make[2]: Entering directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/tests/slow'
make  gendh cipher-test cipher-api-test cipher-override mac-override cipher-override2 hash-large crypto  \
  test-ciphers.sh override-ciphers test-hash-large.sh test-ciphers-common.sh test-ciphers-api.sh 
make[3]: Entering directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/tests/slow'
  CC       gendh.o
  CC       cipher_test-cipher-test.o
  CC       cipher-api-test.o
  CC       cipher_override-cipher-override.o
cipher-override.c: In function 'myaes_setkey':
cipher-override.c:62:3: warning: 'nettle_aes_set_encrypt_key' is deprecated [-Wdeprecated-declarations]
   aes_set_encrypt_key(&ctx->aes, keysize, userkey);
   ^~~~~~~~~~~~~~~~~~~
In file included from cipher-override.c:18:0:
/gnu/store/lvnybsygfd6gya6xbdv48g72lb0iqqzx-nettle-3.5.1/include/nettle/aes.h:44:29: note: declared here
 #define aes_set_encrypt_key nettle_aes_set_encrypt_key
                             ^
/gnu/store/lvnybsygfd6gya6xbdv48g72lb0iqqzx-nettle-3.5.1/include/nettle/aes.h:158:1: note: in expansion of macro 'aes_set_encrypt_key'
 aes_set_encrypt_key(struct aes_ctx *ctx,
 ^~~~~~~~~~~~~~~~~~~
cipher-override.c:64:3: warning: 'nettle_aes_set_decrypt_key' is deprecated [-Wdeprecated-declarations]
   aes_set_decrypt_key(&ctx->aes, keysize, userkey);
   ^~~~~~~~~~~~~~~~~~~
In file included from cipher-override.c:18:0:
/gnu/store/lvnybsygfd6gya6xbdv48g72lb0iqqzx-nettle-3.5.1/include/nettle/aes.h:45:29: note: declared here
 #define aes_set_decrypt_key nettle_aes_set_decrypt_key
                             ^
/gnu/store/lvnybsygfd6gya6xbdv48g72lb0iqqzx-nettle-3.5.1/include/nettle/aes.h:163:1: note: in expansion of macro 'aes_set_decrypt_key'
 aes_set_decrypt_key(struct aes_ctx *ctx,
 ^~~~~~~~~~~~~~~~~~~
cipher-override.c: In function 'myaes_encrypt':
cipher-override.c:84:2: warning: 'nettle_aes_encrypt' is deprecated [-Wdeprecated-declarations]
  cbc_encrypt(&ctx->aes, (nettle_cipher_func*)aes_encrypt, 16, ctx->iv, src_size, dst, src);
  ^~~~~~~~~~~
In file included from cipher-override.c:18:0:
/gnu/store/lvnybsygfd6gya6xbdv48g72lb0iqqzx-nettle-3.5.1/include/nettle/aes.h:47:21: note: declared here
 #define aes_encrypt nettle_aes_encrypt
                     ^
/gnu/store/lvnybsygfd6gya6xbdv48g72lb0iqqzx-nettle-3.5.1/include/nettle/aes.h:173:1: note: in expansion of macro 'aes_encrypt'
 aes_encrypt(const struct aes_ctx *ctx,
 ^~~~~~~~~~~
cipher-override.c: In function 'myaes_decrypt':
cipher-override.c:95:2: warning: 'nettle_aes_decrypt' is deprecated [-Wdeprecated-declarations]
  cbc_decrypt(&ctx->aes, (nettle_cipher_func*)aes_decrypt, 16, ctx->iv, src_size, dst, src);
  ^~~~~~~~~~~
In file included from cipher-override.c:18:0:
/gnu/store/lvnybsygfd6gya6xbdv48g72lb0iqqzx-nettle-3.5.1/include/nettle/aes.h:48:21: note: declared here
 #define aes_decrypt nettle_aes_decrypt
                     ^
/gnu/store/lvnybsygfd6gya6xbdv48g72lb0iqqzx-nettle-3.5.1/include/nettle/aes.h:177:1: note: in expansion of macro 'aes_decrypt'
 aes_decrypt(const struct aes_ctx *ctx,
 ^~~~~~~~~~~
  CC       mac_override-mac-override.o
  CC       cipher_override2-cipher-override2.o
  CC       hash-large.o
make[3]: Nothing to be done for 'test-ciphers.sh'.
make[3]: Nothing to be done for 'override-ciphers'.
make[3]: Nothing to be done for 'test-hash-large.sh'.
make[3]: Nothing to be done for 'test-ciphers-common.sh'.
make[3]: Nothing to be done for 'test-ciphers-api.sh'.
  CC       crypto.o
  CCLD     gendh
  CCLD     cipher-test
  CCLD     cipher-api-test
  CCLD     cipher-override
  CCLD     mac-override
  CCLD     cipher-override2
  CCLD     hash-large
  CCLD     crypto
make[3]: Leaving directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/tests/slow'
make  check-TESTS
make[3]: Entering directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/tests/slow'
make[4]: Entering directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/tests/slow'
PASS: test-ciphers.sh
PASS: override-ciphers
PASS: gendh
PASS: crypto
PASS: test-ciphers-api.sh
PASS: test-hash-large.sh
============================================================================
Testsuite summary for GnuTLS 3.6.7
============================================================================
# TOTAL: 6
# PASS:  6
# SKIP:  0
# XFAIL: 0
# FAIL:  0
# XPASS: 0
# ERROR: 0
============================================================================
make[4]: Leaving directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/tests/slow'
make[3]: Leaving directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/tests/slow'
make[2]: Leaving directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/tests/slow'
make[1]: Leaving directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/tests'
Making check in fuzz
make[1]: Entering directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/fuzz'
make  gnutls_x509_verify_fuzzer gnutls_base64_decoder_fuzzer gnutls_base64_encoder_fuzzer gnutls_client_fuzzer gnutls_dn_parser_fuzzer gnutls_idna_parser_fuzzer gnutls_ocsp_req_parser_fuzzer gnutls_ocsp_resp_parser_fuzzer gnutls_pkcs12_key_parser_fuzzer gnutls_pkcs7_parser_fuzzer gnutls_pkcs8_key_parser_fuzzer gnutls_private_key_parser_fuzzer gnutls_psk_client_fuzzer gnutls_psk_server_fuzzer gnutls_reverse_idna_parser_fuzzer gnutls_server_fuzzer gnutls_srp_client_fuzzer gnutls_srp_server_fuzzer gnutls_set_trust_file_fuzzer gnutls_x509_parser_fuzzer
make[2]: Entering directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/fuzz'
  CC       gnutls_x509_verify_fuzzer.o
  CC       main.o
  CC       gnutls_base64_decoder_fuzzer.o
  CC       gnutls_base64_encoder_fuzzer.o
  CC       gnutls_client_fuzzer.o
  CC       gnutls_dn_parser_fuzzer.o
  CC       gnutls_idna_parser_fuzzer.o
  CC       gnutls_ocsp_req_parser_fuzzer.o
  CC       gnutls_ocsp_resp_parser_fuzzer.o
  CC       gnutls_pkcs12_key_parser_fuzzer.o
  CC       gnutls_pkcs7_parser_fuzzer.o
  CC       gnutls_pkcs8_key_parser_fuzzer.o
  CC       gnutls_private_key_parser_fuzzer.o
  CC       gnutls_psk_client_fuzzer.o
  CC       gnutls_psk_server_fuzzer.o
  CC       gnutls_reverse_idna_parser_fuzzer.o
  CC       gnutls_server_fuzzer.o
  CC       gnutls_srp_client_fuzzer.o
  CC       gnutls_srp_server_fuzzer.o
  CC       gnutls_set_trust_file_fuzzer.o
  CC       gnutls_x509_parser_fuzzer.o
  CCLD     gnutls_x509_verify_fuzzer
  CCLD     gnutls_base64_decoder_fuzzer
  CCLD     gnutls_base64_encoder_fuzzer
  CCLD     gnutls_client_fuzzer
  CCLD     gnutls_dn_parser_fuzzer
  CCLD     gnutls_idna_parser_fuzzer
  CCLD     gnutls_ocsp_req_parser_fuzzer
  CCLD     gnutls_ocsp_resp_parser_fuzzer
  CCLD     gnutls_pkcs12_key_parser_fuzzer
  CCLD     gnutls_pkcs7_parser_fuzzer
  CCLD     gnutls_pkcs8_key_parser_fuzzer
  CCLD     gnutls_private_key_parser_fuzzer
  CCLD     gnutls_psk_client_fuzzer
  CCLD     gnutls_psk_server_fuzzer
  CCLD     gnutls_reverse_idna_parser_fuzzer
  CCLD     gnutls_server_fuzzer
  CCLD     gnutls_srp_client_fuzzer
  CCLD     gnutls_srp_server_fuzzer
  CCLD     gnutls_set_trust_file_fuzzer
  CCLD     gnutls_x509_parser_fuzzer
make[2]: Leaving directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/fuzz'
make  check-TESTS
make[2]: Entering directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/fuzz'
make[3]: Entering directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/fuzz'
PASS: gnutls_x509_verify_fuzzer
SKIP: gnutls_base64_decoder_fuzzer
SKIP: gnutls_base64_encoder_fuzzer
SKIP: gnutls_client_fuzzer
SKIP: gnutls_dn_parser_fuzzer
SKIP: gnutls_idna_parser_fuzzer
SKIP: gnutls_ocsp_req_parser_fuzzer
SKIP: gnutls_ocsp_resp_parser_fuzzer
SKIP: gnutls_pkcs12_key_parser_fuzzer
SKIP: gnutls_pkcs7_parser_fuzzer
SKIP: gnutls_pkcs8_key_parser_fuzzer
SKIP: gnutls_private_key_parser_fuzzer
SKIP: gnutls_psk_client_fuzzer
SKIP: gnutls_reverse_idna_parser_fuzzer
PASS: gnutls_psk_server_fuzzer
SKIP: gnutls_server_fuzzer
SKIP: gnutls_srp_client_fuzzer
SKIP: gnutls_srp_server_fuzzer
PASS: gnutls_x509_parser_fuzzer
PASS: gnutls_set_trust_file_fuzzer
============================================================================
Testsuite summary for GnuTLS 3.6.7
============================================================================
# TOTAL: 20
# PASS:  4
# SKIP:  16
# XFAIL: 0
# FAIL:  0
# XPASS: 0
# ERROR: 0
============================================================================
make[3]: Leaving directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/fuzz'
make[2]: Leaving directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/fuzz'
make[1]: Leaving directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/fuzz'
Making check in guile
make[1]: Entering directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/guile'
Making check in src
make[2]: Entering directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/guile/src'
make  check-am
make[3]: Entering directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/guile/src'
make[3]: Nothing to be done for 'check-am'.
make[3]: Leaving directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/guile/src'
make[2]: Leaving directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/guile/src'
make[2]: Entering directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/guile'
make  check-TESTS
make[3]: Entering directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/guile'
make[4]: Entering directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/guile'
PASS: tests/anonymous-auth.scm
PASS: tests/session-record-port.scm
PASS: tests/pkcs-import-export.scm
PASS: tests/errors.scm
PASS: tests/x509-certificates.scm
PASS: tests/priorities.scm
PASS: tests/x509-auth.scm
PASS: tests/srp-base64.scm
============================================================================
Testsuite summary for GnuTLS 3.6.7
============================================================================
# TOTAL: 8
# PASS:  8
# SKIP:  0
# XFAIL: 0
# FAIL:  0
# XPASS: 0
# ERROR: 0
============================================================================
make[4]: Leaving directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/guile'
make[3]: Leaving directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/guile'
make[2]: Leaving directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/guile'
make[1]: Leaving directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/guile'
Making check in doc/manpages
make[1]: Entering directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/doc/manpages'
make[1]: Nothing to be done for 'check'.
make[1]: Leaving directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/doc/manpages'
Making check in doc
make[1]: Entering directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/doc'
make  check-recursive
make[2]: Entering directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/doc'
Making check in examples
make[3]: Entering directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/doc/examples'
make[3]: Nothing to be done for 'check'.
make[3]: Leaving directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/doc/examples'
Making check in scripts
make[3]: Entering directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/doc/scripts'
make[3]: Nothing to be done for 'check'.
make[3]: Leaving directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/doc/scripts'
Making check in credentials
make[3]: Entering directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/doc/credentials'
Making check in srp
make[4]: Entering directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/doc/credentials/srp'
make[4]: Nothing to be done for 'check'.
make[4]: Leaving directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/doc/credentials/srp'
Making check in x509
make[4]: Entering directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/doc/credentials/x509'
make[4]: Nothing to be done for 'check'.
make[4]: Leaving directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/doc/credentials/x509'
make[4]: Entering directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/doc/credentials'
make[4]: Nothing to be done for 'check-am'.
make[4]: Leaving directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/doc/credentials'
make[3]: Leaving directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/doc/credentials'
Making check in latex
make[3]: Entering directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/doc/latex'
make[3]: Nothing to be done for 'check'.
make[3]: Leaving directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/doc/latex'
make[3]: Entering directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/doc'
make[3]: Nothing to be done for 'check-am'.
make[3]: Leaving directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/doc'
make[2]: Leaving directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/doc'
make[1]: Leaving directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/doc'
make[1]: Entering directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7'
make[1]: Leaving directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7'
phase `check' succeeded after 821.1 seconds
starting phase `install'
Making install in gl
make[1]: Entering directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/gl'
make  install-recursive
make[2]: Entering directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/gl'
Making install in .
make[3]: Entering directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/gl'
make[4]: Entering directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/gl'
make[4]: Nothing to be done for 'install-exec-am'.
make[4]: Nothing to be done for 'install-data-am'.
make[4]: Leaving directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/gl'
make[3]: Leaving directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/gl'
Making install in tests
make[3]: Entering directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/gl/tests'
make  install-recursive
make[4]: Entering directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/gl/tests'
Making install in .
make[5]: Entering directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/gl/tests'
make[6]: Entering directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/gl/tests'
make[6]: Nothing to be done for 'install-exec-am'.
make[6]: Nothing to be done for 'install-data-am'.
make[6]: Leaving directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/gl/tests'
make[5]: Leaving directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/gl/tests'
make[4]: Leaving directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/gl/tests'
make[3]: Leaving directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/gl/tests'
make[2]: Leaving directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/gl'
make[1]: Leaving directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/gl'
Making install in lib
make[1]: Entering directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/lib'
make  install-recursive
make[2]: Entering directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/lib'
Making install in includes
make[3]: Entering directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/lib/includes'
make[4]: Entering directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/lib/includes'
make[4]: Nothing to be done for 'install-exec-am'.
 /gnu/store/9kzrrccpzl6i1sfwb0drb00gi2gwk0x0-coreutils-8.31/bin/mkdir -p '/gnu/store/80x24g3smi1nkl7ss991ai863dnz5f3d-gnutls-3.6.7/include'
 /gnu/store/9kzrrccpzl6i1sfwb0drb00gi2gwk0x0-coreutils-8.31/bin/mkdir -p '/gnu/store/80x24g3smi1nkl7ss991ai863dnz5f3d-gnutls-3.6.7/include/gnutls'
 /gnu/store/9kzrrccpzl6i1sfwb0drb00gi2gwk0x0-coreutils-8.31/bin/install -c -m 644  gnutls/x509.h gnutls/pkcs12.h gnutls/compat.h gnutls/openpgp.h gnutls/crypto.h gnutls/pkcs11.h gnutls/abstract.h gnutls/dtls.h gnutls/ocsp.h gnutls/tpm.h gnutls/x509-ext.h gnutls/self-test.h gnutls/system-keys.h gnutls/urls.h gnutls/pkcs7.h gnutls/socket.h gnutls/gnutlsxx.h '/gnu/store/80x24g3smi1nkl7ss991ai863dnz5f3d-gnutls-3.6.7/include/gnutls'
 /gnu/store/9kzrrccpzl6i1sfwb0drb00gi2gwk0x0-coreutils-8.31/bin/mkdir -p '/gnu/store/80x24g3smi1nkl7ss991ai863dnz5f3d-gnutls-3.6.7/include'
 /gnu/store/9kzrrccpzl6i1sfwb0drb00gi2gwk0x0-coreutils-8.31/bin/mkdir -p '/gnu/store/80x24g3smi1nkl7ss991ai863dnz5f3d-gnutls-3.6.7/include/gnutls'
 /gnu/store/9kzrrccpzl6i1sfwb0drb00gi2gwk0x0-coreutils-8.31/bin/install -c -m 644  gnutls/gnutls.h '/gnu/store/80x24g3smi1nkl7ss991ai863dnz5f3d-gnutls-3.6.7/include/gnutls'
make[4]: Leaving directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/lib/includes'
make[3]: Leaving directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/lib/includes'
Making install in x509
make[3]: Entering directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/lib/x509'
make  install-am
make[4]: Entering directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/lib/x509'
make[5]: Entering directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/lib/x509'
make[5]: Nothing to be done for 'install-exec-am'.
make[5]: Nothing to be done for 'install-data-am'.
make[5]: Leaving directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/lib/x509'
make[4]: Leaving directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/lib/x509'
make[3]: Leaving directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/lib/x509'
Making install in auth
make[3]: Entering directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/lib/auth'
make[4]: Entering directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/lib/auth'
make[4]: Nothing to be done for 'install-exec-am'.
make[4]: Nothing to be done for 'install-data-am'.
make[4]: Leaving directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/lib/auth'
make[3]: Leaving directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/lib/auth'
Making install in ext
make[3]: Entering directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/lib/ext'
make[4]: Entering directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/lib/ext'
make[4]: Nothing to be done for 'install-exec-am'.
make[4]: Nothing to be done for 'install-data-am'.
make[4]: Leaving directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/lib/ext'
make[3]: Leaving directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/lib/ext'
Making install in algorithms
make[3]: Entering directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/lib/algorithms'
make[4]: Entering directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/lib/algorithms'
make[4]: Nothing to be done for 'install-exec-am'.
make[4]: Nothing to be done for 'install-data-am'.
make[4]: Leaving directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/lib/algorithms'
make[3]: Leaving directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/lib/algorithms'
Making install in extras
make[3]: Entering directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/lib/extras'
make[4]: Entering directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/lib/extras'
make[4]: Nothing to be done for 'install-exec-am'.
make[4]: Nothing to be done for 'install-data-am'.
make[4]: Leaving directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/lib/extras'
make[3]: Leaving directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/lib/extras'
Making install in accelerated
make[3]: Entering directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/lib/accelerated'
Making install in x86
make[4]: Entering directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/lib/accelerated/x86'
make[5]: Entering directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/lib/accelerated/x86'
make[5]: Nothing to be done for 'install-exec-am'.
make[5]: Nothing to be done for 'install-data-am'.
make[5]: Leaving directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/lib/accelerated/x86'
make[4]: Leaving directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/lib/accelerated/x86'
make[4]: Entering directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/lib/accelerated'
make[5]: Entering directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/lib/accelerated'
make[5]: Nothing to be done for 'install-exec-am'.
make[5]: Nothing to be done for 'install-data-am'.
make[5]: Leaving directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/lib/accelerated'
make[4]: Leaving directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/lib/accelerated'
make[3]: Leaving directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/lib/accelerated'
Making install in nettle
make[3]: Entering directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/lib/nettle'
make[4]: Entering directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/lib/nettle'
make[4]: Nothing to be done for 'install-exec-am'.
make[4]: Nothing to be done for 'install-data-am'.
make[4]: Leaving directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/lib/nettle'
make[3]: Leaving directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/lib/nettle'
make[3]: Entering directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/lib'
make[4]: Entering directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/lib'
 /gnu/store/9kzrrccpzl6i1sfwb0drb00gi2gwk0x0-coreutils-8.31/bin/mkdir -p '/gnu/store/80x24g3smi1nkl7ss991ai863dnz5f3d-gnutls-3.6.7/lib'
 /gnu/store/29jhbbg1hf557x8j53f9sxd9imlmf02a-bash-minimal-5.0.7/bin/bash ../libtool   --mode=install /gnu/store/9kzrrccpzl6i1sfwb0drb00gi2gwk0x0-coreutils-8.31/bin/install -c   libgnutls.la libgnutlsxx.la '/gnu/store/80x24g3smi1nkl7ss991ai863dnz5f3d-gnutls-3.6.7/lib'
libtool: install: /gnu/store/9kzrrccpzl6i1sfwb0drb00gi2gwk0x0-coreutils-8.31/bin/install -c .libs/libgnutls.so.30.23.2 /gnu/store/80x24g3smi1nkl7ss991ai863dnz5f3d-gnutls-3.6.7/lib/libgnutls.so.30.23.2
libtool: install: (cd /gnu/store/80x24g3smi1nkl7ss991ai863dnz5f3d-gnutls-3.6.7/lib && { ln -s -f libgnutls.so.30.23.2 libgnutls.so.30 || { rm -f libgnutls.so.30 && ln -s libgnutls.so.30.23.2 libgnutls.so.30; }; })
libtool: install: (cd /gnu/store/80x24g3smi1nkl7ss991ai863dnz5f3d-gnutls-3.6.7/lib && { ln -s -f libgnutls.so.30.23.2 libgnutls.so || { rm -f libgnutls.so && ln -s libgnutls.so.30.23.2 libgnutls.so; }; })
libtool: install: /gnu/store/9kzrrccpzl6i1sfwb0drb00gi2gwk0x0-coreutils-8.31/bin/install -c .libs/libgnutls.lai /gnu/store/80x24g3smi1nkl7ss991ai863dnz5f3d-gnutls-3.6.7/lib/libgnutls.la
libtool: warning: relinking 'libgnutlsxx.la'
libtool: install: (cd /tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/lib; /gnu/store/29jhbbg1hf557x8j53f9sxd9imlmf02a-bash-minimal-5.0.7/bin/bash "/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/libtool"  --silent --tag CXX --mode=relink g++ -I./includes -I./includes -g -O2 -no-undefined -version-info 29:0:1 -o libgnutlsxx.la -rpath /gnu/store/80x24g3smi1nkl7ss991ai863dnz5f3d-gnutls-3.6.7/lib libgnutlsxx_la-gnutlsxx.lo libgnutls.la )
libtool: install: /gnu/store/9kzrrccpzl6i1sfwb0drb00gi2gwk0x0-coreutils-8.31/bin/install -c .libs/libgnutlsxx.so.28.1.0T /gnu/store/80x24g3smi1nkl7ss991ai863dnz5f3d-gnutls-3.6.7/lib/libgnutlsxx.so.28.1.0
libtool: install: (cd /gnu/store/80x24g3smi1nkl7ss991ai863dnz5f3d-gnutls-3.6.7/lib && { ln -s -f libgnutlsxx.so.28.1.0 libgnutlsxx.so.28 || { rm -f libgnutlsxx.so.28 && ln -s libgnutlsxx.so.28.1.0 libgnutlsxx.so.28; }; })
libtool: install: (cd /gnu/store/80x24g3smi1nkl7ss991ai863dnz5f3d-gnutls-3.6.7/lib && { ln -s -f libgnutlsxx.so.28.1.0 libgnutlsxx.so || { rm -f libgnutlsxx.so && ln -s libgnutlsxx.so.28.1.0 libgnutlsxx.so; }; })
libtool: install: /gnu/store/9kzrrccpzl6i1sfwb0drb00gi2gwk0x0-coreutils-8.31/bin/install -c .libs/libgnutlsxx.lai /gnu/store/80x24g3smi1nkl7ss991ai863dnz5f3d-gnutls-3.6.7/lib/libgnutlsxx.la
libtool: finish: PATH="/gnu/store/03j8k18d0jrs8z5llizd8xfg38ijj453-net-tools-1.60-0.479bb4a/bin:/gnu/store/03j8k18d0jrs8z5llizd8xfg38ijj453-net-tools-1.60-0.479bb4a/sbin:/gnu/store/i1cqaixp79vd3qwnyj1ll10pq6skm2wk-pkg-config-0.29.2/bin:/gnu/store/4izp5ih15pdr3q2hax2c6fmjqsw4vcrv-which-2.21/bin:/gnu/store/cnqpra8vr2l5fz00rr4yj4bp3hr00cfw-tar-1.32/bin:/gnu/store/py3k9zla9fj3z7430v4crqj5pyrsd3qj-gzip-1.10/bin:/gnu/store/l86azr7r3p5631wj3kk329jl1y1mpjgy-bzip2-1.0.6/bin:/gnu/store/lbip9isk25isymvnb159l115xnacb5j8-xz-5.2.4/bin:/gnu/store/6jdshxwdrad9mlhcqc9k0g24yw45rqf1-file-5.33/bin:/gnu/store/58sq8iabw3jkv0fvf95hd7sq2g4xcsnz-diffutils-3.7/bin:/gnu/store/v76scv4n63ip08g119rczh2mrw31zwpd-patch-2.7.6/bin:/gnu/store/g9d3wv1d68iflx57yp3mcp3k3sv8spsl-findutils-4.6.0/bin:/gnu/store/2z9hsww76aag37p406
 71l9niq5pvvasx-gawk-5.0.1/bin:/gnu/store/afmvfw1yhfal48n1kjq6bk6kcw8sc3db-sed-4.7/bin:/gnu/store/7iyvxhp2g3v3655zqwr6biz2h0lqv7pr-grep-3.3/bin:/gnu/store/9kzrrccpzl6i1sfwb0drb00gi2gwk0x0-cor
 eutils-8.31/bin:/gnu/store/b5vpfzkr59bpgcsg1k9vvad9h5rwvpgk-make-4.2.1/bin:/gnu/store/29jhbbg1hf557x8j53f9sxd9imlmf02a-bash-minimal-5.0.7/bin:/gnu/store/nc5vlidpxbvngalng30nif8nb3j7gfy2-ld-wrapper-0/bin:/gnu/store/3hkdiscs4910r75njbrql10znxxn7chk-binutils-2.32/bin:/gnu/store/x3jx25cd3q363mr7nbgzrhrv1vza6cf7-gcc-7.4.0/bin:/gnu/store/ahqgl4h89xqj695lgqvsaf6zh2nhy4pj-glibc-2.29/bin:/gnu/store/ahqgl4h89xqj695lgqvsaf6zh2nhy4pj-glibc-2.29/sbin:/gnu/store/1mkkv2caiqbdbbd256c4dirfi4kwsacv-guile-2.2.6/bin:/gnu/store/lwz8fygpmmsw6h8vrllr56p7ssi5qx33-libtasn1-4.14/bin:/gnu/store/7gabmw9siqrz79slpi1f8i90v3w1638x-libidn2-2.2.0/bin:/gnu/store/lvnybsygfd6gya6xbdv48g72lb0iqqzx-nettle-3.5.1/bin:/sbin" ldconfig -n /gnu/store/80x24g3smi1nkl7ss991ai863dnz5f3d-gnutls-3.6.7/lib
/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/libtool: line 1733: ldconfig: command not found
----------------------------------------------------------------------
Libraries have been installed in:
   /gnu/store/80x24g3smi1nkl7ss991ai863dnz5f3d-gnutls-3.6.7/lib

If you ever happen to want to link against installed libraries
in a given directory, LIBDIR, you must either use libtool, and
specify the full pathname of the library, or use the '-LLIBDIR'
flag during linking and do at least one of the following:
   - add LIBDIR to the 'LD_LIBRARY_PATH' environment variable
     during execution
   - add LIBDIR to the 'LD_RUN_PATH' environment variable
     during linking
   - use the '-Wl,-rpath -Wl,LIBDIR' linker flag
   - have your system administrator run these commands:


See any operating system documentation about shared libraries for
more information, such as the ld(1) and ld.so(8) manual pages.
----------------------------------------------------------------------
 /gnu/store/9kzrrccpzl6i1sfwb0drb00gi2gwk0x0-coreutils-8.31/bin/mkdir -p '/gnu/store/80x24g3smi1nkl7ss991ai863dnz5f3d-gnutls-3.6.7/lib/pkgconfig'
 /gnu/store/9kzrrccpzl6i1sfwb0drb00gi2gwk0x0-coreutils-8.31/bin/install -c -m 644 gnutls.pc '/gnu/store/80x24g3smi1nkl7ss991ai863dnz5f3d-gnutls-3.6.7/lib/pkgconfig'
make[4]: Leaving directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/lib'
make[3]: Leaving directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/lib'
make[2]: Leaving directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/lib'
make[1]: Leaving directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/lib'
Making install in extra
make[1]: Entering directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/extra'
Making install in includes
make[2]: Entering directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/extra/includes'
make[3]: Entering directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/extra/includes'
make[3]: Nothing to be done for 'install-exec-am'.
make[3]: Leaving directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/extra/includes'
make[2]: Leaving directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/extra/includes'
make[2]: Entering directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/extra'
make[3]: Entering directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/extra'
make[3]: Nothing to be done for 'install-data-am'.
make[3]: Leaving directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/extra'
make[2]: Leaving directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/extra'
make[1]: Leaving directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/extra'
Making install in po
make[1]: Entering directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/po'
installing cs.gmo as /gnu/store/80x24g3smi1nkl7ss991ai863dnz5f3d-gnutls-3.6.7/share/locale/cs/LC_MESSAGES/gnutls.mo
installing de.gmo as /gnu/store/80x24g3smi1nkl7ss991ai863dnz5f3d-gnutls-3.6.7/share/locale/de/LC_MESSAGES/gnutls.mo
installing eo.gmo as /gnu/store/80x24g3smi1nkl7ss991ai863dnz5f3d-gnutls-3.6.7/share/locale/eo/LC_MESSAGES/gnutls.mo
installing es.gmo as /gnu/store/80x24g3smi1nkl7ss991ai863dnz5f3d-gnutls-3.6.7/share/locale/es/LC_MESSAGES/gnutls.mo
installing fi.gmo as /gnu/store/80x24g3smi1nkl7ss991ai863dnz5f3d-gnutls-3.6.7/share/locale/fi/LC_MESSAGES/gnutls.mo
installing fr.gmo as /gnu/store/80x24g3smi1nkl7ss991ai863dnz5f3d-gnutls-3.6.7/share/locale/fr/LC_MESSAGES/gnutls.mo
installing it.gmo as /gnu/store/80x24g3smi1nkl7ss991ai863dnz5f3d-gnutls-3.6.7/share/locale/it/LC_MESSAGES/gnutls.mo
installing ms.gmo as /gnu/store/80x24g3smi1nkl7ss991ai863dnz5f3d-gnutls-3.6.7/share/locale/ms/LC_MESSAGES/gnutls.mo
installing nl.gmo as /gnu/store/80x24g3smi1nkl7ss991ai863dnz5f3d-gnutls-3.6.7/share/locale/nl/LC_MESSAGES/gnutls.mo
installing pl.gmo as /gnu/store/80x24g3smi1nkl7ss991ai863dnz5f3d-gnutls-3.6.7/share/locale/pl/LC_MESSAGES/gnutls.mo
installing pt_BR.gmo as /gnu/store/80x24g3smi1nkl7ss991ai863dnz5f3d-gnutls-3.6.7/share/locale/pt_BR/LC_MESSAGES/gnutls.mo
installing sr.gmo as /gnu/store/80x24g3smi1nkl7ss991ai863dnz5f3d-gnutls-3.6.7/share/locale/sr/LC_MESSAGES/gnutls.mo
installing sv.gmo as /gnu/store/80x24g3smi1nkl7ss991ai863dnz5f3d-gnutls-3.6.7/share/locale/sv/LC_MESSAGES/gnutls.mo
installing uk.gmo as /gnu/store/80x24g3smi1nkl7ss991ai863dnz5f3d-gnutls-3.6.7/share/locale/uk/LC_MESSAGES/gnutls.mo
installing vi.gmo as /gnu/store/80x24g3smi1nkl7ss991ai863dnz5f3d-gnutls-3.6.7/share/locale/vi/LC_MESSAGES/gnutls.mo
installing zh_CN.gmo as /gnu/store/80x24g3smi1nkl7ss991ai863dnz5f3d-gnutls-3.6.7/share/locale/zh_CN/LC_MESSAGES/gnutls.mo
if test "gnutls" = "gettext-tools"; then \
  /gnu/store/9kzrrccpzl6i1sfwb0drb00gi2gwk0x0-coreutils-8.31/bin/mkdir -p /gnu/store/80x24g3smi1nkl7ss991ai863dnz5f3d-gnutls-3.6.7/share/gettext/po; \
  for file in Makefile.in.in remove-potcdate.sin quot.sed boldquot.sed en@quot.header en@boldquot.header insert-header.sin Rules-quot   Makevars.template; do \
    /gnu/store/9kzrrccpzl6i1sfwb0drb00gi2gwk0x0-coreutils-8.31/bin/install -c -m 644 ./$file \
		    /gnu/store/80x24g3smi1nkl7ss991ai863dnz5f3d-gnutls-3.6.7/share/gettext/po/$file; \
  done; \
  for file in Makevars; do \
    rm -f /gnu/store/80x24g3smi1nkl7ss991ai863dnz5f3d-gnutls-3.6.7/share/gettext/po/$file; \
  done; \
else \
  : ; \
fi
make[1]: Leaving directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/po'
Making install in src/gl
make[1]: Entering directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/src/gl'
make  install-recursive
make[2]: Entering directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/src/gl'
make[3]: Entering directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/src/gl'
make[4]: Entering directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/src/gl'
make[4]: Nothing to be done for 'install-exec-am'.
make[4]: Nothing to be done for 'install-data-am'.
make[4]: Leaving directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/src/gl'
make[3]: Leaving directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/src/gl'
make[2]: Leaving directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/src/gl'
make[1]: Leaving directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/src/gl'
Making install in src
make[1]: Entering directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/src'
make  install-recursive
make[2]: Entering directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/src'
Making install in libopts
make[3]: Entering directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/src/libopts'
make  install-am
make[4]: Entering directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/src/libopts'
make[5]: Entering directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/src/libopts'
make[5]: Nothing to be done for 'install-exec-am'.
make[5]: Nothing to be done for 'install-data-am'.
make[5]: Leaving directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/src/libopts'
make[4]: Leaving directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/src/libopts'
make[3]: Leaving directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/src/libopts'
make[3]: Entering directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/src'
make[4]: Entering directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/src'
 /gnu/store/9kzrrccpzl6i1sfwb0drb00gi2gwk0x0-coreutils-8.31/bin/mkdir -p '/gnu/store/80x24g3smi1nkl7ss991ai863dnz5f3d-gnutls-3.6.7/bin'
  /gnu/store/29jhbbg1hf557x8j53f9sxd9imlmf02a-bash-minimal-5.0.7/bin/bash ../libtool   --mode=install /gnu/store/9kzrrccpzl6i1sfwb0drb00gi2gwk0x0-coreutils-8.31/bin/install -c psktool gnutls-cli-debug certtool srptool ocsptool gnutls-serv gnutls-cli '/gnu/store/80x24g3smi1nkl7ss991ai863dnz5f3d-gnutls-3.6.7/bin'
libtool: install: /gnu/store/9kzrrccpzl6i1sfwb0drb00gi2gwk0x0-coreutils-8.31/bin/install -c .libs/psktool /gnu/store/80x24g3smi1nkl7ss991ai863dnz5f3d-gnutls-3.6.7/bin/psktool
libtool: install: /gnu/store/9kzrrccpzl6i1sfwb0drb00gi2gwk0x0-coreutils-8.31/bin/install -c .libs/gnutls-cli-debug /gnu/store/80x24g3smi1nkl7ss991ai863dnz5f3d-gnutls-3.6.7/bin/gnutls-cli-debug
libtool: install: /gnu/store/9kzrrccpzl6i1sfwb0drb00gi2gwk0x0-coreutils-8.31/bin/install -c .libs/certtool /gnu/store/80x24g3smi1nkl7ss991ai863dnz5f3d-gnutls-3.6.7/bin/certtool
libtool: install: /gnu/store/9kzrrccpzl6i1sfwb0drb00gi2gwk0x0-coreutils-8.31/bin/install -c .libs/srptool /gnu/store/80x24g3smi1nkl7ss991ai863dnz5f3d-gnutls-3.6.7/bin/srptool
libtool: install: /gnu/store/9kzrrccpzl6i1sfwb0drb00gi2gwk0x0-coreutils-8.31/bin/install -c .libs/ocsptool /gnu/store/80x24g3smi1nkl7ss991ai863dnz5f3d-gnutls-3.6.7/bin/ocsptool
libtool: install: /gnu/store/9kzrrccpzl6i1sfwb0drb00gi2gwk0x0-coreutils-8.31/bin/install -c .libs/gnutls-serv /gnu/store/80x24g3smi1nkl7ss991ai863dnz5f3d-gnutls-3.6.7/bin/gnutls-serv
libtool: install: /gnu/store/9kzrrccpzl6i1sfwb0drb00gi2gwk0x0-coreutils-8.31/bin/install -c .libs/gnutls-cli /gnu/store/80x24g3smi1nkl7ss991ai863dnz5f3d-gnutls-3.6.7/bin/gnutls-cli
make[4]: Nothing to be done for 'install-data-am'.
make[4]: Leaving directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/src'
make[3]: Leaving directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/src'
make[2]: Leaving directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/src'
make[1]: Leaving directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/src'
Making install in tests
make[1]: Entering directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/tests'
Making install in .
make[2]: Entering directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/tests'
make[3]: Entering directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/tests'
make[3]: Nothing to be done for 'install-exec-am'.
make[3]: Nothing to be done for 'install-data-am'.
make[3]: Leaving directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/tests'
make[2]: Leaving directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/tests'
Making install in cert-tests
make[2]: Entering directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/tests/cert-tests'
make[3]: Entering directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/tests/cert-tests'
make[3]: Nothing to be done for 'install-exec-am'.
make[3]: Nothing to be done for 'install-data-am'.
make[3]: Leaving directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/tests/cert-tests'
make[2]: Leaving directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/tests/cert-tests'
Making install in slow
make[2]: Entering directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/tests/slow'
make[3]: Entering directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/tests/slow'
make[3]: Nothing to be done for 'install-exec-am'.
make[3]: Nothing to be done for 'install-data-am'.
make[3]: Leaving directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/tests/slow'
make[2]: Leaving directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/tests/slow'
make[1]: Leaving directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/tests'
Making install in fuzz
make[1]: Entering directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/fuzz'
make[2]: Entering directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/fuzz'
make[2]: Nothing to be done for 'install-exec-am'.
make[2]: Nothing to be done for 'install-data-am'.
make[2]: Leaving directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/fuzz'
make[1]: Leaving directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/fuzz'
Making install in guile
make[1]: Entering directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/guile'
Making install in src
make[2]: Entering directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/guile/src'
make  install-am
make[3]: Entering directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/guile/src'
make[4]: Entering directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/guile/src'
make[4]: Nothing to be done for 'install-exec-am'.
 /gnu/store/9kzrrccpzl6i1sfwb0drb00gi2gwk0x0-coreutils-8.31/bin/mkdir -p '/gnu/store/80x24g3smi1nkl7ss991ai863dnz5f3d-gnutls-3.6.7/lib/guile/2.2'
 /gnu/store/29jhbbg1hf557x8j53f9sxd9imlmf02a-bash-minimal-5.0.7/bin/bash ../../libtool   --mode=install /gnu/store/9kzrrccpzl6i1sfwb0drb00gi2gwk0x0-coreutils-8.31/bin/install -c   guile-gnutls-v-2.la '/gnu/store/80x24g3smi1nkl7ss991ai863dnz5f3d-gnutls-3.6.7/lib/guile/2.2'
libtool: warning: relinking 'guile-gnutls-v-2.la'
libtool: install: (cd /tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/guile/src; /gnu/store/29jhbbg1hf557x8j53f9sxd9imlmf02a-bash-minimal-5.0.7/bin/bash "/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/libtool"  --silent --tag CC --mode=relink gcc -Wall -Wextra -Wno-strict-prototypes -Wno-unused-parameter -I../../gl -I../../gl -pthread -I/gnu/store/1mkkv2caiqbdbbd256c4dirfi4kwsacv-guile-2.2.6/include/guile/2.2 -g -O2 -module -no-undefined -o guile-gnutls-v-2.la -rpath /gnu/store/80x24g3smi1nkl7ss991ai863dnz5f3d-gnutls-3.6.7/lib/guile/2.2 guile_gnutls_v_2_la-core.lo guile_gnutls_v_2_la-errors.lo guile_gnutls_v_2_la-utils.lo ../../lib/libgnutls.la ../../gl/libgnu.la -L/gnu/store/1mkkv2caiqbdbbd256c4dirfi4kwsacv-guile-2.2.6/lib -L/gnu/store/3xs3dnc28p9fi8in7hkfcdx20incrdvq-libgc-7.6.12/lib -L
 /gnu/store/bvpnq3alwbavyk4663j4p9x9hakxwc4d-libatomic-ops-7.6.10/lib -lguile-2.2 -latomic_ops -lgc )
libtool: install: /gnu/store/9kzrrccpzl6i1sfwb0drb00gi2gwk0x0-coreutils-8.31/bin/install -c .libs/guile-gnutls-v-2.so.0.0.0T /gnu/store/80x24g3smi1nkl7ss991ai863dnz5f3d-gnutls-3.6.7/lib/guile/2.2/guile-gnutls-v-2.so.0.0.0
libtool: install: (cd /gnu/store/80x24g3smi1nkl7ss991ai863dnz5f3d-gnutls-3.6.7/lib/guile/2.2 && { ln -s -f guile-gnutls-v-2.so.0.0.0 guile-gnutls-v-2.so.0 || { rm -f guile-gnutls-v-2.so.0 && ln -s guile-gnutls-v-2.so.0.0.0 guile-gnutls-v-2.so.0; }; })
libtool: install: (cd /gnu/store/80x24g3smi1nkl7ss991ai863dnz5f3d-gnutls-3.6.7/lib/guile/2.2 && { ln -s -f guile-gnutls-v-2.so.0.0.0 guile-gnutls-v-2.so || { rm -f guile-gnutls-v-2.so && ln -s guile-gnutls-v-2.so.0.0.0 guile-gnutls-v-2.so; }; })
libtool: install: /gnu/store/9kzrrccpzl6i1sfwb0drb00gi2gwk0x0-coreutils-8.31/bin/install -c .libs/guile-gnutls-v-2.lai /gnu/store/80x24g3smi1nkl7ss991ai863dnz5f3d-gnutls-3.6.7/lib/guile/2.2/guile-gnutls-v-2.la
libtool: finish: PATH="/gnu/store/03j8k18d0jrs8z5llizd8xfg38ijj453-net-tools-1.60-0.479bb4a/bin:/gnu/store/03j8k18d0jrs8z5llizd8xfg38ijj453-net-tools-1.60-0.479bb4a/sbin:/gnu/store/i1cqaixp79vd3qwnyj1ll10pq6skm2wk-pkg-config-0.29.2/bin:/gnu/store/4izp5ih15pdr3q2hax2c6fmjqsw4vcrv-which-2.21/bin:/gnu/store/cnqpra8vr2l5fz00rr4yj4bp3hr00cfw-tar-1.32/bin:/gnu/store/py3k9zla9fj3z7430v4crqj5pyrsd3qj-gzip-1.10/bin:/gnu/store/l86azr7r3p5631wj3kk329jl1y1mpjgy-bzip2-1.0.6/bin:/gnu/store/lbip9isk25isymvnb159l115xnacb5j8-xz-5.2.4/bin:/gnu/store/6jdshxwdrad9mlhcqc9k0g24yw45rqf1-file-5.33/bin:/gnu/store/58sq8iabw3jkv0fvf95hd7sq2g4xcsnz-diffutils-3.7/bin:/gnu/store/v76scv4n63ip08g119rczh2mrw31zwpd-patch-2.7.6/bin:/gnu/store/g9d3wv1d68iflx57yp3mcp3k3sv8spsl-findutils-4.6.0/bin:/gnu/store/2z9hsww76aag37p406
 71l9niq5pvvasx-gawk-5.0.1/bin:/gnu/store/afmvfw1yhfal48n1kjq6bk6kcw8sc3db-sed-4.7/bin:/gnu/store/7iyvxhp2g3v3655zqwr6biz2h0lqv7pr-grep-3.3/bin:/gnu/store/9kzrrccpzl6i1sfwb0drb00gi2gwk0x0-cor
 eutils-8.31/bin:/gnu/store/b5vpfzkr59bpgcsg1k9vvad9h5rwvpgk-make-4.2.1/bin:/gnu/store/29jhbbg1hf557x8j53f9sxd9imlmf02a-bash-minimal-5.0.7/bin:/gnu/store/nc5vlidpxbvngalng30nif8nb3j7gfy2-ld-wrapper-0/bin:/gnu/store/3hkdiscs4910r75njbrql10znxxn7chk-binutils-2.32/bin:/gnu/store/x3jx25cd3q363mr7nbgzrhrv1vza6cf7-gcc-7.4.0/bin:/gnu/store/ahqgl4h89xqj695lgqvsaf6zh2nhy4pj-glibc-2.29/bin:/gnu/store/ahqgl4h89xqj695lgqvsaf6zh2nhy4pj-glibc-2.29/sbin:/gnu/store/1mkkv2caiqbdbbd256c4dirfi4kwsacv-guile-2.2.6/bin:/gnu/store/lwz8fygpmmsw6h8vrllr56p7ssi5qx33-libtasn1-4.14/bin:/gnu/store/7gabmw9siqrz79slpi1f8i90v3w1638x-libidn2-2.2.0/bin:/gnu/store/lvnybsygfd6gya6xbdv48g72lb0iqqzx-nettle-3.5.1/bin:/sbin" ldconfig -n /gnu/store/80x24g3smi1nkl7ss991ai863dnz5f3d-gnutls-3.6.7/lib/guile/2.2
/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/libtool: line 1733: ldconfig: command not found
----------------------------------------------------------------------
Libraries have been installed in:
   /gnu/store/80x24g3smi1nkl7ss991ai863dnz5f3d-gnutls-3.6.7/lib/guile/2.2

If you ever happen to want to link against installed libraries
in a given directory, LIBDIR, you must either use libtool, and
specify the full pathname of the library, or use the '-LLIBDIR'
flag during linking and do at least one of the following:
   - add LIBDIR to the 'LD_LIBRARY_PATH' environment variable
     during execution
   - add LIBDIR to the 'LD_RUN_PATH' environment variable
     during linking
   - use the '-Wl,-rpath -Wl,LIBDIR' linker flag
   - have your system administrator run these commands:


See any operating system documentation about shared libraries for
more information, such as the ld(1) and ld.so(8) manual pages.
----------------------------------------------------------------------
make[4]: Leaving directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/guile/src'
make[3]: Leaving directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/guile/src'
make[2]: Leaving directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/guile/src'
make[2]: Entering directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/guile'
make[3]: Entering directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/guile'
make[3]: Nothing to be done for 'install-exec-am'.
 /gnu/store/9kzrrccpzl6i1sfwb0drb00gi2gwk0x0-coreutils-8.31/bin/mkdir -p '/gnu/store/1mkkv2caiqbdbbd256c4dirfi4kwsacv-guile-2.2.6/share/guile/site/2.2/gnutls'
/gnu/store/9kzrrccpzl6i1sfwb0drb00gi2gwk0x0-coreutils-8.31/bin/mkdir: cannot create directory '/gnu/store/1mkkv2caiqbdbbd256c4dirfi4kwsacv-guile-2.2.6/share/guile/site': Permission denied
make[3]: *** [Makefile:1726: install-dist_guilemodulesubDATA] Error 1
make[3]: Leaving directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/guile'
make[2]: *** [Makefile:2193: install-am] Error 2
make[2]: Leaving directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/guile'
make[1]: *** [Makefile:1816: install-recursive] Error 1
make[1]: Leaving directory '/tmp/guix-build-gnutls-3.6.7.drv-0/gnutls-3.6.7/guile'
make: *** [Makefile:1572: install-recursive] Error 1
command "make" "install" failed with status 2

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

* Re: Maintaining GNU Jami package for Guix
  2019-10-27 18:13 ` Jan Wielkiewicz
@ 2019-10-27 18:18   ` Pierre Neidhardt
  2019-10-27 19:23     ` Jan Wielkiewicz
  0 siblings, 1 reply; 40+ messages in thread
From: Pierre Neidhardt @ 2019-10-27 18:18 UTC (permalink / raw)
  To: Jan Wielkiewicz, guix-devel

[-- Attachment #1: Type: text/plain, Size: 554 bytes --]

Thanks for the update! :)

Jan Wielkiewicz <tona_kosmicznego_smiecia@interia.pl> writes:

> also gnutls needed for pjproject-jami has
> the wrong version - 3.6.9, whereas the current version used by Jami is
> 3.6.7 according to this commit
> https://review.jami.net/c/ring-daemon/+/12108/1/contrib/src/gnutls/rules.mak
> (but I'll ask developers to make sure)
>
> I tried downgrading gnutls (because I think it's the cause of failing
> patches),

Which failing patch and what fails?  Output?

-- 
Pierre Neidhardt
https://ambrevar.xyz/

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 487 bytes --]

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

* Re: Maintaining GNU Jami package for Guix
  2019-10-27 18:18   ` Pierre Neidhardt
@ 2019-10-27 19:23     ` Jan Wielkiewicz
  0 siblings, 0 replies; 40+ messages in thread
From: Jan Wielkiewicz @ 2019-10-27 19:23 UTC (permalink / raw)
  To: Pierre Neidhardt; +Cc: guix-devel

Dnia 2019-10-27, o godz. 19:18:19
Pierre Neidhardt <mail@ambrevar.xyz> napisał(a):

> Thanks for the update! :) 
> Which failing patch and what fails?  Output?
Sorry, I sent a mail explaining everything yesterday, but it seems it
got lost somewhere - your or mine mail provider does something
(blocks?) or the ML has a bug. Reposting it here, hope this time it'll
work:

Dnia 2019-10-26, o godz. 12:12:44
Pierre Neidhardt <mail@ambrevar.xyz> napisał(a):

> Nice, thank you for getting in touch with the developers, this is
> very informative.
> 
> Have you tried using pjproject
> 5dfa75be7d69047387f9b0436dd9492bbbf03fe4 ?
> Does the patching still fail?
I've tried this today and it still fails. Don't know if the fails with
the exact commit are much different from 2.9 fetched from the tarball.
If they're not different, then you can see what happens in one of my
comments here
https://git.ring.cx/savoirfairelinux/ring-project/issues/691

> Also it now depends on Restinio, I think we are missing this one, so
> it would need to be packaged first.  (But that's unrelated to the
> patch issue.)
I'm going to package it eventually, but for now I want to fix the
current problems and then proceed with the rest.


Jan Wielkiewicz

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

* Re: Maintaining GNU Jami package for Guix
  2019-10-18 18:56 Maintaining GNU Jami package for Guix Jan
  2019-10-18 19:28 ` Marius Bakke
  2019-10-27 18:13 ` Jan Wielkiewicz
@ 2019-10-27 21:52 ` Jan Wielkiewicz
  2019-10-31 20:19 ` Jan Wielkiewicz
  2019-11-01 12:29 ` Jan Wielkiewicz
  4 siblings, 0 replies; 40+ messages in thread
From: Jan Wielkiewicz @ 2019-10-27 21:52 UTC (permalink / raw)
  To: guix-devel

Dnia 2019-10-27, o godz. 19:18:19
Pierre Neidhardt <mail@ambrevar.xyz> napisał(a):

> Thanks for the update! :) 
> Which failing patch and what fails?  Output?
Sorry, I sent a mail explaining everything yesterday, but it seems it
got lost somewhere - your or mine mail provider does something
(blocks?) or the ML has a bug. Reposting it here, hope this time it'll
work (it didn't work again - sending this the second time, don't know
what's wrong
- I use the "reply to all" option, it generally works, don't know why
this case is different):

Dnia 2019-10-26, o godz. 12:12:44
Pierre Neidhardt <mail@ambrevar.xyz> napisał(a):

> Nice, thank you for getting in touch with the developers, this is
> very informative.
> 
> Have you tried using pjproject
> 5dfa75be7d69047387f9b0436dd9492bbbf03fe4 ?
> Does the patching still fail?
I've tried this today and it still fails. Don't know if the fails with
the exact commit are much different from 2.9 fetched from the tarball.
If they're not different, then you can see what happens in one of my
comments here
https://git.ring.cx/savoirfairelinux/ring-project/issues/691

> Also it now depends on Restinio, I think we are missing this one, so
> it would need to be packaged first.  (But that's unrelated to the
> patch issue.)
I'm going to package it eventually, but for now I want to fix the
current problems and then proceed with the rest.


Jan Wielkiewicz

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

* Re: Maintaining GNU Jami package for Guix
  2019-10-26 23:24               ` Jan Wielkiewicz
@ 2019-10-28  7:53                 ` Pierre Neidhardt
  0 siblings, 0 replies; 40+ messages in thread
From: Pierre Neidhardt @ 2019-10-28  7:53 UTC (permalink / raw)
  To: Jan Wielkiewicz; +Cc: guix-devel

[-- Attachment #1: Type: text/plain, Size: 837 bytes --]

Got your 3 emails! :)

>> Have you tried using pjproject
>> 5dfa75be7d69047387f9b0436dd9492bbbf03fe4 ?
>> Does the patching still fail?
> I've tried this today and it still fails. Don't know if the fails with
> the exact commit are much different from 2.9 fetched from the tarball.
> If they're not different, then you can see what happens in one of my
> comments here
> https://git.ring.cx/savoirfairelinux/ring-project/issues/691

Then this is not related to the Guix packages or the inputs, it's
related to the source you are fetching.

What if you `diff -r` the offending package in the third party folder
with the aforementioned commit?

The Jami developer should know more about this.  I'm starting to be a
little scared of how out of hands dep management goes :p

-- 
Pierre Neidhardt
https://ambrevar.xyz/

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 487 bytes --]

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

* Re: Maintaining GNU Jami package for Guix
  2019-10-18 18:56 Maintaining GNU Jami package for Guix Jan
                   ` (2 preceding siblings ...)
  2019-10-27 21:52 ` Jan Wielkiewicz
@ 2019-10-31 20:19 ` Jan Wielkiewicz
  2019-10-31 21:37   ` Pierre Neidhardt
  2019-10-31 22:26   ` Marius Bakke
  2019-11-01 12:29 ` Jan Wielkiewicz
  4 siblings, 2 replies; 40+ messages in thread
From: Jan Wielkiewicz @ 2019-10-31 20:19 UTC (permalink / raw)
  To: guix-devel

[-- Attachment #1: Type: text/plain, Size: 2691 bytes --]

Hi,
I have good news:
I managed to update gnutls to 3.6.10, which is the version Jami is
going to use soon https://review.jami.net/c/ring-daemon/+/12879
and because of it, patches for pjproject-jami now get applied
correctly, but during the build of curl, I guess it's a dependency of
pjpoject), a test fails. I'm using the Jami tarball from 29 October
though, while the bump was merged recently (31 October).
Should I just skip the test or should I wait for the tarball with the
change?

Here is a part of the log, I attached the full log also.

 644: protocol FAILED:
--- log/check-expected	2019-10-31 19:13:05.899471460 +0000
+++ log/check-generated	2019-10-31 19:13:05.899471460 +0000
@@ -1,9 +0,0 @@
-POST /644 HTTP/1.1[CR][LF]
-Host: 127.0.0.1:8990[CR][LF]
-Accept: */*[CR][LF]
-Content-Length: 718[CR][LF]
-Content-Type: multipart/form-data;
 boundary=----------------------------[CR][LF]
-[CR][LF]
-------------------------------[CR][LF]
-Content-Disposition: form-data; name="sendfile";
 filename="postit2.c"[CR][LF]
-[CR][LF]

 - abort tests
TESTDONE: 396 tests out of 397 reported OK: 99%
TESTFAIL: These test cases failed: 644 
TESTDONE: 514 tests were considered during 161 seconds.
TESTINFO: 117 tests were skipped due to these restraints:
TESTINFO: "no stunnel" 23 times (300, 301, 302, 303, 304, 305, 306,
   309, 310 and 14 more)
TESTINFO: "curl lacks TrackMemory support" 2 times (96, 558)
TESTINFO: "curl lacks debug support" 22 times (67, 68, 69, 81, 89, 90,
   91, 150, 155 and 13 more)
TESTINFO: "configured as DISABLED" 17 times (530, 584, 594, 836, 882,
   938, 1209, 1211, 1307 and 8 more)
TESTINFO: "curl lacks sftp server support" 33 times (582, 583, 600,
   602, 604, 606, 608, 609, 610 and 24 more)
TESTINFO: "curl lacks brotli support" 3 times (314, 315, 316)
TESTINFO: "curl lacks alt-svc support" 1 times (355)
TESTINFO: "curl lacks scp server support" 11 times (601, 603, 605, 607,
   617, 619, 621, 623, 629 and 2 more)
TESTINFO: "curl lacks OpenSSL support" 2 times (307, 308)
TESTINFO: "curl lacks sftp support" 1 times (632)
TESTINFO: "curl has threaded-resolver support" 1 times (506)
TESTINFO: "Resolving IPv6 'ip6-localhost' didn't work" 1 times (241)
make: *** [Makefile:794: test] Error 1
make: Leaving directory
   '/tmp/guix-build-curl-7.66.0.drv-0/curl-7.66.0/tests'
command "make" "-C" "tests" "test" failed with status 2


Also as for packaging Jami generally, I think we should keep a separate
versions of things like gnutls and pjproject (basically all
dependencies of pjproject), because version used by Jami are often not
up to date and considering patches getting applied, using an unproper
version can break compilation.

Jan Wielkiewicz

[-- Attachment #2: mhqf6kn4f6px4fvbp40yhxxajir4b4-curl-7.66.0.drv --]
[-- Type: application/octet-stream, Size: 256840 bytes --]

starting phase `set-SOURCE-DATE-EPOCH'
phase `set-SOURCE-DATE-EPOCH' succeeded after 0.0 seconds
starting phase `set-paths'
environment variable `PATH' set to `/gnu/store/ziinjmbnq004866mwjrczsk12wf35qb8-perl-5.30.0/bin:/gnu/store/hhwzzrg3cjzcwki6irmxssakppphdifh-groff-1.22.4/bin:/gnu/store/i1cqaixp79vd3qwnyj1ll10pq6skm2wk-pkg-config-0.29.2/bin:/gnu/store/l8nphg0idd8pfddyad8f92lx8d1hc053-python-wrapper-3.7.4/bin:/gnu/store/cnqpra8vr2l5fz00rr4yj4bp3hr00cfw-tar-1.32/bin:/gnu/store/py3k9zla9fj3z7430v4crqj5pyrsd3qj-gzip-1.10/bin:/gnu/store/l86azr7r3p5631wj3kk329jl1y1mpjgy-bzip2-1.0.6/bin:/gnu/store/lbip9isk25isymvnb159l115xnacb5j8-xz-5.2.4/bin:/gnu/store/6jdshxwdrad9mlhcqc9k0g24yw45rqf1-file-5.33/bin:/gnu/store/58sq8iabw3jkv0fvf95hd7sq2g4xcsnz-diffutils-3.7/bin:/gnu/store/v76scv4n63ip08g119rczh2mrw31zwpd-patch-2.7.6/bin:/gnu/store/g9d3wv1d68iflx57yp3mcp3k3sv8spsl-findutils-4.6.0/bin:/gnu/store/2z9hsww76aag37p40671l9niq5pvvasx-gawk-5.0.1/bin:/gnu/store/afmvfw1yhfal48n1kjq6bk6kcw8sc3db-sed-4.7/bin:/gnu/store/7iyvxhp2g3v3655zqwr6biz2h0lqv7pr-grep-3.3/bin:/gnu/store/9kzrrccpzl6i1sfwb0drb00gi2gwk0x0-coreutils-8.31/bin:/gnu/store/b5vpfzkr59bpgcsg1k9vvad9h5rwvpgk-make-4.2.1/bin:/gnu/store/29jhbbg1hf557x8j53f9sxd9imlmf02a-bash-minimal-5.0.7/bin:/gnu/store/nc5vlidpxbvngalng30nif8nb3j7gfy2-ld-wrapper-0/bin:/gnu/store/3hkdiscs4910r75njbrql10znxxn7chk-binutils-2.32/bin:/gnu/store/x3jx25cd3q363mr7nbgzrhrv1vza6cf7-gcc-7.4.0/bin:/gnu/store/ahqgl4h89xqj695lgqvsaf6zh2nhy4pj-glibc-2.29/bin:/gnu/store/ahqgl4h89xqj695lgqvsaf6zh2nhy4pj-glibc-2.29/sbin:/gnu/store/ms32lbgjkz2vwk0ih79ysygs3dxaydix-gnutls-3.6.10/bin:/gnu/store/gkb47ahv0km21rnmy36325q7acf56hjd-libidn-1.35/bin:/gnu/store/2g1y2bpal2v08w5i63cdm56yx6id7g4b-openldap-2.4.47/bin:/gnu/store/2g1y2bpal2v08w5i63cdm56yx6id7g4b-openldap-2.4.47/sbin:/gnu/store/4rs159kgsa0l1svi5vbvn86in7z28bpl-mit-krb5-1.17/bin:/gnu/store/4rs159kgsa0l1svi5vbvn86in7z28bpl-mit-krb5-1.17/sbin:/gnu/store/78w7y0lxar70j512iqw8x3nimzj10yga-python-3.7.4/bin:/gnu/store/lvnybsygfd6gya6xbdv48g72lb0iqqzx-nettle-3.5.1/bin:/gnu/store/7gabmw9siqrz79slpi1f8i90v3w1638x-libidn2-2.2.0/bin:/gnu/store/lwz8fygpmmsw6h8vrllr56p7ssi5qx33-libtasn1-4.14/bin'
environment variable `PERL5LIB' set to `/gnu/store/ziinjmbnq004866mwjrczsk12wf35qb8-perl-5.30.0/lib/perl5/site_perl'
environment variable `PKG_CONFIG_PATH' set to `/gnu/store/lbip9isk25isymvnb159l115xnacb5j8-xz-5.2.4/lib/pkgconfig:/gnu/store/ms32lbgjkz2vwk0ih79ysygs3dxaydix-gnutls-3.6.10/lib/pkgconfig:/gnu/store/gkb47ahv0km21rnmy36325q7acf56hjd-libidn-1.35/lib/pkgconfig:/gnu/store/4rs159kgsa0l1svi5vbvn86in7z28bpl-mit-krb5-1.17/lib/pkgconfig:/gnu/store/zavdh2z5mwkakjf1v98x43w1hzjzxkhl-nghttp2-1.39.1-lib/lib/pkgconfig:/gnu/store/qx7p7hiq90mi7r78hcr9cyskccy2j4bg-zlib-1.2.11/lib/pkgconfig:/gnu/store/78w7y0lxar70j512iqw8x3nimzj10yga-python-3.7.4/lib/pkgconfig:/gnu/store/lvnybsygfd6gya6xbdv48g72lb0iqqzx-nettle-3.5.1/lib/pkgconfig:/gnu/store/7gabmw9siqrz79slpi1f8i90v3w1638x-libidn2-2.2.0/lib/pkgconfig:/gnu/store/lwz8fygpmmsw6h8vrllr56p7ssi5qx33-libtasn1-4.14/lib/pkgconfig'
environment variable `PYTHONPATH' set to `/gnu/store/78w7y0lxar70j512iqw8x3nimzj10yga-python-3.7.4/lib/python3.7/site-packages'
environment variable `BASH_LOADABLES_PATH' unset
environment variable `CPATH' set to `/gnu/store/l86azr7r3p5631wj3kk329jl1y1mpjgy-bzip2-1.0.6/include:/gnu/store/lbip9isk25isymvnb159l115xnacb5j8-xz-5.2.4/include:/gnu/store/6jdshxwdrad9mlhcqc9k0g24yw45rqf1-file-5.33/include:/gnu/store/2z9hsww76aag37p40671l9niq5pvvasx-gawk-5.0.1/include:/gnu/store/b5vpfzkr59bpgcsg1k9vvad9h5rwvpgk-make-4.2.1/include:/gnu/store/3hkdiscs4910r75njbrql10znxxn7chk-binutils-2.32/include:/gnu/store/x3jx25cd3q363mr7nbgzrhrv1vza6cf7-gcc-7.4.0/include:/gnu/store/ahqgl4h89xqj695lgqvsaf6zh2nhy4pj-glibc-2.29/include:/gnu/store/ms32lbgjkz2vwk0ih79ysygs3dxaydix-gnutls-3.6.10/include:/gnu/store/gkb47ahv0km21rnmy36325q7acf56hjd-libidn-1.35/include:/gnu/store/2g1y2bpal2v08w5i63cdm56yx6id7g4b-openldap-2.4.47/include:/gnu/store/4rs159kgsa0l1svi5vbvn86in7z28bpl-mit-krb5-1.17/include:/gnu/store/zavdh2z5mwkakjf1v98x43w1hzjzxkhl-nghttp2-1.39.1-lib/include:/gnu/store/qx7p7hiq90mi7r78hcr9cyskccy2j4bg-zlib-1.2.11/include:/gnu/store/78w7y0lxar70j512iqw8x3nimzj10yga-python-3.7.4/include:/gnu/store/7czrqpi0kwazras6pgyx0bhdn89pg0jl-linux-libre-headers-4.19.56/include:/gnu/store/lvnybsygfd6gya6xbdv48g72lb0iqqzx-nettle-3.5.1/include:/gnu/store/7gabmw9siqrz79slpi1f8i90v3w1638x-libidn2-2.2.0/include:/gnu/store/lwz8fygpmmsw6h8vrllr56p7ssi5qx33-libtasn1-4.14/include:/gnu/store/y7qk8raalgvdnxcglvxa320cfxrjk1x6-gmp-6.1.2/include'
environment variable `LIBRARY_PATH' set to `/gnu/store/ziinjmbnq004866mwjrczsk12wf35qb8-perl-5.30.0/lib:/gnu/store/hhwzzrg3cjzcwki6irmxssakppphdifh-groff-1.22.4/lib:/gnu/store/l86azr7r3p5631wj3kk329jl1y1mpjgy-bzip2-1.0.6/lib:/gnu/store/lbip9isk25isymvnb159l115xnacb5j8-xz-5.2.4/lib:/gnu/store/6jdshxwdrad9mlhcqc9k0g24yw45rqf1-file-5.33/lib:/gnu/store/2z9hsww76aag37p40671l9niq5pvvasx-gawk-5.0.1/lib:/gnu/store/3hkdiscs4910r75njbrql10znxxn7chk-binutils-2.32/lib:/gnu/store/ahqgl4h89xqj695lgqvsaf6zh2nhy4pj-glibc-2.29/lib:/gnu/store/qky1x5bb2jygy58bn6y95ygfsmpakf52-glibc-2.29-static/lib:/gnu/store/mmqp1xqffn6qw6v88i627c2bpbq36fcy-glibc-utf8-locales-2.29/lib:/gnu/store/ms32lbgjkz2vwk0ih79ysygs3dxaydix-gnutls-3.6.10/lib:/gnu/store/gkb47ahv0km21rnmy36325q7acf56hjd-libidn-1.35/lib:/gnu/store/2g1y2bpal2v08w5i63cdm56yx6id7g4b-openldap-2.4.47/lib:/gnu/store/4rs159kgsa0l1svi5vbvn86in7z28bpl-mit-krb5-1.17/lib:/gnu/store/zavdh2z5mwkakjf1v98x43w1hzjzxkhl-nghttp2-1.39.1-lib/lib:/gnu/store/qx7p7hiq90mi7r78hcr9cyskccy2j4bg-zlib-1.2.11/lib:/gnu/store/78w7y0lxar70j512iqw8x3nimzj10yga-python-3.7.4/lib:/gnu/store/lvnybsygfd6gya6xbdv48g72lb0iqqzx-nettle-3.5.1/lib:/gnu/store/7gabmw9siqrz79slpi1f8i90v3w1638x-libidn2-2.2.0/lib:/gnu/store/lwz8fygpmmsw6h8vrllr56p7ssi5qx33-libtasn1-4.14/lib:/gnu/store/y7qk8raalgvdnxcglvxa320cfxrjk1x6-gmp-6.1.2/lib'
environment variable `GUIX_LOCPATH' set to `/gnu/store/mmqp1xqffn6qw6v88i627c2bpbq36fcy-glibc-utf8-locales-2.29/lib/locale'
phase `set-paths' succeeded after 0.0 seconds
starting phase `install-locale'
using 'en_US.utf8' locale for category "LC_ALL"
phase `install-locale' succeeded after 0.0 seconds
starting phase `unpack'
curl-7.66.0/
curl-7.66.0/projects/
curl-7.66.0/projects/README
curl-7.66.0/projects/generate.bat
curl-7.66.0/projects/wolfssl_override.props
curl-7.66.0/projects/checksrc.bat
curl-7.66.0/projects/wolfssl_options.h
curl-7.66.0/projects/build-openssl.bat
curl-7.66.0/projects/Windows/
curl-7.66.0/projects/Windows/VC6/
curl-7.66.0/projects/Windows/VC6/lib/
curl-7.66.0/projects/Windows/VC6/lib/libcurl.dsw
curl-7.66.0/projects/Windows/VC6/lib/libcurl.dsp
curl-7.66.0/projects/Windows/VC6/src/
curl-7.66.0/projects/Windows/VC6/src/curl.dsw
curl-7.66.0/projects/Windows/VC6/src/curl.dsp
curl-7.66.0/projects/Windows/VC6/curl-all.dsw
curl-7.66.0/projects/Windows/VC7.1/
curl-7.66.0/projects/Windows/VC7.1/lib/
curl-7.66.0/projects/Windows/VC7.1/lib/libcurl.sln
curl-7.66.0/projects/Windows/VC7.1/lib/libcurl.vcproj
curl-7.66.0/projects/Windows/VC7.1/src/
curl-7.66.0/projects/Windows/VC7.1/src/curl.sln
curl-7.66.0/projects/Windows/VC7.1/src/curl.vcproj
curl-7.66.0/projects/Windows/VC7.1/curl-all.sln
curl-7.66.0/projects/Windows/VC8/
curl-7.66.0/projects/Windows/VC8/lib/
curl-7.66.0/projects/Windows/VC8/lib/libcurl.sln
curl-7.66.0/projects/Windows/VC8/lib/libcurl.vcproj
curl-7.66.0/projects/Windows/VC8/src/
curl-7.66.0/projects/Windows/VC8/src/curl.sln
curl-7.66.0/projects/Windows/VC8/src/curl.vcproj
curl-7.66.0/projects/Windows/VC8/curl-all.sln
curl-7.66.0/projects/Windows/VC14/
curl-7.66.0/projects/Windows/VC14/lib/
curl-7.66.0/projects/Windows/VC14/lib/libcurl.sln
curl-7.66.0/projects/Windows/VC14/lib/libcurl.vcxproj.filters
curl-7.66.0/projects/Windows/VC14/lib/libcurl.vcxproj
curl-7.66.0/projects/Windows/VC14/src/
curl-7.66.0/projects/Windows/VC14/src/curl.vcxproj.filters
curl-7.66.0/projects/Windows/VC14/src/curl.sln
curl-7.66.0/projects/Windows/VC14/src/curl.vcxproj
curl-7.66.0/projects/Windows/VC14/curl-all.sln
curl-7.66.0/projects/Windows/VC9/
curl-7.66.0/projects/Windows/VC9/lib/
curl-7.66.0/projects/Windows/VC9/lib/libcurl.sln
curl-7.66.0/projects/Windows/VC9/lib/libcurl.vcproj
curl-7.66.0/projects/Windows/VC9/src/
curl-7.66.0/projects/Windows/VC9/src/curl.sln
curl-7.66.0/projects/Windows/VC9/src/curl.vcproj
curl-7.66.0/projects/Windows/VC9/curl-all.sln
curl-7.66.0/projects/Windows/VC12/
curl-7.66.0/projects/Windows/VC12/lib/
curl-7.66.0/projects/Windows/VC12/lib/libcurl.sln
curl-7.66.0/projects/Windows/VC12/lib/libcurl.vcxproj.filters
curl-7.66.0/projects/Windows/VC12/lib/libcurl.vcxproj
curl-7.66.0/projects/Windows/VC12/src/
curl-7.66.0/projects/Windows/VC12/src/curl.vcxproj.filters
curl-7.66.0/projects/Windows/VC12/src/curl.sln
curl-7.66.0/projects/Windows/VC12/src/curl.vcxproj
curl-7.66.0/projects/Windows/VC12/curl-all.sln
curl-7.66.0/projects/Windows/VC7/
curl-7.66.0/projects/Windows/VC7/lib/
curl-7.66.0/projects/Windows/VC7/lib/libcurl.sln
curl-7.66.0/projects/Windows/VC7/lib/libcurl.vcproj
curl-7.66.0/projects/Windows/VC7/src/
curl-7.66.0/projects/Windows/VC7/src/curl.sln
curl-7.66.0/projects/Windows/VC7/src/curl.vcproj
curl-7.66.0/projects/Windows/VC7/curl-all.sln
curl-7.66.0/projects/Windows/VC10/
curl-7.66.0/projects/Windows/VC10/lib/
curl-7.66.0/projects/Windows/VC10/lib/libcurl.sln
curl-7.66.0/projects/Windows/VC10/lib/libcurl.vcxproj.filters
curl-7.66.0/projects/Windows/VC10/lib/libcurl.vcxproj
curl-7.66.0/projects/Windows/VC10/src/
curl-7.66.0/projects/Windows/VC10/src/curl.vcxproj.filters
curl-7.66.0/projects/Windows/VC10/src/curl.sln
curl-7.66.0/projects/Windows/VC10/src/curl.vcxproj
curl-7.66.0/projects/Windows/VC10/curl-all.sln
curl-7.66.0/projects/Windows/VC15/
curl-7.66.0/projects/Windows/VC15/lib/
curl-7.66.0/projects/Windows/VC15/lib/libcurl.sln
curl-7.66.0/projects/Windows/VC15/lib/libcurl.vcxproj.filters
curl-7.66.0/projects/Windows/VC15/lib/libcurl.vcxproj
curl-7.66.0/projects/Windows/VC15/src/
curl-7.66.0/projects/Windows/VC15/src/curl.vcxproj.filters
curl-7.66.0/projects/Windows/VC15/src/curl.sln
curl-7.66.0/projects/Windows/VC15/src/curl.vcxproj
curl-7.66.0/projects/Windows/VC15/curl-all.sln
curl-7.66.0/projects/Windows/VC11/
curl-7.66.0/projects/Windows/VC11/lib/
curl-7.66.0/projects/Windows/VC11/lib/libcurl.sln
curl-7.66.0/projects/Windows/VC11/lib/libcurl.vcxproj.filters
curl-7.66.0/projects/Windows/VC11/lib/libcurl.vcxproj
curl-7.66.0/projects/Windows/VC11/src/
curl-7.66.0/projects/Windows/VC11/src/curl.vcxproj.filters
curl-7.66.0/projects/Windows/VC11/src/curl.sln
curl-7.66.0/projects/Windows/VC11/src/curl.vcxproj
curl-7.66.0/projects/Windows/VC11/curl-all.sln
curl-7.66.0/projects/build-wolfssl.bat
curl-7.66.0/depcomp
curl-7.66.0/docs/
curl-7.66.0/docs/HTTP3.md
curl-7.66.0/docs/VERSIONS
curl-7.66.0/docs/MAIL-ETIQUETTE
curl-7.66.0/docs/HTTP-COOKIES.md
curl-7.66.0/docs/cmdline-opts/
curl-7.66.0/docs/cmdline-opts/location.d
curl-7.66.0/docs/cmdline-opts/disable-epsv.d
curl-7.66.0/docs/cmdline-opts/mail-from.d
curl-7.66.0/docs/cmdline-opts/append.d
curl-7.66.0/docs/cmdline-opts/fail-early.d
curl-7.66.0/docs/cmdline-opts/stderr.d
curl-7.66.0/docs/cmdline-opts/netrc-optional.d
curl-7.66.0/docs/cmdline-opts/post301.d
curl-7.66.0/docs/cmdline-opts/proto.d
curl-7.66.0/docs/cmdline-opts/mail-rcpt.d
curl-7.66.0/docs/cmdline-opts/max-filesize.d
curl-7.66.0/docs/cmdline-opts/pass.d
curl-7.66.0/docs/cmdline-opts/cert-type.d
curl-7.66.0/docs/cmdline-opts/user.d
curl-7.66.0/docs/cmdline-opts/no-alpn.d
curl-7.66.0/docs/cmdline-opts/tls13-ciphers.d
curl-7.66.0/docs/cmdline-opts/Makefile.inc
curl-7.66.0/docs/cmdline-opts/http3.d
curl-7.66.0/docs/cmdline-opts/key-type.d
curl-7.66.0/docs/cmdline-opts/globoff.d
curl-7.66.0/docs/cmdline-opts/oauth2-bearer.d
curl-7.66.0/docs/cmdline-opts/silent.d
curl-7.66.0/docs/cmdline-opts/http2.d
curl-7.66.0/docs/cmdline-opts/retry-delay.d
curl-7.66.0/docs/cmdline-opts/crlfile.d
curl-7.66.0/docs/cmdline-opts/local-port.d
curl-7.66.0/docs/cmdline-opts/cookie-jar.d
curl-7.66.0/docs/cmdline-opts/proxy-cacert.d
curl-7.66.0/docs/cmdline-opts/referer.d
curl-7.66.0/docs/cmdline-opts/expect100-timeout.d
curl-7.66.0/docs/cmdline-opts/netrc-file.d
curl-7.66.0/docs/cmdline-opts/ftp-account.d
curl-7.66.0/docs/cmdline-opts/interface.d
curl-7.66.0/docs/cmdline-opts/random-file.d
curl-7.66.0/docs/cmdline-opts/sasl-authzid.d
curl-7.66.0/docs/cmdline-opts/config.d
curl-7.66.0/docs/cmdline-opts/ipv4.d
curl-7.66.0/docs/cmdline-opts/connect-timeout.d
curl-7.66.0/docs/cmdline-opts/request-target.d
curl-7.66.0/docs/cmdline-opts/user-agent.d
curl-7.66.0/docs/cmdline-opts/ftp-pret.d
curl-7.66.0/docs/cmdline-opts/remote-time.d
curl-7.66.0/docs/cmdline-opts/header.d
curl-7.66.0/docs/cmdline-opts/netrc.d
curl-7.66.0/docs/cmdline-opts/ssl.d
curl-7.66.0/docs/cmdline-opts/compressed-ssh.d
curl-7.66.0/docs/cmdline-opts/remote-name-all.d
curl-7.66.0/docs/cmdline-opts/tlsv1.3.d
curl-7.66.0/docs/cmdline-opts/write-out.d
curl-7.66.0/docs/cmdline-opts/tlsv1.2.d
curl-7.66.0/docs/cmdline-opts/proxy-tls13-ciphers.d
curl-7.66.0/docs/cmdline-opts/proxy-pinnedpubkey.d
curl-7.66.0/docs/cmdline-opts/use-ascii.d
curl-7.66.0/docs/cmdline-opts/MANPAGE.md
curl-7.66.0/docs/cmdline-opts/tr-encoding.d
curl-7.66.0/docs/cmdline-opts/ssl-reqd.d
curl-7.66.0/docs/cmdline-opts/telnet-option.d
curl-7.66.0/docs/cmdline-opts/gen.pl
curl-7.66.0/docs/cmdline-opts/compressed.d
curl-7.66.0/docs/cmdline-opts/socks4a.d
curl-7.66.0/docs/cmdline-opts/socks5-gssapi-nec.d
curl-7.66.0/docs/cmdline-opts/proxytunnel.d
curl-7.66.0/docs/cmdline-opts/ftp-method.d
curl-7.66.0/docs/cmdline-opts/disallow-username-in-url.d
curl-7.66.0/docs/cmdline-opts/dns-ipv6-addr.d
curl-7.66.0/docs/cmdline-opts/sasl-ir.d
curl-7.66.0/docs/cmdline-opts/quote.d
curl-7.66.0/docs/cmdline-opts/create-dirs.d
curl-7.66.0/docs/cmdline-opts/socks5-basic.d
curl-7.66.0/docs/cmdline-opts/progress-bar.d
curl-7.66.0/docs/cmdline-opts/suppress-connect-headers.d
curl-7.66.0/docs/cmdline-opts/tcp-nodelay.d
curl-7.66.0/docs/cmdline-opts/ftp-create-dirs.d
curl-7.66.0/docs/cmdline-opts/proxy1.0.d
curl-7.66.0/docs/cmdline-opts/upload-file.d
curl-7.66.0/docs/cmdline-opts/no-keepalive.d
curl-7.66.0/docs/cmdline-opts/tftp-no-options.d
curl-7.66.0/docs/cmdline-opts/trace-time.d
curl-7.66.0/docs/cmdline-opts/fail.d
curl-7.66.0/docs/cmdline-opts/dns-interface.d
curl-7.66.0/docs/cmdline-opts/data.d
curl-7.66.0/docs/cmdline-opts/request.d
curl-7.66.0/docs/cmdline-opts/preproxy.d
curl-7.66.0/docs/cmdline-opts/tlsv1.1.d
curl-7.66.0/docs/cmdline-opts/no-npn.d
curl-7.66.0/docs/cmdline-opts/proxy-key.d
curl-7.66.0/docs/cmdline-opts/proxy-anyauth.d
curl-7.66.0/docs/cmdline-opts/tlsauthtype.d
curl-7.66.0/docs/cmdline-opts/form.d
curl-7.66.0/docs/cmdline-opts/proxy-digest.d
curl-7.66.0/docs/cmdline-opts/ipv6.d
curl-7.66.0/docs/cmdline-opts/proxy-pass.d
curl-7.66.0/docs/cmdline-opts/krb.d
curl-7.66.0/docs/cmdline-opts/xattr.d
curl-7.66.0/docs/cmdline-opts/proxy-crlfile.d
curl-7.66.0/docs/cmdline-opts/ssl-no-revoke.d
curl-7.66.0/docs/cmdline-opts/http1.1.d
curl-7.66.0/docs/cmdline-opts/ntlm-wb.d
curl-7.66.0/docs/cmdline-opts/raw.d
curl-7.66.0/docs/cmdline-opts/happy-eyeballs-timeout-ms.d
curl-7.66.0/docs/cmdline-opts/junk-session-cookies.d
curl-7.66.0/docs/cmdline-opts/retry-connrefused.d
curl-7.66.0/docs/cmdline-opts/socks5-gssapi-service.d
curl-7.66.0/docs/cmdline-opts/trace-ascii.d
curl-7.66.0/docs/cmdline-opts/capath.d
curl-7.66.0/docs/cmdline-opts/form-string.d
curl-7.66.0/docs/cmdline-opts/noproxy.d
curl-7.66.0/docs/cmdline-opts/tlsuser.d
curl-7.66.0/docs/cmdline-opts/ntlm.d
curl-7.66.0/docs/cmdline-opts/data-binary.d
curl-7.66.0/docs/cmdline-opts/crlf.d
curl-7.66.0/docs/cmdline-opts/continue-at.d
curl-7.66.0/docs/cmdline-opts/alt-svc.d
curl-7.66.0/docs/cmdline-opts/libcurl.d
curl-7.66.0/docs/cmdline-opts/show-error.d
curl-7.66.0/docs/cmdline-opts/proxy-ciphers.d
curl-7.66.0/docs/cmdline-opts/proxy-service-name.d
curl-7.66.0/docs/cmdline-opts/no-buffer.d
curl-7.66.0/docs/cmdline-opts/help.d
curl-7.66.0/docs/cmdline-opts/proxy-user.d
curl-7.66.0/docs/cmdline-opts/anyauth.d
curl-7.66.0/docs/cmdline-opts/head.d
curl-7.66.0/docs/cmdline-opts/http1.0.d
curl-7.66.0/docs/cmdline-opts/ssl-allow-beast.d
curl-7.66.0/docs/cmdline-opts/proxy-tlsv1.d
curl-7.66.0/docs/cmdline-opts/max-redirs.d
curl-7.66.0/docs/cmdline-opts/trace.d
curl-7.66.0/docs/cmdline-opts/remote-header-name.d
curl-7.66.0/docs/cmdline-opts/url.d
curl-7.66.0/docs/cmdline-opts/abstract-unix-socket.d
curl-7.66.0/docs/cmdline-opts/proxy-negotiate.d
curl-7.66.0/docs/cmdline-opts/limit-rate.d
curl-7.66.0/docs/cmdline-opts/cert-status.d
curl-7.66.0/docs/cmdline-opts/styled-output.d
curl-7.66.0/docs/cmdline-opts/cookie.d
curl-7.66.0/docs/cmdline-opts/data-urlencode.d
curl-7.66.0/docs/cmdline-opts/ignore-content-length.d
curl-7.66.0/docs/cmdline-opts/CMakeLists.txt
curl-7.66.0/docs/cmdline-opts/hostpubmd5.d
curl-7.66.0/docs/cmdline-opts/dump-header.d
curl-7.66.0/docs/cmdline-opts/insecure.d
curl-7.66.0/docs/cmdline-opts/disable-eprt.d
curl-7.66.0/docs/cmdline-opts/include.d
curl-7.66.0/docs/cmdline-opts/remote-name.d
curl-7.66.0/docs/cmdline-opts/connect-to.d
curl-7.66.0/docs/cmdline-opts/ftp-pasv.d
curl-7.66.0/docs/cmdline-opts/page-footer
curl-7.66.0/docs/cmdline-opts/speed-limit.d
curl-7.66.0/docs/cmdline-opts/retry-max-time.d
curl-7.66.0/docs/cmdline-opts/negotiate.d
curl-7.66.0/docs/cmdline-opts/page-header
curl-7.66.0/docs/cmdline-opts/proto-redir.d
curl-7.66.0/docs/cmdline-opts/unix-socket.d
curl-7.66.0/docs/cmdline-opts/dns-servers.d
curl-7.66.0/docs/cmdline-opts/digest.d
curl-7.66.0/docs/cmdline-opts/data-raw.d
curl-7.66.0/docs/cmdline-opts/cert.d
curl-7.66.0/docs/cmdline-opts/ftp-ssl-ccc-mode.d
curl-7.66.0/docs/cmdline-opts/tlsv1.d
curl-7.66.0/docs/cmdline-opts/login-options.d
curl-7.66.0/docs/cmdline-opts/proxy-capath.d
curl-7.66.0/docs/cmdline-opts/keepalive-time.d
curl-7.66.0/docs/cmdline-opts/range.d
curl-7.66.0/docs/cmdline-opts/engine.d
curl-7.66.0/docs/cmdline-opts/mail-auth.d
curl-7.66.0/docs/cmdline-opts/no-sessionid.d
curl-7.66.0/docs/cmdline-opts/tcp-fastopen.d
curl-7.66.0/docs/cmdline-opts/manual.d
curl-7.66.0/docs/cmdline-opts/retry.d
curl-7.66.0/docs/cmdline-opts/sslv2.d
curl-7.66.0/docs/cmdline-opts/proxy-key-type.d
curl-7.66.0/docs/cmdline-opts/socks5-hostname.d
curl-7.66.0/docs/cmdline-opts/doh-url.d
curl-7.66.0/docs/cmdline-opts/ftp-ssl-control.d
curl-7.66.0/docs/cmdline-opts/haproxy-protocol.d
curl-7.66.0/docs/cmdline-opts/http2-prior-knowledge.d
curl-7.66.0/docs/cmdline-opts/http0.9.d
curl-7.66.0/docs/cmdline-opts/key.d
curl-7.66.0/docs/cmdline-opts/proxy.d
curl-7.66.0/docs/cmdline-opts/basic.d
curl-7.66.0/docs/cmdline-opts/parallel-max.d
curl-7.66.0/docs/cmdline-opts/tlsv1.0.d
curl-7.66.0/docs/cmdline-opts/ftp-port.d
curl-7.66.0/docs/cmdline-opts/ftp-skip-pasv-ip.d
curl-7.66.0/docs/cmdline-opts/proxy-tlsauthtype.d
curl-7.66.0/docs/cmdline-opts/egd-file.d
curl-7.66.0/docs/cmdline-opts/sslv3.d
curl-7.66.0/docs/cmdline-opts/Makefile.am
curl-7.66.0/docs/cmdline-opts/Makefile.in
curl-7.66.0/docs/cmdline-opts/proxy-cert-type.d
curl-7.66.0/docs/cmdline-opts/tftp-blksize.d
curl-7.66.0/docs/cmdline-opts/max-time.d
curl-7.66.0/docs/cmdline-opts/proxy-insecure.d
curl-7.66.0/docs/cmdline-opts/false-start.d
curl-7.66.0/docs/cmdline-opts/socks4.d
curl-7.66.0/docs/cmdline-opts/proxy-header.d
curl-7.66.0/docs/cmdline-opts/pinnedpubkey.d
curl-7.66.0/docs/cmdline-opts/service-name.d
curl-7.66.0/docs/cmdline-opts/parallel.d
curl-7.66.0/docs/cmdline-opts/list-only.d
curl-7.66.0/docs/cmdline-opts/proxy-cert.d
curl-7.66.0/docs/cmdline-opts/ftp-ssl-ccc.d
curl-7.66.0/docs/cmdline-opts/output.d
curl-7.66.0/docs/cmdline-opts/socks5.d
curl-7.66.0/docs/cmdline-opts/cacert.d
curl-7.66.0/docs/cmdline-opts/location-trusted.d
curl-7.66.0/docs/cmdline-opts/verbose.d
curl-7.66.0/docs/cmdline-opts/tlspassword.d
curl-7.66.0/docs/cmdline-opts/get.d
curl-7.66.0/docs/cmdline-opts/proxy-tlsuser.d
curl-7.66.0/docs/cmdline-opts/post302.d
curl-7.66.0/docs/cmdline-opts/socks5-gssapi.d
curl-7.66.0/docs/cmdline-opts/time-cond.d
curl-7.66.0/docs/cmdline-opts/data-ascii.d
curl-7.66.0/docs/cmdline-opts/disable.d
curl-7.66.0/docs/cmdline-opts/proxy-tlspassword.d
curl-7.66.0/docs/cmdline-opts/proxy-basic.d
curl-7.66.0/docs/cmdline-opts/delegation.d
curl-7.66.0/docs/cmdline-opts/dns-ipv4-addr.d
curl-7.66.0/docs/cmdline-opts/resolve.d
curl-7.66.0/docs/cmdline-opts/next.d
curl-7.66.0/docs/cmdline-opts/version.d
curl-7.66.0/docs/cmdline-opts/proxy-ntlm.d
curl-7.66.0/docs/cmdline-opts/speed-time.d
curl-7.66.0/docs/cmdline-opts/ftp-alternative-to-user.d
curl-7.66.0/docs/cmdline-opts/pubkey.d
curl-7.66.0/docs/cmdline-opts/ciphers.d
curl-7.66.0/docs/cmdline-opts/metalink.d
curl-7.66.0/docs/cmdline-opts/proto-default.d
curl-7.66.0/docs/cmdline-opts/path-as-is.d
curl-7.66.0/docs/cmdline-opts/proxy-ssl-allow-beast.d
curl-7.66.0/docs/cmdline-opts/post303.d
curl-7.66.0/docs/cmdline-opts/tls-max.d
curl-7.66.0/docs/BUGS
curl-7.66.0/docs/libcurl/
curl-7.66.0/docs/libcurl/curl_share_init.3
curl-7.66.0/docs/libcurl/libcurl.3
curl-7.66.0/docs/libcurl/curl_share_strerror.3
curl-7.66.0/docs/libcurl/curl_easy_reset.3
curl-7.66.0/docs/libcurl/curl_url_dup.3
curl-7.66.0/docs/libcurl/Makefile.inc
curl-7.66.0/docs/libcurl/symbols-in-versions
curl-7.66.0/docs/libcurl/curl_free.3
curl-7.66.0/docs/libcurl/curl_easy_unescape.3
curl-7.66.0/docs/libcurl/curl_easy_init.3
curl-7.66.0/docs/libcurl/curl_easy_perform.3
curl-7.66.0/docs/libcurl/curl_global_cleanup.3
curl-7.66.0/docs/libcurl/curl_getenv.3
curl-7.66.0/docs/libcurl/libcurl-env.3
curl-7.66.0/docs/libcurl/curl_mprintf.3
curl-7.66.0/docs/libcurl/curl_global_init_mem.3
curl-7.66.0/docs/libcurl/libcurl-thread.3
curl-7.66.0/docs/libcurl/curl_multi_cleanup.3
curl-7.66.0/docs/libcurl/libcurl-share.3
curl-7.66.0/docs/libcurl/curl_global_init.3
curl-7.66.0/docs/libcurl/curl_easy_cleanup.3
curl-7.66.0/docs/libcurl/curl_multi_info_read.3
curl-7.66.0/docs/libcurl/libcurl-tutorial.3
curl-7.66.0/docs/libcurl/curl_slist_free_all.3
curl-7.66.0/docs/libcurl/curl_multi_socket_all.3
curl-7.66.0/docs/libcurl/libcurl-multi.3
curl-7.66.0/docs/libcurl/curl_easy_send.3
curl-7.66.0/docs/libcurl/curl_multi_wait.3
curl-7.66.0/docs/libcurl/curl_multi_perform.3
curl-7.66.0/docs/libcurl/curl_url.3
curl-7.66.0/docs/libcurl/curl_formadd.3
curl-7.66.0/docs/libcurl/curl_mime_type.3
curl-7.66.0/docs/libcurl/curl_multi_poll.3
curl-7.66.0/docs/libcurl/curl_mime_subparts.3
curl-7.66.0/docs/libcurl/curl_easy_upkeep.3
curl-7.66.0/docs/libcurl/curl_easy_recv.3
curl-7.66.0/docs/libcurl/curl_url_get.3
curl-7.66.0/docs/libcurl/libcurl-errors.3
curl-7.66.0/docs/libcurl/libcurl-security.3
curl-7.66.0/docs/libcurl/curl_easy_setopt.3
curl-7.66.0/docs/libcurl/curl_slist_append.3
curl-7.66.0/docs/libcurl/curl_mime_headers.3
curl-7.66.0/docs/libcurl/curl_strnequal.3
curl-7.66.0/docs/libcurl/libcurl.m4
curl-7.66.0/docs/libcurl/curl_mime_data.3
curl-7.66.0/docs/libcurl/curl_multi_socket.3
curl-7.66.0/docs/libcurl/curl_multi_strerror.3
curl-7.66.0/docs/libcurl/libcurl-easy.3
curl-7.66.0/docs/libcurl/curl_easy_escape.3
curl-7.66.0/docs/libcurl/curl_multi_timeout.3
curl-7.66.0/docs/libcurl/curl_multi_fdset.3
curl-7.66.0/docs/libcurl/mksymbolsmanpage.pl
curl-7.66.0/docs/libcurl/symbols.pl
curl-7.66.0/docs/libcurl/curl_share_setopt.3
curl-7.66.0/docs/libcurl/CMakeLists.txt
curl-7.66.0/docs/libcurl/curl_share_cleanup.3
curl-7.66.0/docs/libcurl/ABI
curl-7.66.0/docs/libcurl/curl_easy_strerror.3
curl-7.66.0/docs/libcurl/libcurl-url.3
curl-7.66.0/docs/libcurl/curl_mime_encoder.3
curl-7.66.0/docs/libcurl/curl_mime_addpart.3
curl-7.66.0/docs/libcurl/curl_url_cleanup.3
curl-7.66.0/docs/libcurl/curl_formget.3
curl-7.66.0/docs/libcurl/curl_mime_free.3
curl-7.66.0/docs/libcurl/curl_escape.3
curl-7.66.0/docs/libcurl/curl_multi_socket_action.3
curl-7.66.0/docs/libcurl/curl_mime_name.3
curl-7.66.0/docs/libcurl/curl_multi_assign.3
curl-7.66.0/docs/libcurl/curl_multi_init.3
curl-7.66.0/docs/libcurl/curl_formfree.3
curl-7.66.0/docs/libcurl/libcurl-symbols.3
curl-7.66.0/docs/libcurl/curl_mime_init.3
curl-7.66.0/docs/libcurl/curl_multi_add_handle.3
curl-7.66.0/docs/libcurl/curl_mime_filename.3
curl-7.66.0/docs/libcurl/Makefile.am
curl-7.66.0/docs/libcurl/Makefile.in
curl-7.66.0/docs/libcurl/opts/
curl-7.66.0/docs/libcurl/opts/CURLOPT_RESOLVE.3
curl-7.66.0/docs/libcurl/opts/CURLINFO_SPEED_DOWNLOAD_T.3
curl-7.66.0/docs/libcurl/opts/CURLINFO_TOTAL_TIME_T.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_PROXY_PINNEDPUBLICKEY.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_TIMEVALUE.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_INFILESIZE.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_PREQUOTE.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_SEEKDATA.3
curl-7.66.0/docs/libcurl/opts/CURLINFO_REDIRECT_TIME.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_UPKEEP_INTERVAL_MS.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_PROTOCOLS.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_HTTPAUTH.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_TCP_KEEPIDLE.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_TELNETOPTIONS.3
curl-7.66.0/docs/libcurl/opts/CURLINFO_CONDITION_UNMET.3
curl-7.66.0/docs/libcurl/opts/CURLINFO_RETRY_AFTER.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_CAPATH.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_TFTP_NO_OPTIONS.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_HEADER.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_FTP_CREATE_MISSING_DIRS.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_USE_SSL.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_RTSP_REQUEST.3
curl-7.66.0/docs/libcurl/opts/Makefile.inc
curl-7.66.0/docs/libcurl/opts/CURLINFO_CONNECT_TIME_T.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_MAXFILESIZE.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_SSLENGINE.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_SUPPRESS_CONNECT_HEADERS.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_SSL_CIPHER_LIST.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_KEYPASSWD.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_TCP_KEEPINTVL.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_NOBODY.3
curl-7.66.0/docs/libcurl/opts/CURLINFO_HTTP_VERSION.3
curl-7.66.0/docs/libcurl/opts/CURLINFO_TLS_SESSION.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_TIMECONDITION.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_FNMATCH_DATA.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_DIRLISTONLY.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_SHARE.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_XFERINFODATA.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_STREAM_DEPENDS_E.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_TCP_FASTOPEN.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_ALTSVC_CTRL.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_PROXY.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_FILETIME.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_DNS_SERVERS.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_MAXCONNECTS.3
curl-7.66.0/docs/libcurl/opts/CURLMOPT_PUSHFUNCTION.3
curl-7.66.0/docs/libcurl/opts/CURLINFO_RTSP_CLIENT_CSEQ.3
curl-7.66.0/docs/libcurl/opts/CURLINFO_PROXY_SSL_VERIFYRESULT.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_IOCTLDATA.3
curl-7.66.0/docs/libcurl/opts/CURLMOPT_PUSHDATA.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_PINNEDPUBLICKEY.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_COOKIEFILE.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_CLOSESOCKETFUNCTION.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_HEADERFUNCTION.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_HTTPGET.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_CRLF.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_HTTPPOST.3
curl-7.66.0/docs/libcurl/opts/CURLINFO_LOCAL_PORT.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_SSL_OPTIONS.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_DNS_SHUFFLE_ADDRESSES.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_CHUNK_END_FUNCTION.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_DNS_INTERFACE.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_PROXYHEADER.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_KRBLEVEL.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_INTERLEAVEFUNCTION.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_XOAUTH2_BEARER.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_SOCKOPTFUNCTION.3
curl-7.66.0/docs/libcurl/opts/CURLINFO_NUM_CONNECTS.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_RTSP_SESSION_ID.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_SOCKOPTDATA.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_PROXYPASSWORD.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_SSH_HOST_PUBLIC_KEY_MD5.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_HEADERDATA.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_READDATA.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_POSTFIELDS.3
curl-7.66.0/docs/libcurl/opts/CURLINFO_SIZE_UPLOAD.3
curl-7.66.0/docs/libcurl/opts/CURLMOPT_CHUNK_LENGTH_PENALTY_SIZE.3
curl-7.66.0/docs/libcurl/opts/CURLINFO_FTP_ENTRY_PATH.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_MAIL_RCPT.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_TLSAUTH_TYPE.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_CONNECT_ONLY.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_PASSWORD.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_NEW_FILE_PERMS.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_POST.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_PROXY_SERVICE_NAME.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_LOW_SPEED_LIMIT.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_CAINFO.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_SSLKEYTYPE.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_PROXY_SSLVERSION.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_AUTOREFERER.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_REDIR_PROTOCOLS.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_TRAILERFUNCTION.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_SSH_KNOWNHOSTS.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_ISSUERCERT.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_UNIX_SOCKET_PATH.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_HTTP200ALIASES.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_RESUME_FROM_LARGE.3
curl-7.66.0/docs/libcurl/opts/CURLINFO_SPEED_UPLOAD_T.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_SSL_CTX_DATA.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_PROXYUSERNAME.3
curl-7.66.0/docs/libcurl/opts/CURLINFO_TLS_SSL_PTR.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_VERBOSE.3
curl-7.66.0/docs/libcurl/opts/CURLINFO_CONNECT_TIME.3
curl-7.66.0/docs/libcurl/opts/CURLINFO_LOCAL_IP.3
curl-7.66.0/docs/libcurl/opts/CURLINFO_STARTTRANSFER_TIME_T.3
curl-7.66.0/docs/libcurl/opts/CURLINFO_APPCONNECT_TIME_T.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_SOCKS5_GSSAPI_SERVICE.3
curl-7.66.0/docs/libcurl/opts/CURLINFO_SIZE_DOWNLOAD_T.3
curl-7.66.0/docs/libcurl/opts/CURLMOPT_TIMERDATA.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_SSLCERTTYPE.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_RTSP_TRANSPORT.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_KEEP_SENDING_ON_ERROR.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_MAXAGE_CONN.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_SOCKS5_GSSAPI_NEC.3
curl-7.66.0/docs/libcurl/opts/CURLINFO_NAMELOOKUP_TIME.3
curl-7.66.0/docs/libcurl/opts/CURLINFO_TOTAL_TIME.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_ALTSVC.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_MAXFILESIZE_LARGE.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_COOKIELIST.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_PROXY_TRANSFER_MODE.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_TRAILERDATA.3
curl-7.66.0/docs/libcurl/opts/CURLINFO_REDIRECT_TIME_T.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_CONV_TO_NETWORK_FUNCTION.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_READFUNCTION.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_HTTP09_ALLOWED.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_DNS_USE_GLOBAL_CACHE.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_HTTP_TRANSFER_DECODING.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_RTSP_SERVER_CSEQ.3
curl-7.66.0/docs/libcurl/opts/CURLINFO_PRIMARY_PORT.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_COOKIE.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_FTP_FILEMETHOD.3
curl-7.66.0/docs/libcurl/opts/CURLINFO_CONTENT_LENGTH_UPLOAD.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_SSL_VERIFYSTATUS.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_SASL_AUTHZID.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_SSL_SESSIONID_CACHE.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_NOPROXY.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_CONNECTTIMEOUT.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_INTERFACE.3
curl-7.66.0/docs/libcurl/opts/CURLINFO_PRIVATE.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_HTTP_VERSION.3
curl-7.66.0/docs/libcurl/opts/CURLMOPT_PIPELINING.3
curl-7.66.0/docs/libcurl/opts/CURLINFO_CONTENT_TYPE.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_OPENSOCKETFUNCTION.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_CUSTOMREQUEST.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_USERNAME.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_POSTFIELDSIZE_LARGE.3
curl-7.66.0/docs/libcurl/opts/CURLINFO_EFFECTIVE_URL.3
curl-7.66.0/docs/libcurl/opts/CURLINFO_SIZE_UPLOAD_T.3
curl-7.66.0/docs/libcurl/opts/CURLINFO_CERTINFO.3
curl-7.66.0/docs/libcurl/opts/CURLMOPT_MAX_TOTAL_CONNECTIONS.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_PROXY_SSL_CIPHER_LIST.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_DEBUGDATA.3
curl-7.66.0/docs/libcurl/opts/CURLINFO_FILETIME_T.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_TIMEOUT_MS.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_PROXY_TLSAUTH_PASSWORD.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_FTP_ALTERNATIVE_TO_USER.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_ABSTRACT_UNIX_SOCKET.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_TFTP_BLKSIZE.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_MIMEPOST.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_EXPECT_100_TIMEOUT_MS.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_PROXY_TLSAUTH_USERNAME.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_RTSP_STREAM_URI.3
curl-7.66.0/docs/libcurl/opts/CURLINFO_PRETRANSFER_TIME.3
curl-7.66.0/docs/libcurl/opts/CURLINFO_SSL_ENGINES.3
curl-7.66.0/docs/libcurl/opts/CURLMOPT_MAX_PIPELINE_LENGTH.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_SSLKEY.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_SSH_COMPRESSION.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_FTP_RESPONSE_TIMEOUT.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_NOPROGRESS.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_OPENSOCKETDATA.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_DNS_LOCAL_IP4.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_SSL_FALSESTART.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_SOCKS5_AUTH.3
curl-7.66.0/docs/libcurl/opts/CURLINFO_SCHEME.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_POSTREDIR.3
curl-7.66.0/docs/libcurl/opts/CURLINFO_RTSP_CSEQ_RECV.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_ACCEPT_ENCODING.3
curl-7.66.0/docs/libcurl/opts/CURLINFO_LASTSOCKET.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_HEADEROPT.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_NEW_DIRECTORY_PERMS.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_UNRESTRICTED_AUTH.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_SSL_VERIFYHOST.3
curl-7.66.0/docs/libcurl/opts/CURLMOPT_TIMERFUNCTION.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_PROXYTYPE.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_PROXY_TLSAUTH_TYPE.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_HTTPPROXYTUNNEL.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_SSH_AUTH_TYPES.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_TIMEVALUE_LARGE.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_CHUNK_BGN_FUNCTION.3
curl-7.66.0/docs/libcurl/opts/CURLINFO_SSL_VERIFYRESULT.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_TLSAUTH_USERNAME.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_REFERER.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_TRANSFER_ENCODING.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_HAPROXYPROTOCOL.3
curl-7.66.0/docs/libcurl/opts/CURLINFO_HEADER_SIZE.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_PROXY_TLS13_CIPHERS.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_PROXY_SSL_OPTIONS.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_USERPWD.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_PROGRESSFUNCTION.3
curl-7.66.0/docs/libcurl/opts/CURLINFO_NAMELOOKUP_TIME_T.3
curl-7.66.0/docs/libcurl/opts/CURLINFO_PROTOCOL.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_NOSIGNAL.3
curl-7.66.0/docs/libcurl/opts/CURLMOPT_MAX_HOST_CONNECTIONS.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_STREAM_DEPENDS.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_NETRC_FILE.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_TLSAUTH_PASSWORD.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_SSH_PRIVATE_KEYFILE.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_SEEKFUNCTION.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_LOCALPORT.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_CONNECT_TO.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_HTTP_CONTENT_DECODING.3
curl-7.66.0/docs/libcurl/opts/CURLINFO_REQUEST_SIZE.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_FTP_USE_PRET.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_CERTINFO.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_SSL_ENABLE_NPN.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_DISALLOW_USERNAME_IN_URL.3
curl-7.66.0/docs/libcurl/opts/CURLINFO_RTSP_SERVER_CSEQ.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_BUFFERSIZE.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_PROXY_SSLCERTTYPE.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_SSLCERT.3
curl-7.66.0/docs/libcurl/opts/CURLMOPT_PIPELINING_SITE_BL.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_RESUME_FROM.3
curl-7.66.0/docs/libcurl/opts/CURLINFO_HTTP_CONNECTCODE.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_SSLVERSION.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_FOLLOWLOCATION.3
curl-7.66.0/docs/libcurl/opts/CURLMOPT_PIPELINING_SERVER_BL.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_FTPPORT.3
curl-7.66.0/docs/libcurl/opts/CURLINFO_REDIRECT_URL.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_IGNORE_CONTENT_LENGTH.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_DOH_URL.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_HAPPY_EYEBALLS_TIMEOUT_MS.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_COOKIESESSION.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_FTP_USE_EPSV.3
curl-7.66.0/docs/libcurl/opts/CURLINFO_COOKIELIST.3
curl-7.66.0/docs/libcurl/opts/CMakeLists.txt
curl-7.66.0/docs/libcurl/opts/CURLOPT_STDERR.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_PROXYAUTH.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_LOGIN_OPTIONS.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_PIPEWAIT.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_LOW_SPEED_TIME.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_QUOTE.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_URL.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_RANGE.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_PROXY_SSL_VERIFYPEER.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_ACCEPTTIMEOUT_MS.3
curl-7.66.0/docs/libcurl/opts/CURLINFO_RESPONSE_CODE.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_UPLOAD_BUFFERSIZE.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_SSLENGINE_DEFAULT.3
curl-7.66.0/docs/libcurl/opts/CURLINFO_REDIRECT_COUNT.3
curl-7.66.0/docs/libcurl/opts/CURLINFO_RTSP_SESSION_ID.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_TCP_NODELAY.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_WRITEDATA.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_SSH_KEYFUNCTION.3
curl-7.66.0/docs/libcurl/opts/CURLINFO_SIZE_DOWNLOAD.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_PATH_AS_IS.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_PROXY_SSL_VERIFYHOST.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_FTP_SSL_CCC.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_FNMATCH_FUNCTION.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_WRITEFUNCTION.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_FAILONERROR.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_STREAM_WEIGHT.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_PROXYUSERPWD.3
curl-7.66.0/docs/libcurl/opts/CURLMOPT_SOCKETFUNCTION.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_MAIL_FROM.3
curl-7.66.0/docs/libcurl/opts/CURLINFO_STARTTRANSFER_TIME.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_PROXY_SSLKEY.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_REQUEST_TARGET.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_FTP_SKIP_PASV_IP.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_FTPSSLAUTH.3
curl-7.66.0/docs/libcurl/opts/CURLINFO_SPEED_UPLOAD.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_INTERLEAVEDATA.3
curl-7.66.0/docs/libcurl/opts/CURLINFO_FILETIME.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_PROXY_KEYPASSWD.3
curl-7.66.0/docs/libcurl/opts/CURLINFO_OS_ERRNO.3
curl-7.66.0/docs/libcurl/opts/CURLINFO_PRIMARY_IP.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_TRANSFERTEXT.3
curl-7.66.0/docs/libcurl/opts/CURLINFO_SPEED_DOWNLOAD.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_PROXY_SSLCERT.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_XFERINFOFUNCTION.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_NETRC.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_CHUNK_DATA.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_FRESH_CONNECT.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_DEFAULT_PROTOCOL.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_TLS13_CIPHERS.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_RESOLVER_START_DATA.3
curl-7.66.0/docs/libcurl/opts/CURLMOPT_CONTENT_LENGTH_PENALTY_SIZE.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_PRIVATE.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_ERRORBUFFER.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_IPRESOLVE.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_CONV_FROM_NETWORK_FUNCTION.3
curl-7.66.0/docs/libcurl/opts/CURLINFO_HTTPAUTH_AVAIL.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_SSL_CTX_FUNCTION.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_RTSP_CLIENT_CSEQ.3
curl-7.66.0/docs/libcurl/opts/Makefile.am
curl-7.66.0/docs/libcurl/opts/Makefile.in
curl-7.66.0/docs/libcurl/opts/CURLOPT_COOKIEJAR.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_PUT.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_PROXY_SSLKEYTYPE.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_SSL_VERIFYPEER.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_GSSAPI_DELEGATION.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_APPEND.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_DNS_CACHE_TIMEOUT.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_RANDOM_FILE.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_POSTFIELDSIZE.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_PROXY_CAPATH.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_ADDRESS_SCOPE.3
curl-7.66.0/docs/libcurl/opts/CURLMOPT_SOCKETDATA.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_PROXYPORT.3
curl-7.66.0/docs/libcurl/opts/CURLMOPT_MAXCONNECTS.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_RESOLVER_START_FUNCTION.3
curl-7.66.0/docs/libcurl/opts/CURLINFO_ACTIVESOCKET.3
curl-7.66.0/docs/libcurl/opts/CURLINFO_CONTENT_LENGTH_DOWNLOAD.3
curl-7.66.0/docs/libcurl/opts/CURLINFO_CONTENT_LENGTH_UPLOAD_T.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_DEBUGFUNCTION.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_COPYPOSTFIELDS.3
curl-7.66.0/docs/libcurl/opts/CURLINFO_PROXYAUTH_AVAIL.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_FTP_USE_EPRT.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_CURLU.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_PROGRESSDATA.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_FORBID_REUSE.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_MAIL_AUTH.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_PORT.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_SSH_KEYDATA.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_SASL_IR.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_MAX_SEND_SPEED_LARGE.3
curl-7.66.0/docs/libcurl/opts/CURLINFO_PRETRANSFER_TIME_T.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_HTTPHEADER.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_INFILESIZE_LARGE.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_MAXREDIRS.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_PROXY_CAINFO.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_LOCALPORTRANGE.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_SERVICE_NAME.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_CRLFILE.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_PRE_PROXY.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_UPLOAD.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_PROXY_CRLFILE.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_EGDSOCKET.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_CONV_FROM_UTF8_FUNCTION.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_IOCTLFUNCTION.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_TCP_KEEPALIVE.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_WILDCARDMATCH.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_CONNECTTIMEOUT_MS.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_SSH_PUBLIC_KEYFILE.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_MAX_RECV_SPEED_LARGE.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_SSL_ENABLE_ALPN.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_TIMEOUT.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_POSTQUOTE.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_USERAGENT.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_FTP_ACCOUNT.3
curl-7.66.0/docs/libcurl/opts/CURLINFO_CONTENT_LENGTH_DOWNLOAD_T.3
curl-7.66.0/docs/libcurl/opts/CURLINFO_APPCONNECT_TIME.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_DNS_LOCAL_IP6.3
curl-7.66.0/docs/libcurl/opts/CURLOPT_CLOSESOCKETDATA.3
curl-7.66.0/docs/libcurl/curl_getdate.3
curl-7.66.0/docs/libcurl/curl_global_sslset.3
curl-7.66.0/docs/libcurl/curl_strequal.3
curl-7.66.0/docs/libcurl/curl_easy_getinfo.3
curl-7.66.0/docs/libcurl/curl_multi_setopt.3
curl-7.66.0/docs/libcurl/curl_mime_filedata.3
curl-7.66.0/docs/libcurl/curl_easy_duphandle.3
curl-7.66.0/docs/libcurl/curl_easy_pause.3
curl-7.66.0/docs/libcurl/curl_mime_data_cb.3
curl-7.66.0/docs/libcurl/curl_unescape.3
curl-7.66.0/docs/libcurl/curl_url_set.3
curl-7.66.0/docs/libcurl/curl_version.3
curl-7.66.0/docs/libcurl/curl_multi_remove_handle.3
curl-7.66.0/docs/libcurl/curl_version_info.3
curl-7.66.0/docs/SSL-PROBLEMS.md
curl-7.66.0/docs/CODE_STYLE.md
curl-7.66.0/docs/KNOWN_BUGS
curl-7.66.0/docs/HTTP2.md
curl-7.66.0/docs/README.win32
curl-7.66.0/docs/EXPERIMENTAL.md
curl-7.66.0/docs/INTERNALS.md
curl-7.66.0/docs/INSTALL.md
curl-7.66.0/docs/LICENSE-MIXING.md
curl-7.66.0/docs/THANKS
curl-7.66.0/docs/README.md
curl-7.66.0/docs/HELP-US.md
curl-7.66.0/docs/README.netware
curl-7.66.0/docs/TheArtOfHttpScripting
curl-7.66.0/docs/examples/
curl-7.66.0/docs/examples/persistent.c
curl-7.66.0/docs/examples/htmltidy.c
curl-7.66.0/docs/examples/urlapi.c
curl-7.66.0/docs/examples/evhiperfifo.c
curl-7.66.0/docs/examples/imap-store.c
curl-7.66.0/docs/examples/version-check.pl
curl-7.66.0/docs/examples/imap-delete.c
curl-7.66.0/docs/examples/Makefile.inc
curl-7.66.0/docs/examples/ephiperfifo.c
curl-7.66.0/docs/examples/altsvc.c
curl-7.66.0/docs/examples/imap-copy.c
curl-7.66.0/docs/examples/README
curl-7.66.0/docs/examples/makefile.dj
curl-7.66.0/docs/examples/ftpgetresp.c
curl-7.66.0/docs/examples/rtsp.c
curl-7.66.0/docs/examples/cookie_interface.c
curl-7.66.0/docs/examples/sampleconv.c
curl-7.66.0/docs/examples/fileupload.c
curl-7.66.0/docs/examples/threaded-shared-conn.c
curl-7.66.0/docs/examples/httpput.c
curl-7.66.0/docs/examples/debug.c
curl-7.66.0/docs/examples/ftpget.c
curl-7.66.0/docs/examples/pop3-retr.c
curl-7.66.0/docs/examples/parseurl.c
curl-7.66.0/docs/examples/pop3-stat.c
curl-7.66.0/docs/examples/ftpgetinfo.c
curl-7.66.0/docs/examples/cacertinmem.c
curl-7.66.0/docs/examples/http2-pushinmemory.c
curl-7.66.0/docs/examples/imap-lsub.c
curl-7.66.0/docs/examples/pop3-dele.c
curl-7.66.0/docs/examples/sepheaders.c
curl-7.66.0/docs/examples/pop3-uidl.c
curl-7.66.0/docs/examples/ghiper.c
curl-7.66.0/docs/examples/chkspeed.c
curl-7.66.0/docs/examples/externalsocket.c
curl-7.66.0/docs/examples/multi-double.c
curl-7.66.0/docs/examples/imap-ssl.c
curl-7.66.0/docs/examples/imap-create.c
curl-7.66.0/docs/examples/multi-debugcallback.c
curl-7.66.0/docs/examples/simplepost.c
curl-7.66.0/docs/examples/postinmemory.c
curl-7.66.0/docs/examples/10-at-a-time.c
curl-7.66.0/docs/examples/pop3-ssl.c
curl-7.66.0/docs/examples/progressfunc.c
curl-7.66.0/docs/examples/threaded-ssl.c
curl-7.66.0/docs/examples/imap-search.c
curl-7.66.0/docs/examples/crawler.c
curl-7.66.0/docs/examples/http-post.c
curl-7.66.0/docs/examples/getinmemory.c
curl-7.66.0/docs/examples/getinfo.c
curl-7.66.0/docs/examples/sessioninfo.c
curl-7.66.0/docs/examples/multi-post.c
curl-7.66.0/docs/examples/http2-upload.c
curl-7.66.0/docs/examples/ftp-wildcard.c
curl-7.66.0/docs/examples/pop3-tls.c
curl-7.66.0/docs/examples/ftpupload.c
curl-7.66.0/docs/examples/smtp-tls.c
curl-7.66.0/docs/examples/https.c
curl-7.66.0/docs/examples/resolve.c
curl-7.66.0/docs/examples/imap-tls.c
curl-7.66.0/docs/examples/simple.c
curl-7.66.0/docs/examples/multi-uv.c
curl-7.66.0/docs/examples/httpcustomheader.c
curl-7.66.0/docs/examples/imap-fetch.c
curl-7.66.0/docs/examples/multi-formadd.c
curl-7.66.0/docs/examples/pop3-multi.c
curl-7.66.0/docs/examples/certinfo.c
curl-7.66.0/docs/examples/htmltitle.cpp
curl-7.66.0/docs/examples/simplessl.c
curl-7.66.0/docs/examples/ftpsget.c
curl-7.66.0/docs/examples/imap-examine.c
curl-7.66.0/docs/examples/multithread.c
curl-7.66.0/docs/examples/multi-single.c
curl-7.66.0/docs/examples/sftpget.c
curl-7.66.0/docs/examples/imap-append.c
curl-7.66.0/docs/examples/imap-authzid.c
curl-7.66.0/docs/examples/imap-noop.c
curl-7.66.0/docs/examples/postit2.c
curl-7.66.0/docs/examples/smtp-multi.c
curl-7.66.0/docs/examples/smtp-mail.c
curl-7.66.0/docs/examples/curlgtk.c
curl-7.66.0/docs/examples/xmlstream.c
curl-7.66.0/docs/examples/asiohiper.cpp
curl-7.66.0/docs/examples/curlx.c
curl-7.66.0/docs/examples/pop3-top.c
curl-7.66.0/docs/examples/smtp-ssl.c
curl-7.66.0/docs/examples/Makefile.m32
curl-7.66.0/docs/examples/http3-present.c
curl-7.66.0/docs/examples/smtp-vrfy.c
curl-7.66.0/docs/examples/smtp-authzid.c
curl-7.66.0/docs/examples/anyauthput.c
curl-7.66.0/docs/examples/Makefile.netware
curl-7.66.0/docs/examples/url2file.c
curl-7.66.0/docs/examples/http3.c
curl-7.66.0/docs/examples/synctime.c
curl-7.66.0/docs/examples/fopen.c
curl-7.66.0/docs/examples/multi-app.c
curl-7.66.0/docs/examples/ftpuploadresume.c
curl-7.66.0/docs/examples/pop3-noop.c
curl-7.66.0/docs/examples/ftpuploadfrommem.c
curl-7.66.0/docs/examples/href_extractor.c
curl-7.66.0/docs/examples/usercertinmem.c
curl-7.66.0/docs/examples/smtp-mime.c
curl-7.66.0/docs/examples/pop3-authzid.c
curl-7.66.0/docs/examples/imap-multi.c
curl-7.66.0/docs/examples/Makefile.am
curl-7.66.0/docs/examples/imap-list.c
curl-7.66.0/docs/examples/Makefile.in
curl-7.66.0/docs/examples/smtp-expn.c
curl-7.66.0/docs/examples/hiperfifo.c
curl-7.66.0/docs/examples/sslbackend.c
curl-7.66.0/docs/examples/postit2-formadd.c
curl-7.66.0/docs/examples/shared-connection-cache.c
curl-7.66.0/docs/examples/pop3-list.c
curl-7.66.0/docs/examples/sftpuploadresume.c
curl-7.66.0/docs/examples/http2-download.c
curl-7.66.0/docs/examples/getredirect.c
curl-7.66.0/docs/examples/opensslthreadlock.c
curl-7.66.0/docs/examples/sendrecv.c
curl-7.66.0/docs/examples/smooth-gtk-thread.c
curl-7.66.0/docs/examples/http2-serverpush.c
curl-7.66.0/docs/examples/post-callback.c
curl-7.66.0/docs/examples/Makefile.example
curl-7.66.0/docs/CIPHERS.md
curl-7.66.0/docs/BUG-BOUNTY.md
curl-7.66.0/docs/CHECKSRC.md
curl-7.66.0/docs/BINDINGS.md
curl-7.66.0/docs/SECURITY-PROCESS.md
curl-7.66.0/docs/GOVERNANCE.md
curl-7.66.0/docs/CMakeLists.txt
curl-7.66.0/docs/curl.1
curl-7.66.0/docs/FAQ
curl-7.66.0/docs/INSTALL
curl-7.66.0/docs/ROADMAP.md
curl-7.66.0/docs/mk-ca-bundle.1
curl-7.66.0/docs/curl-config.1
curl-7.66.0/docs/FEATURES
curl-7.66.0/docs/INSTALL.cmake
curl-7.66.0/docs/PARALLEL-TRANSFERS.md
curl-7.66.0/docs/CODE_OF_CONDUCT.md
curl-7.66.0/docs/RESOURCES
curl-7.66.0/docs/README.cmake
curl-7.66.0/docs/ALTSVC.md
curl-7.66.0/docs/Makefile.am
curl-7.66.0/docs/Makefile.in
curl-7.66.0/docs/DEPRECATE.md
curl-7.66.0/docs/TODO
curl-7.66.0/docs/CONTRIBUTE.md
curl-7.66.0/docs/HISTORY.md
curl-7.66.0/docs/RELEASE-PROCEDURE.md
curl-7.66.0/docs/SSLCERTS.md
curl-7.66.0/winbuild/
curl-7.66.0/winbuild/MakefileBuild.vc
curl-7.66.0/winbuild/Makefile.vc
curl-7.66.0/winbuild/BUILD.WINDOWS.txt
curl-7.66.0/winbuild/gen_resp_file.bat
curl-7.66.0/README
curl-7.66.0/configure.ac
curl-7.66.0/lib/
curl-7.66.0/lib/wildcard.h
curl-7.66.0/lib/timeval.h
curl-7.66.0/lib/urlapi-int.h
curl-7.66.0/lib/curl_range.c
curl-7.66.0/lib/urlapi.c
curl-7.66.0/lib/setup-os400.h
curl-7.66.0/lib/easy.c
curl-7.66.0/lib/curl_setup.h
curl-7.66.0/lib/imap.c
curl-7.66.0/lib/inet_pton.h
curl-7.66.0/lib/ssh.h
curl-7.66.0/lib/strcase.c
curl-7.66.0/lib/hostip6.c
curl-7.66.0/lib/splay.h
curl-7.66.0/lib/hostcheck.h
curl-7.66.0/lib/hash.c
curl-7.66.0/lib/curl_sha256.h
curl-7.66.0/lib/doh.h
curl-7.66.0/lib/rand.c
curl-7.66.0/lib/http_digest.h
curl-7.66.0/lib/curl_des.h
curl-7.66.0/lib/Makefile.inc
curl-7.66.0/lib/strtoofft.c
curl-7.66.0/lib/http_proxy.h
curl-7.66.0/lib/sockaddr.h
curl-7.66.0/lib/rand.h
curl-7.66.0/lib/smb.c
curl-7.66.0/lib/altsvc.c
curl-7.66.0/lib/curl_rtmp.h
curl-7.66.0/lib/makefile.dj
curl-7.66.0/lib/warnless.h
curl-7.66.0/lib/curl_gethostname.c
curl-7.66.0/lib/curl_gssapi.c
curl-7.66.0/lib/sendf.h
curl-7.66.0/lib/setopt.h
curl-7.66.0/lib/hostip4.c
curl-7.66.0/lib/tftp.h
curl-7.66.0/lib/system_win32.c
curl-7.66.0/lib/x509asn1.c
curl-7.66.0/lib/rtsp.c
curl-7.66.0/lib/file.h
curl-7.66.0/lib/amigaos.h
curl-7.66.0/lib/memdebug.c
curl-7.66.0/lib/curl_fnmatch.c
curl-7.66.0/lib/nwos.c
curl-7.66.0/lib/conncache.c
curl-7.66.0/lib/url.c
curl-7.66.0/lib/strerror.h
curl-7.66.0/lib/curl_path.c
curl-7.66.0/lib/gopher.c
curl-7.66.0/lib/curl_ntlm_wb.h
curl-7.66.0/lib/fileinfo.c
curl-7.66.0/lib/curl_ntlm_core.c
curl-7.66.0/lib/makefile.amiga
curl-7.66.0/lib/netrc.c
curl-7.66.0/lib/config-plan9.h
curl-7.66.0/lib/imap.h
curl-7.66.0/lib/libcurl.vers.in
curl-7.66.0/lib/hash.h
curl-7.66.0/lib/md4.c
curl-7.66.0/lib/Makefile.Watcom
curl-7.66.0/lib/strtoofft.h
curl-7.66.0/lib/dict.c
curl-7.66.0/lib/nwlib.c
curl-7.66.0/lib/rtsp.h
curl-7.66.0/lib/sendf.c
curl-7.66.0/lib/speedcheck.h
curl-7.66.0/lib/hostcheck.c
curl-7.66.0/lib/curl_get_line.c
curl-7.66.0/lib/connect.c
curl-7.66.0/lib/smtp.h
curl-7.66.0/lib/memdebug.h
curl-7.66.0/lib/amigaos.c
curl-7.66.0/lib/config-win32.h
curl-7.66.0/lib/strtok.c
curl-7.66.0/lib/mime.h
curl-7.66.0/lib/curl_fnmatch.h
curl-7.66.0/lib/sigpipe.h
curl-7.66.0/lib/connect.h
curl-7.66.0/lib/easyif.h
curl-7.66.0/lib/setup-vms.h
curl-7.66.0/lib/cookie.h
curl-7.66.0/lib/curl_config.h.cmake
curl-7.66.0/lib/pingpong.h
curl-7.66.0/lib/url.h
curl-7.66.0/lib/transfer.c
curl-7.66.0/lib/select.c
curl-7.66.0/lib/inet_ntop.c
curl-7.66.0/lib/curl_sspi.c
curl-7.66.0/lib/smtp.c
curl-7.66.0/lib/inet_ntop.h
curl-7.66.0/lib/libcurl.plist
curl-7.66.0/lib/curl_sasl.c
curl-7.66.0/lib/escape.h
curl-7.66.0/lib/content_encoding.h
curl-7.66.0/lib/non-ascii.c
curl-7.66.0/lib/multihandle.h
curl-7.66.0/lib/openldap.c
curl-7.66.0/lib/conncache.h
curl-7.66.0/lib/file.c
curl-7.66.0/lib/psl.h
curl-7.66.0/lib/curl_ntlm_wb.c
curl-7.66.0/lib/telnet.h
curl-7.66.0/lib/netrc.h
curl-7.66.0/lib/mk-ca-bundle.pl
curl-7.66.0/lib/pop3.h
curl-7.66.0/lib/ftplistparser.h
curl-7.66.0/lib/setopt.c
curl-7.66.0/lib/curl_memrchr.h
curl-7.66.0/lib/curl_addrinfo.c
curl-7.66.0/lib/parsedate.c
curl-7.66.0/lib/dotdot.c
curl-7.66.0/lib/checksrc.pl
curl-7.66.0/lib/asyn.h
curl-7.66.0/lib/base64.c
curl-7.66.0/lib/curl_md5.h
curl-7.66.0/lib/formdata.c
curl-7.66.0/lib/curl_sspi.h
curl-7.66.0/lib/urldata.h
curl-7.66.0/lib/config-tpf.h
curl-7.66.0/lib/firefox-db2pem.sh
curl-7.66.0/lib/multiif.h
curl-7.66.0/lib/speedcheck.c
curl-7.66.0/lib/progress.c
curl-7.66.0/lib/http.c
curl-7.66.0/lib/getinfo.c
curl-7.66.0/lib/curl_base64.h
curl-7.66.0/lib/arpa_telnet.h
curl-7.66.0/lib/if2ip.h
curl-7.66.0/lib/config-os400.h
curl-7.66.0/lib/curl_multibyte.c
curl-7.66.0/lib/curl_setup_once.h
curl-7.66.0/lib/curl_threads.h
curl-7.66.0/lib/http2.h
curl-7.66.0/lib/libcurl.rc
curl-7.66.0/lib/curl_addrinfo.h
curl-7.66.0/lib/slist.h
curl-7.66.0/lib/mk-ca-bundle.vbs
curl-7.66.0/lib/content_encoding.c
curl-7.66.0/lib/curl_get_line.h
curl-7.66.0/lib/if2ip.c
curl-7.66.0/lib/altsvc.h
curl-7.66.0/lib/config-symbian.h
curl-7.66.0/lib/hostip.h
curl-7.66.0/lib/tftp.c
curl-7.66.0/lib/asyn-ares.c
curl-7.66.0/lib/curl_gssapi.h
curl-7.66.0/lib/curl_ctype.c
curl-7.66.0/lib/curl_path.h
curl-7.66.0/lib/share.c
curl-7.66.0/lib/curl_printf.h
curl-7.66.0/lib/vauth/
curl-7.66.0/lib/vauth/spnego_gssapi.c
curl-7.66.0/lib/vauth/krb5_gssapi.c
curl-7.66.0/lib/vauth/vauth.c
curl-7.66.0/lib/vauth/spnego_sspi.c
curl-7.66.0/lib/vauth/digest.h
curl-7.66.0/lib/vauth/digest.c
curl-7.66.0/lib/vauth/oauth2.c
curl-7.66.0/lib/vauth/cram.c
curl-7.66.0/lib/vauth/vauth.h
curl-7.66.0/lib/vauth/digest_sspi.c
curl-7.66.0/lib/vauth/cleartext.c
curl-7.66.0/lib/vauth/ntlm_sspi.c
curl-7.66.0/lib/vauth/krb5_sspi.c
curl-7.66.0/lib/vauth/ntlm.h
curl-7.66.0/lib/vauth/ntlm.c
curl-7.66.0/lib/hmac.c
curl-7.66.0/lib/vssh/
curl-7.66.0/lib/vssh/libssh.c
curl-7.66.0/lib/vssh/libssh2.c
curl-7.66.0/lib/config-vxworks.h
curl-7.66.0/lib/formdata.h
curl-7.66.0/lib/sha256.c
curl-7.66.0/lib/slist.c
curl-7.66.0/lib/hostsyn.c
curl-7.66.0/lib/http_chunks.h
curl-7.66.0/lib/security.c
curl-7.66.0/lib/curl_sec.h
curl-7.66.0/lib/http_digest.c
curl-7.66.0/lib/curl_threads.c
curl-7.66.0/lib/wildcard.c
curl-7.66.0/lib/version.c
curl-7.66.0/lib/curl_sasl.h
curl-7.66.0/lib/curl_memrchr.c
curl-7.66.0/lib/http_negotiate.c
curl-7.66.0/lib/curl_rtmp.c
curl-7.66.0/lib/mprintf.c
curl-7.66.0/lib/config-amigaos.h
curl-7.66.0/lib/dotdot.h
curl-7.66.0/lib/krb5.c
curl-7.66.0/lib/curl_multibyte.h
curl-7.66.0/lib/curl_gethostname.h
curl-7.66.0/lib/CMakeLists.txt
curl-7.66.0/lib/socks.c
curl-7.66.0/lib/quic.h
curl-7.66.0/lib/getinfo.h
curl-7.66.0/lib/strcase.h
curl-7.66.0/lib/curl_ctype.h
curl-7.66.0/lib/hostip.c
curl-7.66.0/lib/splay.c
curl-7.66.0/lib/curl_ldap.h
curl-7.66.0/lib/curl_md4.h
curl-7.66.0/lib/vtls/
curl-7.66.0/lib/vtls/nss.c
curl-7.66.0/lib/vtls/gtls.c
curl-7.66.0/lib/vtls/wolfssl.c
curl-7.66.0/lib/vtls/wolfssl.h
curl-7.66.0/lib/vtls/nssg.h
curl-7.66.0/lib/vtls/schannel_verify.c
curl-7.66.0/lib/vtls/openssl.h
curl-7.66.0/lib/vtls/mesalink.h
curl-7.66.0/lib/vtls/gskit.c
curl-7.66.0/lib/vtls/polarssl_threadlock.h
curl-7.66.0/lib/vtls/vtls.c
curl-7.66.0/lib/vtls/polarssl.c
curl-7.66.0/lib/vtls/schannel.h
curl-7.66.0/lib/vtls/schannel.c
curl-7.66.0/lib/vtls/polarssl_threadlock.c
curl-7.66.0/lib/vtls/vtls.h
curl-7.66.0/lib/vtls/mbedtls.c
curl-7.66.0/lib/vtls/sectransp.h
curl-7.66.0/lib/vtls/polarssl.h
curl-7.66.0/lib/vtls/gskit.h
curl-7.66.0/lib/vtls/gtls.h
curl-7.66.0/lib/vtls/mesalink.c
curl-7.66.0/lib/vtls/openssl.c
curl-7.66.0/lib/vtls/sectransp.c
curl-7.66.0/lib/vtls/mbedtls.h
curl-7.66.0/lib/progress.h
curl-7.66.0/lib/curl_endian.c
curl-7.66.0/lib/psl.c
curl-7.66.0/lib/http_ntlm.h
curl-7.66.0/lib/doh.c
curl-7.66.0/lib/Makefile.m32
curl-7.66.0/lib/hostasyn.c
curl-7.66.0/lib/curl_hmac.h
curl-7.66.0/lib/telnet.c
curl-7.66.0/lib/strdup.h
curl-7.66.0/lib/config-riscos.h
curl-7.66.0/lib/pingpong.c
curl-7.66.0/lib/system_win32.h
curl-7.66.0/lib/Makefile.netware
curl-7.66.0/lib/llist.h
curl-7.66.0/lib/ftp.h
curl-7.66.0/lib/select.h
curl-7.66.0/lib/parsedate.h
curl-7.66.0/lib/http_negotiate.h
curl-7.66.0/lib/Makefile.vxworks
curl-7.66.0/lib/vquic/
curl-7.66.0/lib/vquic/quiche.h
curl-7.66.0/lib/vquic/ngtcp2.c
curl-7.66.0/lib/vquic/ngtcp2.h
curl-7.66.0/lib/vquic/quiche.c
curl-7.66.0/lib/getenv.c
curl-7.66.0/lib/transfer.h
curl-7.66.0/lib/multi.c
curl-7.66.0/lib/curl_range.h
curl-7.66.0/lib/curl_memory.h
curl-7.66.0/lib/warnless.c
curl-7.66.0/lib/http.h
curl-7.66.0/lib/curl_des.c
curl-7.66.0/lib/x509asn1.h
curl-7.66.0/lib/llist.c
curl-7.66.0/lib/ftp.c
curl-7.66.0/lib/timeval.c
curl-7.66.0/lib/inet_pton.c
curl-7.66.0/lib/socks_gssapi.c
curl-7.66.0/lib/Makefile.am
curl-7.66.0/lib/ftplistparser.c
curl-7.66.0/lib/Makefile.in
curl-7.66.0/lib/mime.c
curl-7.66.0/lib/dict.h
curl-7.66.0/lib/curl_endian.h
curl-7.66.0/lib/idn_win32.c
curl-7.66.0/lib/nonblock.h
curl-7.66.0/lib/socks_sspi.c
curl-7.66.0/lib/curl_config.h.in
curl-7.66.0/lib/pop3.c
curl-7.66.0/lib/md5.c
curl-7.66.0/lib/strerror.c
curl-7.66.0/lib/config-mac.h
curl-7.66.0/lib/escape.c
curl-7.66.0/lib/socks.h
curl-7.66.0/lib/http_ntlm.c
curl-7.66.0/lib/http_proxy.c
curl-7.66.0/lib/strtok.h
curl-7.66.0/lib/config-dos.h
curl-7.66.0/lib/curl_ntlm_core.h
curl-7.66.0/lib/non-ascii.h
curl-7.66.0/lib/ldap.c
curl-7.66.0/lib/share.h
curl-7.66.0/lib/fileinfo.h
curl-7.66.0/lib/asyn-thread.c
curl-7.66.0/lib/http2.c
curl-7.66.0/lib/nonblock.c
curl-7.66.0/lib/gopher.h
curl-7.66.0/lib/cookie.c
curl-7.66.0/lib/strdup.c
curl-7.66.0/lib/curlx.h
curl-7.66.0/lib/http_chunks.c
curl-7.66.0/lib/smb.h
curl-7.66.0/lib/config-win32ce.h
curl-7.66.0/curl-config.in
curl-7.66.0/MacOSX-Framework
curl-7.66.0/acinclude.m4
curl-7.66.0/configure
curl-7.66.0/CHANGES
curl-7.66.0/ltmain.sh
curl-7.66.0/buildconf
curl-7.66.0/install-sh
curl-7.66.0/m4/
curl-7.66.0/m4/ltoptions.m4
curl-7.66.0/m4/xc-lt-iface.m4
curl-7.66.0/m4/zz50-xc-ovr.m4
curl-7.66.0/m4/xc-am-iface.m4
curl-7.66.0/m4/libtool.m4
curl-7.66.0/m4/xc-translit.m4
curl-7.66.0/m4/curl-confopts.m4
curl-7.66.0/m4/zz40-xc-ovr.m4
curl-7.66.0/m4/curl-compilers.m4
curl-7.66.0/m4/curl-functions.m4
curl-7.66.0/m4/ax_compile_check_sizeof.m4
curl-7.66.0/m4/curl-override.m4
curl-7.66.0/m4/curl-openssl.m4
curl-7.66.0/m4/xc-val-flgs.m4
curl-7.66.0/m4/ltsugar.m4
curl-7.66.0/m4/zz60-xc-ovr.m4
curl-7.66.0/m4/lt~obsolete.m4
curl-7.66.0/m4/curl-reentrant.m4
curl-7.66.0/m4/xc-cc-check.m4
curl-7.66.0/m4/ltversion.m4
curl-7.66.0/RELEASE-NOTES
curl-7.66.0/test-driver
curl-7.66.0/src/
curl-7.66.0/src/tool_filetime.c
curl-7.66.0/src/tool_filetime.h
curl-7.66.0/src/tool_cfgable.c
curl-7.66.0/src/tool_hugehelp.h
curl-7.66.0/src/tool_setup.h
curl-7.66.0/src/tool_panykey.c
curl-7.66.0/src/tool_binmode.h
curl-7.66.0/src/tool_cfgable.h
curl-7.66.0/src/tool_cb_hdr.h
curl-7.66.0/src/Makefile.inc
curl-7.66.0/src/tool_convert.h
curl-7.66.0/src/makefile.dj
curl-7.66.0/src/tool_operhlp.h
curl-7.66.0/src/tool_helpers.h
curl-7.66.0/src/tool_cb_dbg.c
curl-7.66.0/src/tool_version.h
curl-7.66.0/src/tool_bname.c
curl-7.66.0/src/tool_progress.c
curl-7.66.0/src/tool_paramhlp.c
curl-7.66.0/src/tool_homedir.c
curl-7.66.0/src/makefile.amiga
curl-7.66.0/src/curl.rc
curl-7.66.0/src/tool_operhlp.c
curl-7.66.0/src/tool_doswin.c
curl-7.66.0/src/tool_getpass.c
curl-7.66.0/src/Makefile.Watcom
curl-7.66.0/src/tool_sdecls.h
curl-7.66.0/src/tool_main.h
curl-7.66.0/src/tool_formparse.h
curl-7.66.0/src/tool_cb_wrt.c
curl-7.66.0/src/tool_writeout.c
curl-7.66.0/src/mkhelp.pl
curl-7.66.0/src/slist_wc.h
curl-7.66.0/src/tool_cb_see.h
curl-7.66.0/src/tool_panykey.h
curl-7.66.0/src/tool_dirhie.c
curl-7.66.0/src/tool_metalink.h
curl-7.66.0/src/tool_setopt.h
curl-7.66.0/src/tool_cb_wrt.h
curl-7.66.0/src/tool_xattr.c
curl-7.66.0/src/tool_dirhie.h
curl-7.66.0/src/tool_bname.h
curl-7.66.0/src/tool_sleep.c
curl-7.66.0/src/tool_easysrc.h
curl-7.66.0/src/tool_progress.h
curl-7.66.0/src/tool_homedir.h
curl-7.66.0/src/tool_help.c
curl-7.66.0/src/tool_binmode.c
curl-7.66.0/src/tool_getparam.h
curl-7.66.0/src/tool_cb_hdr.c
curl-7.66.0/src/tool_cb_dbg.h
curl-7.66.0/src/tool_help.h
curl-7.66.0/src/tool_cb_rea.c
curl-7.66.0/src/tool_msgs.h
curl-7.66.0/src/tool_cb_rea.h
curl-7.66.0/src/tool_convert.c
curl-7.66.0/src/tool_xattr.h
curl-7.66.0/src/tool_paramhlp.h
curl-7.66.0/src/tool_setopt.c
curl-7.66.0/src/tool_hugehelp.c
curl-7.66.0/src/tool_operate.c
curl-7.66.0/src/slist_wc.c
curl-7.66.0/src/tool_getparam.c
curl-7.66.0/src/tool_metalink.c
curl-7.66.0/src/tool_cb_prg.c
curl-7.66.0/src/tool_getpass.h
curl-7.66.0/src/tool_cb_see.c
curl-7.66.0/src/tool_sleep.h
curl-7.66.0/src/tool_parsecfg.h
curl-7.66.0/src/CMakeLists.txt
curl-7.66.0/src/tool_helpers.c
curl-7.66.0/src/tool_writeout.h
curl-7.66.0/src/tool_strdup.h
curl-7.66.0/src/tool_cb_prg.h
curl-7.66.0/src/Makefile.m32
curl-7.66.0/src/tool_easysrc.c
curl-7.66.0/src/tool_operate.h
curl-7.66.0/src/Makefile.netware
curl-7.66.0/src/tool_parsecfg.c
curl-7.66.0/src/tool_msgs.c
curl-7.66.0/src/tool_strdup.c
curl-7.66.0/src/tool_formparse.c
curl-7.66.0/src/tool_libinfo.c
curl-7.66.0/src/tool_vms.c
curl-7.66.0/src/Makefile.am
curl-7.66.0/src/Makefile.in
curl-7.66.0/src/tool_main.c
curl-7.66.0/src/tool_vms.h
curl-7.66.0/src/macos/
curl-7.66.0/src/macos/src/
curl-7.66.0/src/macos/src/curl_GUSIConfig.cpp
curl-7.66.0/src/macos/src/macos_main.cpp
curl-7.66.0/src/macos/MACINSTALL.TXT
curl-7.66.0/src/macos/curl.mcp.xml.sit.hqx
curl-7.66.0/src/tool_doswin.h
curl-7.66.0/src/tool_urlglob.h
curl-7.66.0/src/tool_urlglob.c
curl-7.66.0/src/tool_libinfo.h
curl-7.66.0/src/tool_util.c
curl-7.66.0/src/tool_util.h
curl-7.66.0/compile
curl-7.66.0/Makefile
curl-7.66.0/include/
curl-7.66.0/include/README
curl-7.66.0/include/curl/
curl-7.66.0/include/curl/typecheck-gcc.h
curl-7.66.0/include/curl/system.h
curl-7.66.0/include/curl/stdcheaders.h
curl-7.66.0/include/curl/easy.h
curl-7.66.0/include/curl/urlapi.h
curl-7.66.0/include/curl/mprintf.h
curl-7.66.0/include/curl/curl.h
curl-7.66.0/include/curl/curlver.h
curl-7.66.0/include/curl/multi.h
curl-7.66.0/include/curl/Makefile.am
curl-7.66.0/include/curl/Makefile.in
curl-7.66.0/include/Makefile.am
curl-7.66.0/include/Makefile.in
curl-7.66.0/packages/
curl-7.66.0/packages/README
curl-7.66.0/packages/OS400/
curl-7.66.0/packages/OS400/curl.inc.in
curl-7.66.0/packages/OS400/README.OS400
curl-7.66.0/packages/OS400/initscript.sh
curl-7.66.0/packages/OS400/ccsidcurl.h
curl-7.66.0/packages/OS400/makefile.sh
curl-7.66.0/packages/OS400/ccsidcurl.c
curl-7.66.0/packages/OS400/make-tests.sh
curl-7.66.0/packages/OS400/make-src.sh
curl-7.66.0/packages/OS400/os400sys.h
curl-7.66.0/packages/OS400/make-lib.sh
curl-7.66.0/packages/OS400/make-include.sh
curl-7.66.0/packages/OS400/os400sys.c
curl-7.66.0/packages/Symbian/
curl-7.66.0/packages/Symbian/group/
curl-7.66.0/packages/Symbian/group/curl.mmp
curl-7.66.0/packages/Symbian/group/libcurl.mmp
curl-7.66.0/packages/Symbian/group/bld.inf
curl-7.66.0/packages/Symbian/group/libcurl.pkg
curl-7.66.0/packages/Symbian/group/libcurl.iby
curl-7.66.0/packages/Symbian/group/curl.pkg
curl-7.66.0/packages/Symbian/group/curl.iby
curl-7.66.0/packages/Symbian/bwins/
curl-7.66.0/packages/Symbian/bwins/libcurlu.def
curl-7.66.0/packages/Symbian/eabi/
curl-7.66.0/packages/Symbian/eabi/libcurlu.def
curl-7.66.0/packages/Symbian/readme.txt
curl-7.66.0/packages/vms/
curl-7.66.0/packages/vms/macro32_exactcase.patch
curl-7.66.0/packages/vms/clean_gnv_curl.com
curl-7.66.0/packages/vms/curlmsg.h
curl-7.66.0/packages/vms/vms_eco_level.h
curl-7.66.0/packages/vms/compare_curl_source.com
curl-7.66.0/packages/vms/build_gnv_curl.com
curl-7.66.0/packages/vms/build_vms.com
curl-7.66.0/packages/vms/curlmsg.sdl
curl-7.66.0/packages/vms/gnv_link_curl.com
curl-7.66.0/packages/vms/gnv_conftest.c_first
curl-7.66.0/packages/vms/make_gnv_curl_install.sh
curl-7.66.0/packages/vms/gnv_libcurl_symbols.opt
curl-7.66.0/packages/vms/build_libcurl_pc.com
curl-7.66.0/packages/vms/generate_vax_transfer.com
curl-7.66.0/packages/vms/report_openssl_version.c
curl-7.66.0/packages/vms/generate_config_vms_h_curl.com
curl-7.66.0/packages/vms/build_curl-config_script.com
curl-7.66.0/packages/vms/build_gnv_curl_pcsi_text.com
curl-7.66.0/packages/vms/curl_release_note_start.txt
curl-7.66.0/packages/vms/pcsi_product_gnv_curl.com
curl-7.66.0/packages/vms/config_h.com
curl-7.66.0/packages/vms/curl_startup.com
curl-7.66.0/packages/vms/backup_gnv_curl_src.com
curl-7.66.0/packages/vms/gnv_curl_configure.sh
curl-7.66.0/packages/vms/curl_gnv_build_steps.txt
curl-7.66.0/packages/vms/curlmsg_vms.h
curl-7.66.0/packages/vms/stage_curl_install.com
curl-7.66.0/packages/vms/build_gnv_curl_pcsi_desc.com
curl-7.66.0/packages/vms/readme
curl-7.66.0/packages/vms/curl_crtl_init.c
curl-7.66.0/packages/vms/pcsi_gnv_curl_file_list.txt
curl-7.66.0/packages/vms/make_pcsi_curl_kit_name.com
curl-7.66.0/packages/vms/Makefile.am
curl-7.66.0/packages/vms/Makefile.in
curl-7.66.0/packages/vms/setup_gnv_curl_build.com
curl-7.66.0/packages/vms/build_gnv_curl_release_notes.com
curl-7.66.0/packages/vms/curlmsg.msg
curl-7.66.0/packages/Android/
curl-7.66.0/packages/Android/Android.mk
curl-7.66.0/packages/DOS/
curl-7.66.0/packages/DOS/README
curl-7.66.0/packages/DOS/common.dj
curl-7.66.0/packages/Makefile.am
curl-7.66.0/packages/Makefile.in
curl-7.66.0/packages/TPF/
curl-7.66.0/packages/TPF/maketpf.env_curl
curl-7.66.0/packages/TPF/curl.mak
curl-7.66.0/packages/TPF/maketpf.env_curllib
curl-7.66.0/plan9/
curl-7.66.0/plan9/lib/
curl-7.66.0/plan9/lib/mkfile.inc
curl-7.66.0/plan9/lib/mkfile
curl-7.66.0/plan9/mkfile
curl-7.66.0/plan9/mkfile.proto
curl-7.66.0/plan9/src/
curl-7.66.0/plan9/src/mkfile.inc
curl-7.66.0/plan9/src/mkfile
curl-7.66.0/plan9/include/
curl-7.66.0/plan9/include/mkfile
curl-7.66.0/plan9/BUILD.PLAN9.txt
curl-7.66.0/libcurl.pc.in
curl-7.66.0/config.sub
curl-7.66.0/CMakeLists.txt
curl-7.66.0/COPYING
curl-7.66.0/missing
curl-7.66.0/aclocal.m4
curl-7.66.0/config.guess
curl-7.66.0/scripts/
curl-7.66.0/scripts/completion.pl
curl-7.66.0/scripts/coverage.sh
curl-7.66.0/scripts/updatemanpages.pl
curl-7.66.0/scripts/Makefile.am
curl-7.66.0/scripts/Makefile.in
curl-7.66.0/tests/
curl-7.66.0/tests/getpart.pm
curl-7.66.0/tests/python_dependencies/
curl-7.66.0/tests/python_dependencies/impacket/
curl-7.66.0/tests/python_dependencies/impacket/structure.py
curl-7.66.0/tests/python_dependencies/impacket/spnego.py
curl-7.66.0/tests/python_dependencies/impacket/ntlm.py
curl-7.66.0/tests/python_dependencies/impacket/smbserver.py
curl-7.66.0/tests/python_dependencies/impacket/uuid.py
curl-7.66.0/tests/python_dependencies/impacket/nmb.py
curl-7.66.0/tests/python_dependencies/impacket/smb.py
curl-7.66.0/tests/python_dependencies/impacket/smb3structs.py
curl-7.66.0/tests/python_dependencies/impacket/__init__.py
curl-7.66.0/tests/python_dependencies/impacket/smb3.py
curl-7.66.0/tests/python_dependencies/impacket/version.py
curl-7.66.0/tests/python_dependencies/impacket/nt_errors.py
curl-7.66.0/tests/README
curl-7.66.0/tests/libtest/
curl-7.66.0/tests/libtest/lib590.c
curl-7.66.0/tests/libtest/lib650.c
curl-7.66.0/tests/libtest/lib1511.c
curl-7.66.0/tests/libtest/lib562.c
curl-7.66.0/tests/libtest/lib521.c
curl-7.66.0/tests/libtest/lib514.c
curl-7.66.0/tests/libtest/Makefile.inc
curl-7.66.0/tests/libtest/lib1534.c
curl-7.66.0/tests/libtest/lib1560.c
curl-7.66.0/tests/libtest/chkdecimalpoint.c
curl-7.66.0/tests/libtest/lib576.c
curl-7.66.0/tests/libtest/lib1553.c
curl-7.66.0/tests/libtest/test610.pl
curl-7.66.0/tests/libtest/lib1593.c
curl-7.66.0/tests/libtest/lib1551.c
curl-7.66.0/tests/libtest/test.h
curl-7.66.0/tests/libtest/lib1558.c
curl-7.66.0/tests/libtest/lib508.c
curl-7.66.0/tests/libtest/lib643.c
curl-7.66.0/tests/libtest/chkhostname.c
curl-7.66.0/tests/libtest/lib1557.c
curl-7.66.0/tests/libtest/lib1905.c
curl-7.66.0/tests/libtest/lib1594.c
curl-7.66.0/tests/libtest/lib542.c
curl-7.66.0/tests/libtest/lib578.c
curl-7.66.0/tests/libtest/lib1526.c
curl-7.66.0/tests/libtest/lib519.c
curl-7.66.0/tests/libtest/lib518.c
curl-7.66.0/tests/libtest/lib1501.c
curl-7.66.0/tests/libtest/lib1522.c
curl-7.66.0/tests/libtest/lib1528.c
curl-7.66.0/tests/libtest/test613.pl
curl-7.66.0/tests/libtest/lib569.c
curl-7.66.0/tests/libtest/mk-lib1521.pl
curl-7.66.0/tests/libtest/lib1513.c
curl-7.66.0/tests/libtest/lib654.c
curl-7.66.0/tests/libtest/lib582.c
curl-7.66.0/tests/libtest/lib1509.c
curl-7.66.0/tests/libtest/lib1550.c
curl-7.66.0/tests/libtest/notexists.pl
curl-7.66.0/tests/libtest/lib559.c
curl-7.66.0/tests/libtest/lib1900.c
curl-7.66.0/tests/libtest/lib571.c
curl-7.66.0/tests/libtest/lib560.c
curl-7.66.0/tests/libtest/lib549.c
curl-7.66.0/tests/libtest/lib1535.c
curl-7.66.0/tests/libtest/lib1554.c
curl-7.66.0/tests/libtest/lib515.c
curl-7.66.0/tests/libtest/lib652.c
curl-7.66.0/tests/libtest/lib555.c
curl-7.66.0/tests/libtest/lib1512.c
curl-7.66.0/tests/libtest/testutil.c
curl-7.66.0/tests/libtest/lib651.c
curl-7.66.0/tests/libtest/lib589.c
curl-7.66.0/tests/libtest/first.c
curl-7.66.0/tests/libtest/lib1156.c
curl-7.66.0/tests/libtest/lib567.c
curl-7.66.0/tests/libtest/lib564.c
curl-7.66.0/tests/libtest/lib573.c
curl-7.66.0/tests/libtest/sethostname.h
curl-7.66.0/tests/libtest/lib575.c
curl-7.66.0/tests/libtest/lib557.c
curl-7.66.0/tests/libtest/lib1525.c
curl-7.66.0/tests/libtest/lib579.c
curl-7.66.0/tests/libtest/lib572.c
curl-7.66.0/tests/libtest/lib1540.c
curl-7.66.0/tests/libtest/test1013.pl
curl-7.66.0/tests/libtest/lib568.c
curl-7.66.0/tests/libtest/lib1530.c
curl-7.66.0/tests/libtest/lib525.c
curl-7.66.0/tests/libtest/lib552.c
curl-7.66.0/tests/libtest/lib1523.c
curl-7.66.0/tests/libtest/lib1510.c
curl-7.66.0/tests/libtest/lib537.c
curl-7.66.0/tests/libtest/lib1532.c
curl-7.66.0/tests/libtest/lib523.c
curl-7.66.0/tests/libtest/lib505.c
curl-7.66.0/tests/libtest/lib547.c
curl-7.66.0/tests/libtest/lib1517.c
curl-7.66.0/tests/libtest/lib1500.c
curl-7.66.0/tests/libtest/lib506.c
curl-7.66.0/tests/libtest/lib1537.c
curl-7.66.0/tests/libtest/lib553.c
curl-7.66.0/tests/libtest/lib509.c
curl-7.66.0/tests/libtest/lib1906.c
curl-7.66.0/tests/libtest/lib530.c
curl-7.66.0/tests/libtest/lib510.c
curl-7.66.0/tests/libtest/lib1541.c
curl-7.66.0/tests/libtest/lib1520.c
curl-7.66.0/tests/libtest/lib586.c
curl-7.66.0/tests/libtest/lib1508.c
curl-7.66.0/tests/libtest/lib520.c
curl-7.66.0/tests/libtest/testtrace.h
curl-7.66.0/tests/libtest/lib500.c
curl-7.66.0/tests/libtest/lib507.c
curl-7.66.0/tests/libtest/lib1591.c
curl-7.66.0/tests/libtest/lib1531.c
curl-7.66.0/tests/libtest/lib1533.c
curl-7.66.0/tests/libtest/lib533.c
curl-7.66.0/tests/libtest/lib1518.c
curl-7.66.0/tests/libtest/lib1536.c
curl-7.66.0/tests/libtest/CMakeLists.txt
curl-7.66.0/tests/libtest/lib556.c
curl-7.66.0/tests/libtest/lib591.c
curl-7.66.0/tests/libtest/lib658.c
curl-7.66.0/tests/libtest/lib1507.c
curl-7.66.0/tests/libtest/lib1538.c
curl-7.66.0/tests/libtest/lib1556.c
curl-7.66.0/tests/libtest/lib544.c
curl-7.66.0/tests/libtest/lib1592.c
curl-7.66.0/tests/libtest/lib1552.c
curl-7.66.0/tests/libtest/lib541.c
curl-7.66.0/tests/libtest/lib1515.c
curl-7.66.0/tests/libtest/lib655.c
curl-7.66.0/tests/libtest/stub_gssapi.h
curl-7.66.0/tests/libtest/lib597.c
curl-7.66.0/tests/libtest/lib1502.c
curl-7.66.0/tests/libtest/lib554.c
curl-7.66.0/tests/libtest/lib1514.c
curl-7.66.0/tests/libtest/libntlmconnect.c
curl-7.66.0/tests/libtest/lib574.c
curl-7.66.0/tests/libtest/lib570.c
curl-7.66.0/tests/libtest/lib566.c
curl-7.66.0/tests/libtest/lib599.c
curl-7.66.0/tests/libtest/lib1506.c
curl-7.66.0/tests/libtest/testtrace.c
curl-7.66.0/tests/libtest/testutil.h
curl-7.66.0/tests/libtest/lib558.c
curl-7.66.0/tests/libtest/lib513.c
curl-7.66.0/tests/libtest/sethostname.c
curl-7.66.0/tests/libtest/lib512.c
curl-7.66.0/tests/libtest/lib1555.c
curl-7.66.0/tests/libtest/lib501.c
curl-7.66.0/tests/libtest/lib540.c
curl-7.66.0/tests/libtest/test1022.pl
curl-7.66.0/tests/libtest/lib503.c
curl-7.66.0/tests/libtest/Makefile.am
curl-7.66.0/tests/libtest/Makefile.in
curl-7.66.0/tests/libtest/lib511.c
curl-7.66.0/tests/libtest/libauthretry.c
curl-7.66.0/tests/libtest/lib1529.c
curl-7.66.0/tests/libtest/lib653.c
curl-7.66.0/tests/libtest/lib598.c
curl-7.66.0/tests/libtest/lib502.c
curl-7.66.0/tests/libtest/lib524.c
curl-7.66.0/tests/libtest/lib539.c
curl-7.66.0/tests/libtest/lib517.c
curl-7.66.0/tests/libtest/test75.pl
curl-7.66.0/tests/libtest/lib526.c
curl-7.66.0/tests/libtest/lib516.c
curl-7.66.0/tests/libtest/lib1559.c
curl-7.66.0/tests/libtest/lib504.c
curl-7.66.0/tests/libtest/lib543.c
curl-7.66.0/tests/libtest/lib583.c
curl-7.66.0/tests/libtest/lib659.c
curl-7.66.0/tests/libtest/stub_gssapi.c
curl-7.66.0/tests/libtest/test307.pl
curl-7.66.0/tests/libtest/lib1527.c
curl-7.66.0/tests/manpage-syntax.pl
curl-7.66.0/tests/ftp.pm
curl-7.66.0/tests/stunnel.pem
curl-7.66.0/tests/objnames-test10.sh
curl-7.66.0/tests/dictserver.py
curl-7.66.0/tests/sshserver.pl
curl-7.66.0/tests/FILEFORMAT
curl-7.66.0/tests/memanalyze.pl
curl-7.66.0/tests/smbserver.py
curl-7.66.0/tests/serverhelp.pm
curl-7.66.0/tests/sshhelp.pm
curl-7.66.0/tests/data/
curl-7.66.0/tests/data/test86
curl-7.66.0/tests/data/test1701
curl-7.66.0/tests/data/test717
curl-7.66.0/tests/data/test238
curl-7.66.0/tests/data/test2026
curl-7.66.0/tests/data/test149
curl-7.66.0/tests/data/test810
curl-7.66.0/tests/data/test1046
curl-7.66.0/tests/data/test1292
curl-7.66.0/tests/data/test1074
curl-7.66.0/tests/data/test627
curl-7.66.0/tests/data/test843
curl-7.66.0/tests/data/test712
curl-7.66.0/tests/data/test567
curl-7.66.0/tests/data/test1540
curl-7.66.0/tests/data/test545
curl-7.66.0/tests/data/test821
curl-7.66.0/tests/data/test915
curl-7.66.0/tests/data/test884
curl-7.66.0/tests/data/test227
curl-7.66.0/tests/data/test1451
curl-7.66.0/tests/data/test1022
curl-7.66.0/tests/data/test530
curl-7.66.0/tests/data/test159
curl-7.66.0/tests/data/test1116
curl-7.66.0/tests/data/test158
curl-7.66.0/tests/data/test146
curl-7.66.0/tests/data/test216
curl-7.66.0/tests/data/test1036
curl-7.66.0/tests/data/test2058
curl-7.66.0/tests/data/test1550
curl-7.66.0/tests/data/test591
curl-7.66.0/tests/data/test1141
curl-7.66.0/tests/data/test1370
curl-7.66.0/tests/data/test249
curl-7.66.0/tests/data/test351
curl-7.66.0/tests/data/test1414
curl-7.66.0/tests/data/test196
curl-7.66.0/tests/data/test2010
curl-7.66.0/tests/data/test180
curl-7.66.0/tests/data/test168
curl-7.66.0/tests/data/test1258
curl-7.66.0/tests/data/test322
curl-7.66.0/tests/data/test1397
curl-7.66.0/tests/data/test2023
curl-7.66.0/tests/data/test826
curl-7.66.0/tests/data/test814
curl-7.66.0/tests/data/test46
curl-7.66.0/tests/data/test34
curl-7.66.0/tests/data/test1347
curl-7.66.0/tests/data/test1073
curl-7.66.0/tests/data/test1133
curl-7.66.0/tests/data/test1111
curl-7.66.0/tests/data/test1389
curl-7.66.0/tests/data/test1027
curl-7.66.0/tests/data/test919
curl-7.66.0/tests/data/test1376
curl-7.66.0/tests/data/test257
curl-7.66.0/tests/data/test2067
curl-7.66.0/tests/data/test278
curl-7.66.0/tests/data/test880
curl-7.66.0/tests/data/test857
curl-7.66.0/tests/data/test306
curl-7.66.0/tests/data/test1092
curl-7.66.0/tests/data/test1075
curl-7.66.0/tests/data/test825
curl-7.66.0/tests/data/test1247
curl-7.66.0/tests/data/test1593
curl-7.66.0/tests/data/test1373
curl-7.66.0/tests/data/test1255
curl-7.66.0/tests/data/test1603
curl-7.66.0/tests/data/test1142
curl-7.66.0/tests/data/test22
curl-7.66.0/tests/data/test813
curl-7.66.0/tests/data/test1512
curl-7.66.0/tests/data/test1204
curl-7.66.0/tests/data/test1352
curl-7.66.0/tests/data/test601
curl-7.66.0/tests/data/Makefile.inc
curl-7.66.0/tests/data/test1371
curl-7.66.0/tests/data/test106
curl-7.66.0/tests/data/test407
curl-7.66.0/tests/data/test1523
curl-7.66.0/tests/data/test1159
curl-7.66.0/tests/data/test2035
curl-7.66.0/tests/data/test1008
curl-7.66.0/tests/data/test1226
curl-7.66.0/tests/data/test214
curl-7.66.0/tests/data/test393
curl-7.66.0/tests/data/test945
curl-7.66.0/tests/data/test655
curl-7.66.0/tests/data/test51
curl-7.66.0/tests/data/test286
curl-7.66.0/tests/data/test1591
curl-7.66.0/tests/data/test79
curl-7.66.0/tests/data/test879
curl-7.66.0/tests/data/test1349
curl-7.66.0/tests/data/test1118
curl-7.66.0/tests/data/test1427
curl-7.66.0/tests/data/test182
curl-7.66.0/tests/data/test1420
curl-7.66.0/tests/data/test908
curl-7.66.0/tests/data/test804
curl-7.66.0/tests/data/test870
curl-7.66.0/tests/data/test590
curl-7.66.0/tests/data/test523
curl-7.66.0/tests/data/test1307
curl-7.66.0/tests/data/test917
curl-7.66.0/tests/data/test1120
curl-7.66.0/tests/data/test1514
curl-7.66.0/tests/data/test295
curl-7.66.0/tests/data/test1541
curl-7.66.0/tests/data/test625
curl-7.66.0/tests/data/test933
curl-7.66.0/tests/data/test235
curl-7.66.0/tests/data/test1342
curl-7.66.0/tests/data/test1240
curl-7.66.0/tests/data/test1314
curl-7.66.0/tests/data/test109
curl-7.66.0/tests/data/test1527
curl-7.66.0/tests/data/test1374
curl-7.66.0/tests/data/test1359
curl-7.66.0/tests/data/test716
curl-7.66.0/tests/data/test1147
curl-7.66.0/tests/data/test568
curl-7.66.0/tests/data/test170
curl-7.66.0/tests/data/test923
curl-7.66.0/tests/data/test914
curl-7.66.0/tests/data/test599
curl-7.66.0/tests/data/test2073
curl-7.66.0/tests/data/test124
curl-7.66.0/tests/data/test187
curl-7.66.0/tests/data/test924
curl-7.66.0/tests/data/test604
curl-7.66.0/tests/data/test886
curl-7.66.0/tests/data/test533
curl-7.66.0/tests/data/test1117
curl-7.66.0/tests/data/test851
curl-7.66.0/tests/data/test1702
curl-7.66.0/tests/data/test163
curl-7.66.0/tests/data/test580
curl-7.66.0/tests/data/test232
curl-7.66.0/tests/data/test1559
curl-7.66.0/tests/data/test1449
curl-7.66.0/tests/data/test596
curl-7.66.0/tests/data/test941
curl-7.66.0/tests/data/test1379
curl-7.66.0/tests/data/test208
curl-7.66.0/tests/data/test827
curl-7.66.0/tests/data/test107
curl-7.66.0/tests/data/test948
curl-7.66.0/tests/data/test102
curl-7.66.0/tests/data/test98
curl-7.66.0/tests/data/test112
curl-7.66.0/tests/data/test892
curl-7.66.0/tests/data/test1304
curl-7.66.0/tests/data/test1592
curl-7.66.0/tests/data/test556
curl-7.66.0/tests/data/test1290
curl-7.66.0/tests/data/test503
curl-7.66.0/tests/data/test16
curl-7.66.0/tests/data/test1239
curl-7.66.0/tests/data/test137
curl-7.66.0/tests/data/test1561
curl-7.66.0/tests/data/test131
curl-7.66.0/tests/data/test1621
curl-7.66.0/tests/data/test909
curl-7.66.0/tests/data/test1105
curl-7.66.0/tests/data/test1173
curl-7.66.0/tests/data/test2054
curl-7.66.0/tests/data/test151
curl-7.66.0/tests/data/test543
curl-7.66.0/tests/data/test1554
curl-7.66.0/tests/data/test1282
curl-7.66.0/tests/data/test928
curl-7.66.0/tests/data/test855
curl-7.66.0/tests/data/test1654
curl-7.66.0/tests/data/test572
curl-7.66.0/tests/data/test2057
curl-7.66.0/tests/data/test1161
curl-7.66.0/tests/data/test929
curl-7.66.0/tests/data/test1158
curl-7.66.0/tests/data/test514
curl-7.66.0/tests/data/test637
curl-7.66.0/tests/data/test588
curl-7.66.0/tests/data/test1329
curl-7.66.0/tests/data/test706
curl-7.66.0/tests/data/test156
curl-7.66.0/tests/data/test2003
curl-7.66.0/tests/data/test134
curl-7.66.0/tests/data/test1289
curl-7.66.0/tests/data/test314
curl-7.66.0/tests/data/test1064
curl-7.66.0/tests/data/test561
curl-7.66.0/tests/data/test839
curl-7.66.0/tests/data/test96
curl-7.66.0/tests/data/test1113
curl-7.66.0/tests/data/test1653
curl-7.66.0/tests/data/test702
curl-7.66.0/tests/data/test500
curl-7.66.0/tests/data/test1006
curl-7.66.0/tests/data/test1222
curl-7.66.0/tests/data/test1077
curl-7.66.0/tests/data/test1107
curl-7.66.0/tests/data/test80
curl-7.66.0/tests/data/test713
curl-7.66.0/tests/data/test874
curl-7.66.0/tests/data/test937
curl-7.66.0/tests/data/test1331
curl-7.66.0/tests/data/test1234
curl-7.66.0/tests/data/test1453
curl-7.66.0/tests/data/test587
curl-7.66.0/tests/data/test255
curl-7.66.0/tests/data/test1511
curl-7.66.0/tests/data/test15
curl-7.66.0/tests/data/test2024
curl-7.66.0/tests/data/test1400
curl-7.66.0/tests/data/test59
curl-7.66.0/tests/data/test206
curl-7.66.0/tests/data/test256
curl-7.66.0/tests/data/test1335
curl-7.66.0/tests/data/test142
curl-7.66.0/tests/data/test50
curl-7.66.0/tests/data/test186
curl-7.66.0/tests/data/test1446
curl-7.66.0/tests/data/test1312
curl-7.66.0/tests/data/test1441
curl-7.66.0/tests/data/test2034
curl-7.66.0/tests/data/test1341
curl-7.66.0/tests/data/test335
curl-7.66.0/tests/data/test501
curl-7.66.0/tests/data/test617
curl-7.66.0/tests/data/test1038
curl-7.66.0/tests/data/test635
curl-7.66.0/tests/data/test400
curl-7.66.0/tests/data/test1443
curl-7.66.0/tests/data/test579
curl-7.66.0/tests/data/test623
curl-7.66.0/tests/data/test1413
curl-7.66.0/tests/data/test67
curl-7.66.0/tests/data/test228
curl-7.66.0/tests/data/test1068
curl-7.66.0/tests/data/test273
curl-7.66.0/tests/data/test203
curl-7.66.0/tests/data/test43
curl-7.66.0/tests/data/test506
curl-7.66.0/tests/data/test269
curl-7.66.0/tests/data/test1091
curl-7.66.0/tests/data/test653
curl-7.66.0/tests/data/test1146
curl-7.66.0/tests/data/test402
curl-7.66.0/tests/data/test912
curl-7.66.0/tests/data/test1253
curl-7.66.0/tests/data/test1405
curl-7.66.0/tests/data/test1513
curl-7.66.0/tests/data/test1018
curl-7.66.0/tests/data/test819
curl-7.66.0/tests/data/test1418
curl-7.66.0/tests/data/test204
curl-7.66.0/tests/data/test1406
curl-7.66.0/tests/data/test231
curl-7.66.0/tests/data/test1252
curl-7.66.0/tests/data/test2008
curl-7.66.0/tests/data/test1311
curl-7.66.0/tests/data/test1560
curl-7.66.0/tests/data/test1533
curl-7.66.0/tests/data/test566
curl-7.66.0/tests/data/test1201
curl-7.66.0/tests/data/test1351
curl-7.66.0/tests/data/test1060
curl-7.66.0/tests/data/test260
curl-7.66.0/tests/data/test1436
curl-7.66.0/tests/data/test1004
curl-7.66.0/tests/data/test173
curl-7.66.0/tests/data/test52
curl-7.66.0/tests/data/test931
curl-7.66.0/tests/data/test289
curl-7.66.0/tests/data/test1315
curl-7.66.0/tests/data/test324
curl-7.66.0/tests/data/test1364
curl-7.66.0/tests/data/test1445
curl-7.66.0/tests/data/test1391
curl-7.66.0/tests/data/test1281
curl-7.66.0/tests/data/test502
curl-7.66.0/tests/data/test642
curl-7.66.0/tests/data/test1229
curl-7.66.0/tests/data/test711
curl-7.66.0/tests/data/test524
curl-7.66.0/tests/data/test563
curl-7.66.0/tests/data/test296
curl-7.66.0/tests/data/test274
curl-7.66.0/tests/data/test641
curl-7.66.0/tests/data/test64
curl-7.66.0/tests/data/test552
curl-7.66.0/tests/data/test20
curl-7.66.0/tests/data/test1265
curl-7.66.0/tests/data/test1002
curl-7.66.0/tests/data/test1020
curl-7.66.0/tests/data/test1287
curl-7.66.0/tests/data/test2006
curl-7.66.0/tests/data/test1551
curl-7.66.0/tests/data/test1435
curl-7.66.0/tests/data/test1404
curl-7.66.0/tests/data/test152
curl-7.66.0/tests/data/test60
curl-7.66.0/tests/data/test1501
curl-7.66.0/tests/data/test525
curl-7.66.0/tests/data/test291
curl-7.66.0/tests/data/test1555
curl-7.66.0/tests/data/test507
curl-7.66.0/tests/data/test125
curl-7.66.0/tests/data/test1369
curl-7.66.0/tests/data/test145
curl-7.66.0/tests/data/test1410
curl-7.66.0/tests/data/test859
curl-7.66.0/tests/data/test91
curl-7.66.0/tests/data/test56
curl-7.66.0/tests/data/test817
curl-7.66.0/tests/data/test842
curl-7.66.0/tests/data/test82
curl-7.66.0/tests/data/test1416
curl-7.66.0/tests/data/test1454
curl-7.66.0/tests/data/test2065
curl-7.66.0/tests/data/test1123
curl-7.66.0/tests/data/test305
curl-7.66.0/tests/data/test611
curl-7.66.0/tests/data/test1261
curl-7.66.0/tests/data/test1231
curl-7.66.0/tests/data/test1139
curl-7.66.0/tests/data/test252
curl-7.66.0/tests/data/test521
curl-7.66.0/tests/data/test194
curl-7.66.0/tests/data/test1900
curl-7.66.0/tests/data/test1403
curl-7.66.0/tests/data/test1224
curl-7.66.0/tests/data/test1212
curl-7.66.0/tests/data/test1140
curl-7.66.0/tests/data/test640
curl-7.66.0/tests/data/test1381
curl-7.66.0/tests/data/test1082
curl-7.66.0/tests/data/test1103
curl-7.66.0/tests/data/test1450
curl-7.66.0/tests/data/test1904
curl-7.66.0/tests/data/test573
curl-7.66.0/tests/data/test518
curl-7.66.0/tests/data/test141
curl-7.66.0/tests/data/test1260
curl-7.66.0/tests/data/test1218
curl-7.66.0/tests/data/test282
curl-7.66.0/tests/data/test511
curl-7.66.0/tests/data/test1085
curl-7.66.0/tests/data/test356
curl-7.66.0/tests/data/test1101
curl-7.66.0/tests/data/test1557
curl-7.66.0/tests/data/test210
curl-7.66.0/tests/data/test68
curl-7.66.0/tests/data/test1308
curl-7.66.0/tests/data/test654
curl-7.66.0/tests/data/test936
curl-7.66.0/tests/data/test1552
curl-7.66.0/tests/data/test1163
curl-7.66.0/tests/data/test527
curl-7.66.0/tests/data/test529
curl-7.66.0/tests/data/test2071
curl-7.66.0/tests/data/test300
curl-7.66.0/tests/data/test2059
curl-7.66.0/tests/data/test2068
curl-7.66.0/tests/data/test1249
curl-7.66.0/tests/data/test1306
curl-7.66.0/tests/data/test24
curl-7.66.0/tests/data/test808
curl-7.66.0/tests/data/test1228
curl-7.66.0/tests/data/test1023
curl-7.66.0/tests/data/test539
curl-7.66.0/tests/data/test1227
curl-7.66.0/tests/data/test1343
curl-7.66.0/tests/data/test1264
curl-7.66.0/tests/data/test2046
curl-7.66.0/tests/data/test302
curl-7.66.0/tests/data/test505
curl-7.66.0/tests/data/test1440
curl-7.66.0/tests/data/test185
curl-7.66.0/tests/data/test2072
curl-7.66.0/tests/data/test1354
curl-7.66.0/tests/data/test2011
curl-7.66.0/tests/data/test1080
curl-7.66.0/tests/data/test820
curl-7.66.0/tests/data/test234
curl-7.66.0/tests/data/test1288
curl-7.66.0/tests/data/test528
curl-7.66.0/tests/data/test1
curl-7.66.0/tests/data/test2049
curl-7.66.0/tests/data/test1319
curl-7.66.0/tests/data/test1102
curl-7.66.0/tests/data/test53
curl-7.66.0/tests/data/test548
curl-7.66.0/tests/data/test1602
curl-7.66.0/tests/data/test171
curl-7.66.0/tests/data/test822
curl-7.66.0/tests/data/test947
curl-7.66.0/tests/data/test162
curl-7.66.0/tests/data/test28
curl-7.66.0/tests/data/test1110
curl-7.66.0/tests/data/test932
curl-7.66.0/tests/data/test516
curl-7.66.0/tests/data/test1050
curl-7.66.0/tests/data/test113
curl-7.66.0/tests/data/test877
curl-7.66.0/tests/data/test513
curl-7.66.0/tests/data/test549
curl-7.66.0/tests/data/test1035
curl-7.66.0/tests/data/test551
curl-7.66.0/tests/data/test276
curl-7.66.0/tests/data/test1321
curl-7.66.0/tests/data/test1504
curl-7.66.0/tests/data/test1061
curl-7.66.0/tests/data/test241
curl-7.66.0/tests/data/test801
curl-7.66.0/tests/data/test1409
curl-7.66.0/tests/data/test129
curl-7.66.0/tests/data/test2002
curl-7.66.0/tests/data/test1069
curl-7.66.0/tests/data/test603
curl-7.66.0/tests/data/test308
curl-7.66.0/tests/data/test1043
curl-7.66.0/tests/data/test2074
curl-7.66.0/tests/data/test557
curl-7.66.0/tests/data/test891
curl-7.66.0/tests/data/test2050
curl-7.66.0/tests/data/test644
curl-7.66.0/tests/data/test865
curl-7.66.0/tests/data/test2013
curl-7.66.0/tests/data/test1505
curl-7.66.0/tests/data/test856
curl-7.66.0/tests/data/test1014
curl-7.66.0/tests/data/test200
curl-7.66.0/tests/data/test534
curl-7.66.0/tests/data/test609
curl-7.66.0/tests/data/test104
curl-7.66.0/tests/data/test116
curl-7.66.0/tests/data/test2033
curl-7.66.0/tests/data/test310
curl-7.66.0/tests/data/test140
curl-7.66.0/tests/data/test1065
curl-7.66.0/tests/data/test1417
curl-7.66.0/tests/data/test2019
curl-7.66.0/tests/data/test110
curl-7.66.0/tests/data/test1362
curl-7.66.0/tests/data/test575
curl-7.66.0/tests/data/test520
curl-7.66.0/tests/data/test123
curl-7.66.0/tests/data/test1594
curl-7.66.0/tests/data/test74
curl-7.66.0/tests/data/test23
curl-7.66.0/tests/data/test902
curl-7.66.0/tests/data/test1356
curl-7.66.0/tests/data/test213
curl-7.66.0/tests/data/test2056
curl-7.66.0/tests/data/test1506
curl-7.66.0/tests/data/test1801
curl-7.66.0/tests/data/test198
curl-7.66.0/tests/data/test292
curl-7.66.0/tests/data/test1042
curl-7.66.0/tests/data/test266
curl-7.66.0/tests/data/test871
curl-7.66.0/tests/data/test900
curl-7.66.0/tests/data/test47
curl-7.66.0/tests/data/test221
curl-7.66.0/tests/data/test1902
curl-7.66.0/tests/data/test812
curl-7.66.0/tests/data/test1115
curl-7.66.0/tests/data/test1164
curl-7.66.0/tests/data/test715
curl-7.66.0/tests/data/test2016
curl-7.66.0/tests/data/test183
curl-7.66.0/tests/data/test1251
curl-7.66.0/tests/data/test1033
curl-7.66.0/tests/data/test330
curl-7.66.0/tests/data/test121
curl-7.66.0/tests/data/test1106
curl-7.66.0/tests/data/test352
curl-7.66.0/tests/data/test616
curl-7.66.0/tests/data/test1015
curl-7.66.0/tests/data/test1162
curl-7.66.0/tests/data/test1122
curl-7.66.0/tests/data/test1432
curl-7.66.0/tests/data/test246
curl-7.66.0/tests/data/test608
curl-7.66.0/tests/data/test1044
curl-7.66.0/tests/data/test1601
curl-7.66.0/tests/data/test607
curl-7.66.0/tests/data/test943
curl-7.66.0/tests/data/test606
curl-7.66.0/tests/data/test1421
curl-7.66.0/tests/data/test85
curl-7.66.0/tests/data/test40
curl-7.66.0/tests/data/test1399
curl-7.66.0/tests/data/test882
curl-7.66.0/tests/data/test848
curl-7.66.0/tests/data/test294
curl-7.66.0/tests/data/test2004
curl-7.66.0/tests/data/test37
curl-7.66.0/tests/data/test1305
curl-7.66.0/tests/data/test45
curl-7.66.0/tests/data/test517
curl-7.66.0/tests/data/test1521
curl-7.66.0/tests/data/test2036
curl-7.66.0/tests/data/test1344
curl-7.66.0/tests/data/test328
curl-7.66.0/tests/data/test18
curl-7.66.0/tests/data/test1439
curl-7.66.0/tests/data/test101
curl-7.66.0/tests/data/test633
curl-7.66.0/tests/data/test1300
curl-7.66.0/tests/data/test646
curl-7.66.0/tests/data/test1025
curl-7.66.0/tests/data/test3001
curl-7.66.0/tests/data/test1346
curl-7.66.0/tests/data/test1263
curl-7.66.0/tests/data/test1136
curl-7.66.0/tests/data/test117
curl-7.66.0/tests/data/test522
curl-7.66.0/tests/data/test887
curl-7.66.0/tests/data/test2025
curl-7.66.0/tests/data/test2052
curl-7.66.0/tests/data/test2075
curl-7.66.0/tests/data/test648
curl-7.66.0/tests/data/test136
curl-7.66.0/tests/data/test58
curl-7.66.0/tests/data/test582
curl-7.66.0/tests/data/test1154
curl-7.66.0/tests/data/test1330
curl-7.66.0/tests/data/test2020
curl-7.66.0/tests/data/test1205
curl-7.66.0/tests/data/test25
curl-7.66.0/tests/data/test148
curl-7.66.0/tests/data/test262
curl-7.66.0/tests/data/test309
curl-7.66.0/tests/data/test1220
curl-7.66.0/tests/data/test220
curl-7.66.0/tests/data/test1437
curl-7.66.0/tests/data/test800
curl-7.66.0/tests/data/test2031
curl-7.66.0/tests/data/test265
curl-7.66.0/tests/data/test355
curl-7.66.0/tests/data/test189
curl-7.66.0/tests/data/test881
curl-7.66.0/tests/data/test103
curl-7.66.0/tests/data/test1387
curl-7.66.0/tests/data/test950
curl-7.66.0/tests/data/test1535
curl-7.66.0/tests/data/test559
curl-7.66.0/tests/data/test2014
curl-7.66.0/tests/data/test1215
curl-7.66.0/tests/data/test1112
curl-7.66.0/tests/data/test218
curl-7.66.0/tests/data/test1030
curl-7.66.0/tests/data/test1156
curl-7.66.0/tests/data/test254
curl-7.66.0/tests/data/test118
curl-7.66.0/tests/data/test2078
curl-7.66.0/tests/data/test48
curl-7.66.0/tests/data/test1529
curl-7.66.0/tests/data/test212
curl-7.66.0/tests/data/test1651
curl-7.66.0/tests/data/test1438
curl-7.66.0/tests/data/test918
curl-7.66.0/tests/data/test1280
curl-7.66.0/tests/data/test2045
curl-7.66.0/tests/data/test2027
curl-7.66.0/tests/data/test315
curl-7.66.0/tests/data/test1419
curl-7.66.0/tests/data/test119
curl-7.66.0/tests/data/test2022
curl-7.66.0/tests/data/test1375
curl-7.66.0/tests/data/test2051
curl-7.66.0/tests/data/test647
curl-7.66.0/tests/data/test284
curl-7.66.0/tests/data/test181
curl-7.66.0/tests/data/test2044
curl-7.66.0/tests/data/test207
curl-7.66.0/tests/data/test217
curl-7.66.0/tests/data/test1338
curl-7.66.0/tests/data/test1326
curl-7.66.0/tests/data/test319
curl-7.66.0/tests/data/test2066
curl-7.66.0/tests/data/test656
curl-7.66.0/tests/data/test229
curl-7.66.0/tests/data/test660
curl-7.66.0/tests/data/test75
curl-7.66.0/tests/data/test1048
curl-7.66.0/tests/data/test1268
curl-7.66.0/tests/data/test353
curl-7.66.0/tests/data/test154
curl-7.66.0/tests/data/test595
curl-7.66.0/tests/data/test1608
curl-7.66.0/tests/data/test1124
curl-7.66.0/tests/data/test1081
curl-7.66.0/tests/data/test1407
curl-7.66.0/tests/data/test838
curl-7.66.0/tests/data/test589
curl-7.66.0/tests/data/test862
curl-7.66.0/tests/data/test31
curl-7.66.0/tests/data/test1350
curl-7.66.0/tests/data/test949
curl-7.66.0/tests/data/test2047
curl-7.66.0/tests/data/test1238
curl-7.66.0/tests/data/test1119
curl-7.66.0/tests/data/test1165
curl-7.66.0/tests/data/test244
curl-7.66.0/tests/data/test815
curl-7.66.0/tests/data/test1248
curl-7.66.0/tests/data/test574
curl-7.66.0/tests/data/test1200
curl-7.66.0/tests/data/test1457
curl-7.66.0/tests/data/test2076
curl-7.66.0/tests/data/test1605
curl-7.66.0/tests/data/test1424
curl-7.66.0/tests/data/test1242
curl-7.66.0/tests/data/test1317
curl-7.66.0/tests/data/test331
curl-7.66.0/tests/data/test1378
curl-7.66.0/tests/data/test307
curl-7.66.0/tests/data/test2015
curl-7.66.0/tests/data/test19
curl-7.66.0/tests/data/test1250
curl-7.66.0/tests/data/test858
curl-7.66.0/tests/data/test250
curl-7.66.0/tests/data/test1428
curl-7.66.0/tests/data/test1034
curl-7.66.0/tests/data/test1325
curl-7.66.0/tests/data/test2061
curl-7.66.0/tests/data/test65
curl-7.66.0/tests/data/test184
curl-7.66.0/tests/data/test81
curl-7.66.0/tests/data/test576
curl-7.66.0/tests/data/test1236
curl-7.66.0/tests/data/test2030
curl-7.66.0/tests/data/test293
curl-7.66.0/tests/data/test829
curl-7.66.0/tests/data/test321
curl-7.66.0/tests/data/test1232
curl-7.66.0/tests/data/test807
curl-7.66.0/tests/data/test1394
curl-7.66.0/tests/data/test840
curl-7.66.0/tests/data/test704
curl-7.66.0/tests/data/test267
curl-7.66.0/tests/data/test73
curl-7.66.0/tests/data/test57
curl-7.66.0/tests/data/test2012
curl-7.66.0/tests/data/test1093
curl-7.66.0/tests/data/test1126
curl-7.66.0/tests/data/test1208
curl-7.66.0/tests/data/test643
curl-7.66.0/tests/data/test327
curl-7.66.0/tests/data/test1301
curl-7.66.0/tests/data/test1057
curl-7.66.0/tests/data/test1395
curl-7.66.0/tests/data/test953
curl-7.66.0/tests/data/test532
curl-7.66.0/tests/data/test89
curl-7.66.0/tests/data/test2017
curl-7.66.0/tests/data/test224
curl-7.66.0/tests/data/test818
curl-7.66.0/tests/data/test70
curl-7.66.0/tests/data/test1172
curl-7.66.0/tests/data/test199
curl-7.66.0/tests/data/test1130
curl-7.66.0/tests/data/test1285
curl-7.66.0/tests/data/test1011
curl-7.66.0/tests/data/test554
curl-7.66.0/tests/data/test1039
curl-7.66.0/tests/data/test1318
curl-7.66.0/tests/data/test2100
curl-7.66.0/tests/data/test1526
curl-7.66.0/tests/data/test581
curl-7.66.0/tests/data/test1345
curl-7.66.0/tests/data/test1332
curl-7.66.0/tests/data/test14
curl-7.66.0/tests/data/test547
curl-7.66.0/tests/data/test1021
curl-7.66.0/tests/data/test193
curl-7.66.0/tests/data/test504
curl-7.66.0/tests/data/test1536
curl-7.66.0/tests/data/test236
curl-7.66.0/tests/data/test275
curl-7.66.0/tests/data/test1160
curl-7.66.0/tests/data/test802
curl-7.66.0/tests/data/test2060
curl-7.66.0/tests/data/test1600
curl-7.66.0/tests/data/test553
curl-7.66.0/tests/data/test2063
curl-7.66.0/tests/data/test27
curl-7.66.0/tests/data/test2000
curl-7.66.0/tests/data/test809
curl-7.66.0/tests/data/test172
curl-7.66.0/tests/data/test1426
curl-7.66.0/tests/data/test174
curl-7.66.0/tests/data/test1531
curl-7.66.0/tests/data/test318
curl-7.66.0/tests/data/test509
curl-7.66.0/tests/data/test71
curl-7.66.0/tests/data/test1152
curl-7.66.0/tests/data/test705
curl-7.66.0/tests/data/test1129
curl-7.66.0/tests/data/test1225
curl-7.66.0/tests/data/test849
curl-7.66.0/tests/data/test832
curl-7.66.0/tests/data/test628
curl-7.66.0/tests/data/test571
curl-7.66.0/tests/data/test558
curl-7.66.0/tests/data/test1334
curl-7.66.0/tests/data/test1026
curl-7.66.0/tests/data/test128
curl-7.66.0/tests/data/test1425
curl-7.66.0/tests/data/test920
curl-7.66.0/tests/data/test618
curl-7.66.0/tests/data/test332
curl-7.66.0/tests/data/test350
curl-7.66.0/tests/data/test2053
curl-7.66.0/tests/data/test1266
curl-7.66.0/tests/data/test913
curl-7.66.0/tests/data/test569
curl-7.66.0/tests/data/test160
curl-7.66.0/tests/data/test1442
curl-7.66.0/tests/data/test2005
curl-7.66.0/tests/data/test1336
curl-7.66.0/tests/data/test44
curl-7.66.0/tests/data/test876
curl-7.66.0/tests/data/test1452
curl-7.66.0/tests/data/test1071
curl-7.66.0/tests/data/test1214
curl-7.66.0/tests/data/test1388
curl-7.66.0/tests/data/test1360
curl-7.66.0/tests/data/test1079
curl-7.66.0/tests/data/test1455
curl-7.66.0/tests/data/test94
curl-7.66.0/tests/data/test166
curl-7.66.0/tests/data/test1217
curl-7.66.0/tests/data/test1528
curl-7.66.0/tests/data/test1132
curl-7.66.0/tests/data/test701
curl-7.66.0/tests/data/test1012
curl-7.66.0/tests/data/test1444
curl-7.66.0/tests/data/test408
curl-7.66.0/tests/data/test1221
curl-7.66.0/tests/data/test2018
curl-7.66.0/tests/data/test905
curl-7.66.0/tests/data/test1604
curl-7.66.0/tests/data/test577
curl-7.66.0/tests/data/test190
curl-7.66.0/tests/data/test1392
curl-7.66.0/tests/data/test1323
curl-7.66.0/tests/data/test1145
curl-7.66.0/tests/data/test930
curl-7.66.0/tests/data/test93
curl-7.66.0/tests/data/test1153
curl-7.66.0/tests/data/test1534
curl-7.66.0/tests/data/test1009
curl-7.66.0/tests/data/test510
curl-7.66.0/tests/data/test248
curl-7.66.0/tests/data/test1150
curl-7.66.0/tests/data/test329
curl-7.66.0/tests/data/test540
curl-7.66.0/tests/data/test709
curl-7.66.0/tests/data/test77
curl-7.66.0/tests/data/test515
curl-7.66.0/tests/data/test2062
curl-7.66.0/tests/data/test1563
curl-7.66.0/tests/data/test1284
curl-7.66.0/tests/data/test1377
curl-7.66.0/tests/data/test1558
curl-7.66.0/tests/data/test1235
curl-7.66.0/tests/data/test1134
curl-7.66.0/tests/data/test1456
curl-7.66.0/tests/data/test875
curl-7.66.0/tests/data/test326
curl-7.66.0/tests/data/test132
curl-7.66.0/tests/data/test1327
curl-7.66.0/tests/data/test1216
curl-7.66.0/tests/data/test1298
curl-7.66.0/tests/data/test1056
curl-7.66.0/tests/data/test652
curl-7.66.0/tests/data/test115
curl-7.66.0/tests/data/test130
curl-7.66.0/tests/data/test1045
curl-7.66.0/tests/data/test1316
curl-7.66.0/tests/data/test841
curl-7.66.0/tests/data/test9
curl-7.66.0/tests/data/test906
curl-7.66.0/tests/data/test1262
curl-7.66.0/tests/data/test811
curl-7.66.0/tests/data/test1098
curl-7.66.0/tests/data/test910
curl-7.66.0/tests/data/test120
curl-7.66.0/tests/data/test903
curl-7.66.0/tests/data/test645
curl-7.66.0/tests/data/test26
curl-7.66.0/tests/data/test1532
curl-7.66.0/tests/data/test1606
curl-7.66.0/tests/data/test1063
curl-7.66.0/tests/data/test612
curl-7.66.0/tests/data/test197
curl-7.66.0/tests/data/test1149
curl-7.66.0/tests/data/test8
curl-7.66.0/tests/data/test535
curl-7.66.0/tests/data/test126
curl-7.66.0/tests/data/test1372
curl-7.66.0/tests/data/test1174
curl-7.66.0/tests/data/test1313
curl-7.66.0/tests/data/test1137
curl-7.66.0/tests/data/test1433
curl-7.66.0/tests/data/test1365
curl-7.66.0/tests/data/test1088
curl-7.66.0/tests/data/test99
curl-7.66.0/tests/data/test703
curl-7.66.0/tests/data/test325
curl-7.66.0/tests/data/test1109
curl-7.66.0/tests/data/test320
curl-7.66.0/tests/data/test2040
curl-7.66.0/tests/data/test598
curl-7.66.0/tests/data/test1097
curl-7.66.0/tests/data/test1386
curl-7.66.0/tests/data/test1219
curl-7.66.0/tests/data/test823
curl-7.66.0/tests/data/test1339
curl-7.66.0/tests/data/test926
curl-7.66.0/tests/data/test1031
curl-7.66.0/tests/data/test55
curl-7.66.0/tests/data/test1099
curl-7.66.0/tests/data/test87
curl-7.66.0/tests/data/test1340
curl-7.66.0/tests/data/test828
curl-7.66.0/tests/data/test2055
curl-7.66.0/tests/data/test277
curl-7.66.0/tests/data/test888
curl-7.66.0/tests/data/test854
curl-7.66.0/tests/data/test1299
curl-7.66.0/tests/data/test1800
curl-7.66.0/tests/data/test1652
curl-7.66.0/tests/data/test153
curl-7.66.0/tests/data/test890
curl-7.66.0/tests/data/test1114
curl-7.66.0/tests/data/test354
curl-7.66.0/tests/data/test816
curl-7.66.0/tests/data/test288
curl-7.66.0/tests/data/test1094
curl-7.66.0/tests/data/test2039
curl-7.66.0/tests/data/test90
curl-7.66.0/tests/data/test1243
curl-7.66.0/tests/data/test1361
curl-7.66.0/tests/data/CMakeLists.txt
curl-7.66.0/tests/data/test1051
curl-7.66.0/tests/data/test258
curl-7.66.0/tests/data/test610
curl-7.66.0/tests/data/test111
curl-7.66.0/tests/data/test261
curl-7.66.0/tests/data/test334
curl-7.66.0/tests/data/test92
curl-7.66.0/tests/data/test299
curl-7.66.0/tests/data/test602
curl-7.66.0/tests/data/test138
curl-7.66.0/tests/data/test1408
curl-7.66.0/tests/data/test1322
curl-7.66.0/tests/data/test340
curl-7.66.0/tests/data/test406
curl-7.66.0/tests/data/test1333
curl-7.66.0/tests/data/test1355
curl-7.66.0/tests/data/test1047
curl-7.66.0/tests/data/test1257
curl-7.66.0/tests/data/test259
curl-7.66.0/tests/data/test21
curl-7.66.0/tests/data/test155
curl-7.66.0/tests/data/test834
curl-7.66.0/tests/data/test1383
curl-7.66.0/tests/data/test1213
curl-7.66.0/tests/data/test3
curl-7.66.0/tests/data/test1384
curl-7.66.0/tests/data/test192
curl-7.66.0/tests/data/test263
curl-7.66.0/tests/data/test1121
curl-7.66.0/tests/data/test36
curl-7.66.0/tests/data/test230
curl-7.66.0/tests/data/test1135
curl-7.66.0/tests/data/test1382
curl-7.66.0/tests/data/test2048
curl-7.66.0/tests/data/test404
curl-7.66.0/tests/data/test925
curl-7.66.0/tests/data/test66
curl-7.66.0/tests/data/test2080
curl-7.66.0/tests/data/test167
curl-7.66.0/tests/data/test1422
curl-7.66.0/tests/data/test620
curl-7.66.0/tests/data/test1380
curl-7.66.0/tests/data/test1447
curl-7.66.0/tests/data/test1151
curl-7.66.0/tests/data/test226
curl-7.66.0/tests/data/test1053
curl-7.66.0/tests/data/test1510
curl-7.66.0/tests/data/test201
curl-7.66.0/tests/data/test845
curl-7.66.0/tests/data/test105
curl-7.66.0/tests/data/test84
curl-7.66.0/tests/data/test1032
curl-7.66.0/tests/data/test143
curl-7.66.0/tests/data/test62
curl-7.66.0/tests/data/test1458
curl-7.66.0/tests/data/test150
curl-7.66.0/tests/data/test2001
curl-7.66.0/tests/data/test2042
curl-7.66.0/tests/data/test1368
curl-7.66.0/tests/data/test83
curl-7.66.0/tests/data/test78
curl-7.66.0/tests/data/test1411
curl-7.66.0/tests/data/test1500
curl-7.66.0/tests/data/test650
curl-7.66.0/tests/data/test878
curl-7.66.0/tests/data/test42
curl-7.66.0/tests/data/test622
curl-7.66.0/tests/data/test409
curl-7.66.0/tests/data/test157
curl-7.66.0/tests/data/test287
curl-7.66.0/tests/data/test11
curl-7.66.0/tests/data/test592
curl-7.66.0/tests/data/test636
curl-7.66.0/tests/data/test885
curl-7.66.0/tests/data/test1067
curl-7.66.0/tests/data/test323
curl-7.66.0/tests/data/test2041
curl-7.66.0/tests/data/test1059
curl-7.66.0/tests/data/test1070
curl-7.66.0/tests/data/test1254
curl-7.66.0/tests/data/test861
curl-7.66.0/tests/data/test312
curl-7.66.0/tests/data/test805
curl-7.66.0/tests/data/test1007
curl-7.66.0/tests/data/test178
curl-7.66.0/tests/data/test1431
curl-7.66.0/tests/data/test403
curl-7.66.0/tests/data/test710
curl-7.66.0/tests/data/test164
curl-7.66.0/tests/data/test630
curl-7.66.0/tests/data/test76
curl-7.66.0/tests/data/test72
curl-7.66.0/tests/data/test1590
curl-7.66.0/tests/data/test893
curl-7.66.0/tests/data/test1076
curl-7.66.0/tests/data/test868
curl-7.66.0/tests/data/test1502
curl-7.66.0/tests/data/test114
curl-7.66.0/tests/data/test245
curl-7.66.0/tests/data/test922
curl-7.66.0/tests/data/test2077
curl-7.66.0/tests/data/test542
curl-7.66.0/tests/data/test1148
curl-7.66.0/tests/data/test1390
curl-7.66.0/tests/data/test1302
curl-7.66.0/tests/data/test1230
curl-7.66.0/tests/data/test1016
curl-7.66.0/tests/data/test405
curl-7.66.0/tests/data/test133
curl-7.66.0/tests/data/test61
curl-7.66.0/tests/data/test169
curl-7.66.0/tests/data/test1522
curl-7.66.0/tests/data/test41
curl-7.66.0/tests/data/test1905
curl-7.66.0/tests/data/test1086
curl-7.66.0/tests/data/test313
curl-7.66.0/tests/data/test179
curl-7.66.0/tests/data/test593
curl-7.66.0/tests/data/test546
curl-7.66.0/tests/data/test860
curl-7.66.0/tests/data/test215
curl-7.66.0/tests/data/test1283
curl-7.66.0/tests/data/test1402
curl-7.66.0/tests/data/test242
curl-7.66.0/tests/data/test317
curl-7.66.0/tests/data/test1223
curl-7.66.0/tests/data/test1104
curl-7.66.0/tests/data/test165
curl-7.66.0/tests/data/test1503
curl-7.66.0/tests/data/test88
curl-7.66.0/tests/data/test1155
curl-7.66.0/tests/data/test2064
curl-7.66.0/tests/data/test290
curl-7.66.0/tests/data/DISABLED
curl-7.66.0/tests/data/test1434
curl-7.66.0/tests/data/test846
curl-7.66.0/tests/data/test1556
curl-7.66.0/tests/data/test1516
curl-7.66.0/tests/data/test311
curl-7.66.0/tests/data/test1246
curl-7.66.0/tests/data/test4
curl-7.66.0/tests/data/test578
curl-7.66.0/tests/data/test1430
curl-7.66.0/tests/data/test223
curl-7.66.0/tests/data/test864
curl-7.66.0/tests/data/test1143
curl-7.66.0/tests/data/test1562
curl-7.66.0/tests/data/test177
curl-7.66.0/tests/data/test889
curl-7.66.0/tests/data/test211
curl-7.66.0/tests/data/test202
curl-7.66.0/tests/data/test508
curl-7.66.0/tests/data/test1131
curl-7.66.0/tests/data/test911
curl-7.66.0/tests/data/test1650
curl-7.66.0/tests/data/test13
curl-7.66.0/tests/data/test597
curl-7.66.0/tests/data/test1040
curl-7.66.0/tests/data/test17
curl-7.66.0/tests/data/test100
curl-7.66.0/tests/data/test1019
curl-7.66.0/tests/data/test833
curl-7.66.0/tests/data/test2038
curl-7.66.0/tests/data/test3000
curl-7.66.0/tests/data/test1393
curl-7.66.0/tests/data/test907
curl-7.66.0/tests/data/test944
curl-7.66.0/tests/data/test1348
curl-7.66.0/tests/data/test1303
curl-7.66.0/tests/data/test1401
curl-7.66.0/tests/data/test1055
curl-7.66.0/tests/data/test97
curl-7.66.0/tests/data/test621
curl-7.66.0/tests/data/test1700
curl-7.66.0/tests/data/test304
curl-7.66.0/tests/data/test272
curl-7.66.0/tests/data/test526
curl-7.66.0/tests/data/test629
curl-7.66.0/tests/data/test631
curl-7.66.0/tests/data/test1429
curl-7.66.0/tests/data/test1620
curl-7.66.0/tests/data/test700
curl-7.66.0/tests/data/test1210
curl-7.66.0/tests/data/test624
curl-7.66.0/tests/data/test550
curl-7.66.0/tests/data/test2037
curl-7.66.0/tests/data/test1337
curl-7.66.0/tests/data/test1607
curl-7.66.0/tests/data/test1901
curl-7.66.0/tests/data/test538
curl-7.66.0/tests/data/test1054
curl-7.66.0/tests/data/test147
curl-7.66.0/tests/data/test940
curl-7.66.0/tests/data/test1358
curl-7.66.0/tests/data/test38
curl-7.66.0/tests/data/test626
curl-7.66.0/tests/data/test1509
curl-7.66.0/tests/data/test1138
curl-7.66.0/tests/data/test934
curl-7.66.0/tests/data/test565
curl-7.66.0/tests/data/test867
curl-7.66.0/tests/data/test240
curl-7.66.0/tests/data/test1078
curl-7.66.0/tests/data/test586
curl-7.66.0/tests/data/test544
curl-7.66.0/tests/data/test12
curl-7.66.0/tests/data/test209
curl-7.66.0/tests/data/test222
curl-7.66.0/tests/data/test708
curl-7.66.0/tests/data/test872
curl-7.66.0/tests/data/test939
curl-7.66.0/tests/data/test1001
curl-7.66.0/tests/data/test54
curl-7.66.0/tests/data/test280
curl-7.66.0/tests/data/test1530
curl-7.66.0/tests/data/test1324
curl-7.66.0/tests/data/test519
curl-7.66.0/tests/data/test1010
curl-7.66.0/tests/data/test251
curl-7.66.0/tests/data/test847
curl-7.66.0/tests/data/test1245
curl-7.66.0/tests/data/test1309
curl-7.66.0/tests/data/test1310
curl-7.66.0/tests/data/test401
curl-7.66.0/tests/data/test1291
curl-7.66.0/tests/data/test564
curl-7.66.0/tests/data/test537
curl-7.66.0/tests/data/test268
curl-7.66.0/tests/data/Makefile.am
curl-7.66.0/tests/data/test1037
curl-7.66.0/tests/data/Makefile.in
curl-7.66.0/tests/data/test1029
curl-7.66.0/tests/data/test1906
curl-7.66.0/tests/data/test188
curl-7.66.0/tests/data/test614
curl-7.66.0/tests/data/test95
curl-7.66.0/tests/data/test144
curl-7.66.0/tests/data/test219
curl-7.66.0/tests/data/test1108
curl-7.66.0/tests/data/test49
curl-7.66.0/tests/data/test904
curl-7.66.0/tests/data/test935
curl-7.66.0/tests/data/test32
curl-7.66.0/tests/data/test1087
curl-7.66.0/tests/data/test541
curl-7.66.0/tests/data/test1520
curl-7.66.0/tests/data/test1125
curl-7.66.0/tests/data/test921
curl-7.66.0/tests/data/test634
curl-7.66.0/tests/data/test1448
curl-7.66.0/tests/data/test7
curl-7.66.0/tests/data/test2043
curl-7.66.0/tests/data/test2021
curl-7.66.0/tests/data/test873
curl-7.66.0/tests/data/test2069
curl-7.66.0/tests/data/test301
curl-7.66.0/tests/data/test1207
curl-7.66.0/tests/data/test1096
curl-7.66.0/tests/data/test1170
curl-7.66.0/tests/data/test1320
curl-7.66.0/tests/data/test869
curl-7.66.0/tests/data/test316
curl-7.66.0/tests/data/test122
curl-7.66.0/tests/data/test253
curl-7.66.0/tests/data/test1286
curl-7.66.0/tests/data/test283
curl-7.66.0/tests/data/test1052
curl-7.66.0/tests/data/test394
curl-7.66.0/tests/data/test270
curl-7.66.0/tests/data/test863
curl-7.66.0/tests/data/test2
curl-7.66.0/tests/data/test613
curl-7.66.0/tests/data/test1017
curl-7.66.0/tests/data/test1058
curl-7.66.0/tests/data/test850
curl-7.66.0/tests/data/test205
curl-7.66.0/tests/data/test247
curl-7.66.0/tests/data/test135
curl-7.66.0/tests/data/test2029
curl-7.66.0/tests/data/test2032
curl-7.66.0/tests/data/test531
curl-7.66.0/tests/data/test1412
curl-7.66.0/tests/data/test1206
curl-7.66.0/tests/data/test1095
curl-7.66.0/tests/data/test1241
curl-7.66.0/tests/data/test239
curl-7.66.0/tests/data/test1209
curl-7.66.0/tests/data/test243
curl-7.66.0/tests/data/test1083
curl-7.66.0/tests/data/test585
curl-7.66.0/tests/data/test639
curl-7.66.0/tests/data/test824
curl-7.66.0/tests/data/test632
curl-7.66.0/tests/data/test63
curl-7.66.0/tests/data/test1211
curl-7.66.0/tests/data/test938
curl-7.66.0/tests/data/test39
curl-7.66.0/tests/data/test1357
curl-7.66.0/tests/data/test844
curl-7.66.0/tests/data/test233
curl-7.66.0/tests/data/test1518
curl-7.66.0/tests/data/test10
curl-7.66.0/tests/data/test1507
curl-7.66.0/tests/data/test108
curl-7.66.0/tests/data/test942
curl-7.66.0/tests/data/test225
curl-7.66.0/tests/data/test1508
curl-7.66.0/tests/data/test1538
curl-7.66.0/tests/data/test281
curl-7.66.0/tests/data/test594
curl-7.66.0/tests/data/test1090
curl-7.66.0/tests/data/test2009
curl-7.66.0/tests/data/test175
curl-7.66.0/tests/data/test1903
curl-7.66.0/tests/data/test5
curl-7.66.0/tests/data/test69
curl-7.66.0/tests/data/test658
curl-7.66.0/tests/data/test1385
curl-7.66.0/tests/data/test707
curl-7.66.0/tests/data/test2028
curl-7.66.0/tests/data/test562
curl-7.66.0/tests/data/test1396
curl-7.66.0/tests/data/test883
curl-7.66.0/tests/data/test1256
curl-7.66.0/tests/data/test570
curl-7.66.0/tests/data/test29
curl-7.66.0/tests/data/test619
curl-7.66.0/tests/data/test1049
curl-7.66.0/tests/data/test583
curl-7.66.0/tests/data/test714
curl-7.66.0/tests/data/test1128
curl-7.66.0/tests/data/test916
curl-7.66.0/tests/data/test395
curl-7.66.0/tests/data/test298
curl-7.66.0/tests/data/test951
curl-7.66.0/tests/data/test835
curl-7.66.0/tests/data/test830
curl-7.66.0/tests/data/test1013
curl-7.66.0/tests/data/test1171
curl-7.66.0/tests/data/test1127
curl-7.66.0/tests/data/test127
curl-7.66.0/tests/data/test1005
curl-7.66.0/tests/data/test1028
curl-7.66.0/tests/data/test853
curl-7.66.0/tests/data/test1144
curl-7.66.0/tests/data/test1157
curl-7.66.0/tests/data/test333
curl-7.66.0/tests/data/test946
curl-7.66.0/tests/data/test1366
curl-7.66.0/tests/data/test161
curl-7.66.0/tests/data/test1062
curl-7.66.0/tests/data/test555
curl-7.66.0/tests/data/test1515
curl-7.66.0/tests/data/test952
curl-7.66.0/tests/data/test837
curl-7.66.0/tests/data/test30
curl-7.66.0/tests/data/test901
curl-7.66.0/tests/data/test1066
curl-7.66.0/tests/data/test1525
curl-7.66.0/tests/data/test6
curl-7.66.0/tests/data/test1084
curl-7.66.0/tests/data/test836
curl-7.66.0/tests/data/test1398
curl-7.66.0/tests/data/test191
curl-7.66.0/tests/data/test1415
curl-7.66.0/tests/data/test303
curl-7.66.0/tests/data/test1328
curl-7.66.0/tests/data/test649
curl-7.66.0/tests/data/test139
curl-7.66.0/tests/data/test1089
curl-7.66.0/tests/data/test1269
curl-7.66.0/tests/data/test1244
curl-7.66.0/tests/data/test803
curl-7.66.0/tests/data/test560
curl-7.66.0/tests/data/test806
curl-7.66.0/tests/data/test1367
curl-7.66.0/tests/data/test852
curl-7.66.0/tests/data/test33
curl-7.66.0/tests/data/test1203
curl-7.66.0/tests/data/test1000
curl-7.66.0/tests/data/test264
curl-7.66.0/tests/data/test297
curl-7.66.0/tests/data/test615
curl-7.66.0/tests/data/test1041
curl-7.66.0/tests/data/test927
curl-7.66.0/tests/data/test2007
curl-7.66.0/tests/data/test1072
curl-7.66.0/tests/data/test35
curl-7.66.0/tests/data/test866
curl-7.66.0/tests/data/test605
curl-7.66.0/tests/data/test1363
curl-7.66.0/tests/data/test638
curl-7.66.0/tests/data/test1423
curl-7.66.0/tests/data/test1259
curl-7.66.0/tests/data/test285
curl-7.66.0/tests/data/test584
curl-7.66.0/tests/data/test279
curl-7.66.0/tests/data/test954
curl-7.66.0/tests/data/test512
curl-7.66.0/tests/data/test237
curl-7.66.0/tests/data/test1024
curl-7.66.0/tests/data/test1202
curl-7.66.0/tests/data/test600
curl-7.66.0/tests/data/test1353
curl-7.66.0/tests/data/test831
curl-7.66.0/tests/data/test176
curl-7.66.0/tests/data/test1100
curl-7.66.0/tests/data/test659
curl-7.66.0/tests/data/test195
curl-7.66.0/tests/data/test1517
curl-7.66.0/tests/data/test651
curl-7.66.0/tests/data/test1553
curl-7.66.0/tests/data/test1267
curl-7.66.0/tests/data/test271
curl-7.66.0/tests/data/test1237
curl-7.66.0/tests/data/test1537
curl-7.66.0/tests/data/test1233
curl-7.66.0/tests/data/test1519
curl-7.66.0/tests/data/test1003
curl-7.66.0/tests/data/test1609
curl-7.66.0/tests/certs/
curl-7.66.0/tests/certs/Server-localhost0h-sv.crt
curl-7.66.0/tests/certs/Server-localhost-sv.der
curl-7.66.0/tests/certs/srp-verifier-conf
curl-7.66.0/tests/certs/Server-localhost0h-sv.pub.der
curl-7.66.0/tests/certs/Server-localhost-lastSAN-sv.crt
curl-7.66.0/tests/certs/Server-localhost-sv.crt
curl-7.66.0/tests/certs/EdelCurlRoot-ca.prm
curl-7.66.0/tests/certs/Server-localhost.nn-sv.crl
curl-7.66.0/tests/certs/Server-localhost.nn-sv.pub.der
curl-7.66.0/tests/certs/Server-localhost-sv.key
curl-7.66.0/tests/certs/Server-localhost0h-sv.pub.pem
curl-7.66.0/tests/certs/Server-localhost-firstSAN-sv.pub.der
curl-7.66.0/tests/certs/EdelCurlRoot-ca.key
curl-7.66.0/tests/certs/EdelCurlRoot-ca.csr
curl-7.66.0/tests/certs/Server-localhost-firstSAN-sv.der
curl-7.66.0/tests/certs/Server-localhost.nn-sv.pem
curl-7.66.0/tests/certs/Server-localhost-firstSAN-sv.pem
curl-7.66.0/tests/certs/Server-localhost.nn-sv.prm
curl-7.66.0/tests/certs/Server-localhost-firstSAN-sv.crl
curl-7.66.0/tests/certs/Server-localhost-sv.pem
curl-7.66.0/tests/certs/Server-localhost0h-sv.der
curl-7.66.0/tests/certs/EdelCurlRoot-ca.crt
curl-7.66.0/tests/certs/Server-localhost-sv.csr
curl-7.66.0/tests/certs/Server-localhost-lastSAN-sv.der
curl-7.66.0/tests/certs/Server-localhost.nn-sv.crt
curl-7.66.0/tests/certs/EdelCurlRoot-ca.cnf
curl-7.66.0/tests/certs/Server-localhost.nn-sv.pub.pem
curl-7.66.0/tests/certs/Server-localhost-sv.pub.pem
curl-7.66.0/tests/certs/Server-localhost0h-sv.dhp
curl-7.66.0/tests/certs/Server-localhost0h-sv.crl
curl-7.66.0/tests/certs/Server-localhost0h-sv.pem
curl-7.66.0/tests/certs/srp-verifier-db
curl-7.66.0/tests/certs/Server-localhost-firstSAN-sv.pub.pem
curl-7.66.0/tests/certs/Server-localhost-lastSAN-sv.pub.pem
curl-7.66.0/tests/certs/EdelCurlRoot-ca.der
curl-7.66.0/tests/certs/scripts/
curl-7.66.0/tests/certs/scripts/genserv.sh
curl-7.66.0/tests/certs/scripts/genroot.sh
curl-7.66.0/tests/certs/scripts/Makefile.am
curl-7.66.0/tests/certs/scripts/Makefile.in
curl-7.66.0/tests/certs/Server-localhost-lastSAN-sv.pem
curl-7.66.0/tests/certs/Server-localhost-lastSAN-sv.pub.der
curl-7.66.0/tests/certs/Server-localhost-lastSAN-sv.crl
curl-7.66.0/tests/certs/Server-localhost.nn-sv.dhp
curl-7.66.0/tests/certs/Server-localhost.nn-sv.key
curl-7.66.0/tests/certs/Server-localhost0h-sv.csr
curl-7.66.0/tests/certs/Server-localhost-firstSAN-sv.key
curl-7.66.0/tests/certs/Server-localhost-lastSAN-sv.dhp
curl-7.66.0/tests/certs/Server-localhost-lastSAN-sv.csr
curl-7.66.0/tests/certs/Server-localhost.nn-sv.csr
curl-7.66.0/tests/certs/Server-localhost0h-sv.key
curl-7.66.0/tests/certs/Makefile.am
curl-7.66.0/tests/certs/Makefile.in
curl-7.66.0/tests/certs/Server-localhost-firstSAN-sv.dhp
curl-7.66.0/tests/certs/Server-localhost-firstSAN-sv.crt
curl-7.66.0/tests/certs/Server-localhost.nn-sv.der
curl-7.66.0/tests/certs/Server-localhost-sv.pub.der
curl-7.66.0/tests/certs/Server-localhost-sv.dhp
curl-7.66.0/tests/certs/Server-localhost-firstSAN-sv.csr
curl-7.66.0/tests/certs/Server-localhost0h-sv.prm
curl-7.66.0/tests/certs/Server-localhost-sv.crl
curl-7.66.0/tests/certs/Server-localhost-sv.prm
curl-7.66.0/tests/certs/EdelCurlRoot-ca.cacert
curl-7.66.0/tests/certs/Server-localhost-lastSAN-sv.key
curl-7.66.0/tests/rtspserver.pl
curl-7.66.0/tests/manpage-scan.pl
curl-7.66.0/tests/testcurl.1
curl-7.66.0/tests/symbol-scan.pl
curl-7.66.0/tests/disable-scan.pl
curl-7.66.0/tests/negtelnetserver.py
curl-7.66.0/tests/directories.pm
curl-7.66.0/tests/http2-server.pl
curl-7.66.0/tests/mem-include-scan.pl
curl-7.66.0/tests/runtests.1
curl-7.66.0/tests/ftpserver.pl
curl-7.66.0/tests/CMakeLists.txt
curl-7.66.0/tests/nroff-scan.pl
curl-7.66.0/tests/objnames-test08.sh
curl-7.66.0/tests/valgrind.pm
curl-7.66.0/tests/httpserver.pl
curl-7.66.0/tests/objnames.inc
curl-7.66.0/tests/runtests.pl
curl-7.66.0/tests/Makefile.am
curl-7.66.0/tests/Makefile.in
curl-7.66.0/tests/secureserver.pl
curl-7.66.0/tests/server/
curl-7.66.0/tests/server/server_sockaddr.h
curl-7.66.0/tests/server/tftpd.c
curl-7.66.0/tests/server/testpart.c
curl-7.66.0/tests/server/Makefile.inc
curl-7.66.0/tests/server/tftp.h
curl-7.66.0/tests/server/getpart.h
curl-7.66.0/tests/server/sws.c
curl-7.66.0/tests/server/disabled.c
curl-7.66.0/tests/server/getpart.c
curl-7.66.0/tests/server/resolve.c
curl-7.66.0/tests/server/fake_ntlm.c
curl-7.66.0/tests/server/CMakeLists.txt
curl-7.66.0/tests/server/server_setup.h
curl-7.66.0/tests/server/util.c
curl-7.66.0/tests/server/base64.pl
curl-7.66.0/tests/server/socksd.c
curl-7.66.0/tests/server/Makefile.am
curl-7.66.0/tests/server/Makefile.in
curl-7.66.0/tests/server/util.h
curl-7.66.0/tests/server/rtspd.c
curl-7.66.0/tests/server/sockfilt.c
curl-7.66.0/tests/curl_test_data.py
curl-7.66.0/tests/testcurl.pl
curl-7.66.0/tests/tftpserver.pl
curl-7.66.0/tests/unit/
curl-7.66.0/tests/unit/unit1396.c
curl-7.66.0/tests/unit/unit1650.c
curl-7.66.0/tests/unit/unit1603.c
curl-7.66.0/tests/unit/Makefile.inc
curl-7.66.0/tests/unit/curlcheck.h
curl-7.66.0/tests/unit/README
curl-7.66.0/tests/unit/unit1398.c
curl-7.66.0/tests/unit/unit1601.c
curl-7.66.0/tests/unit/unit1652.c
curl-7.66.0/tests/unit/unit1600.c
curl-7.66.0/tests/unit/unit1330.c
curl-7.66.0/tests/unit/unit1323.c
curl-7.66.0/tests/unit/unit1395.c
curl-7.66.0/tests/unit/unit1394.c
curl-7.66.0/tests/unit/unit1606.c
curl-7.66.0/tests/unit/unit1608.c
curl-7.66.0/tests/unit/unit1307.c
curl-7.66.0/tests/unit/unit1607.c
curl-7.66.0/tests/unit/unit1605.c
curl-7.66.0/tests/unit/unit1621.c
curl-7.66.0/tests/unit/unit1602.c
curl-7.66.0/tests/unit/unit1651.c
curl-7.66.0/tests/unit/unit1302.c
curl-7.66.0/tests/unit/CMakeLists.txt
curl-7.66.0/tests/unit/unit1397.c
curl-7.66.0/tests/unit/unit1304.c
curl-7.66.0/tests/unit/unit1308.c
curl-7.66.0/tests/unit/unit1309.c
curl-7.66.0/tests/unit/unit1301.c
curl-7.66.0/tests/unit/unit1305.c
curl-7.66.0/tests/unit/Makefile.am
curl-7.66.0/tests/unit/Makefile.in
curl-7.66.0/tests/unit/unit1620.c
curl-7.66.0/tests/unit/unit1654.c
curl-7.66.0/tests/unit/unit1609.c
curl-7.66.0/tests/unit/unit1653.c
curl-7.66.0/tests/unit/unit1300.c
curl-7.66.0/tests/unit/unit1399.c
curl-7.66.0/tests/unit/unit1303.c
curl-7.66.0/tests/unit/unit1604.c
curl-7.66.0/tests/extern-scan.pl
curl-7.66.0/tests/valgrind.supp
curl-7.66.0/tests/pathhelp.pm
curl-7.66.0/maketgz
curl-7.66.0/CMake/
curl-7.66.0/CMake/CurlSymbolHiding.cmake
curl-7.66.0/CMake/FindCARES.cmake
curl-7.66.0/CMake/FindGSS.cmake
curl-7.66.0/CMake/Utilities.cmake
curl-7.66.0/CMake/CurlTests.c
curl-7.66.0/CMake/FindNGHTTP2.cmake
curl-7.66.0/CMake/Macros.cmake
curl-7.66.0/CMake/FindLibSSH2.cmake
curl-7.66.0/CMake/FindMbedTLS.cmake
curl-7.66.0/CMake/Platforms/
curl-7.66.0/CMake/Platforms/WindowsCache.cmake
curl-7.66.0/CMake/OtherTests.cmake
curl-7.66.0/CMake/curl-config.cmake.in
curl-7.66.0/CMake/CMakeConfigurableFile.in
curl-7.66.0/CMake/cmake_uninstall.cmake.in
curl-7.66.0/Makefile.am
curl-7.66.0/Makefile.in
curl-7.66.0/buildconf.bat
phase `unpack' succeeded after 0.9 seconds
starting phase `bootstrap'
GNU build system bootstrapping not needed
phase `bootstrap' succeeded after 0.0 seconds
starting phase `patch-usr-bin-file'
patch-/usr/bin/file: ./configure: changing `/usr/bin/file' to `/gnu/store/6jdshxwdrad9mlhcqc9k0g24yw45rqf1-file-5.33/bin/file'
patch-/usr/bin/file: ./configure: changing `/usr/bin/file' to `/gnu/store/6jdshxwdrad9mlhcqc9k0g24yw45rqf1-file-5.33/bin/file'
patch-/usr/bin/file: ./configure: changing `/usr/bin/file' to `/gnu/store/6jdshxwdrad9mlhcqc9k0g24yw45rqf1-file-5.33/bin/file'
patch-/usr/bin/file: ./configure: changing `/usr/bin/file' to `/gnu/store/6jdshxwdrad9mlhcqc9k0g24yw45rqf1-file-5.33/bin/file'
patch-/usr/bin/file: ./configure: changing `/usr/bin/file' to `/gnu/store/6jdshxwdrad9mlhcqc9k0g24yw45rqf1-file-5.33/bin/file'
patch-/usr/bin/file: ./configure: changing `/usr/bin/file' to `/gnu/store/6jdshxwdrad9mlhcqc9k0g24yw45rqf1-file-5.33/bin/file'
patch-/usr/bin/file: ./configure: changing `/usr/bin/file' to `/gnu/store/6jdshxwdrad9mlhcqc9k0g24yw45rqf1-file-5.33/bin/file'
patch-/usr/bin/file: ./configure: changing `/usr/bin/file' to `/gnu/store/6jdshxwdrad9mlhcqc9k0g24yw45rqf1-file-5.33/bin/file'
patch-/usr/bin/file: ./configure: changing `/usr/bin/file' to `/gnu/store/6jdshxwdrad9mlhcqc9k0g24yw45rqf1-file-5.33/bin/file'
patch-/usr/bin/file: ./configure: changing `/usr/bin/file' to `/gnu/store/6jdshxwdrad9mlhcqc9k0g24yw45rqf1-file-5.33/bin/file'
patch-/usr/bin/file: ./configure: changing `/usr/bin/file' to `/gnu/store/6jdshxwdrad9mlhcqc9k0g24yw45rqf1-file-5.33/bin/file'
patch-/usr/bin/file: ./configure: changing `/usr/bin/file' to `/gnu/store/6jdshxwdrad9mlhcqc9k0g24yw45rqf1-file-5.33/bin/file'
patch-/usr/bin/file: ./configure: changing `/usr/bin/file' to `/gnu/store/6jdshxwdrad9mlhcqc9k0g24yw45rqf1-file-5.33/bin/file'
phase `patch-usr-bin-file' succeeded after 0.4 seconds
starting phase `patch-source-shebangs'
patch-shebang: ./MacOSX-Framework: changing `/bin/bash' to `/gnu/store/29jhbbg1hf557x8j53f9sxd9imlmf02a-bash-minimal-5.0.7/bin/bash'
patch-shebang: ./buildconf: changing `/bin/sh' to `/gnu/store/29jhbbg1hf557x8j53f9sxd9imlmf02a-bash-minimal-5.0.7/bin/sh'
patch-shebang: ./compile: changing `/bin/sh' to `/gnu/store/29jhbbg1hf557x8j53f9sxd9imlmf02a-bash-minimal-5.0.7/bin/sh'
patch-shebang: ./config.guess: changing `/bin/sh' to `/gnu/store/29jhbbg1hf557x8j53f9sxd9imlmf02a-bash-minimal-5.0.7/bin/sh'
patch-shebang: ./config.sub: changing `/bin/sh' to `/gnu/store/29jhbbg1hf557x8j53f9sxd9imlmf02a-bash-minimal-5.0.7/bin/sh'
patch-shebang: ./configure: changing `/bin/sh' to `/gnu/store/29jhbbg1hf557x8j53f9sxd9imlmf02a-bash-minimal-5.0.7/bin/sh'
patch-shebang: ./curl-config.in: changing `/bin/sh' to `/gnu/store/29jhbbg1hf557x8j53f9sxd9imlmf02a-bash-minimal-5.0.7/bin/sh'
patch-shebang: ./depcomp: changing `/bin/sh' to `/gnu/store/29jhbbg1hf557x8j53f9sxd9imlmf02a-bash-minimal-5.0.7/bin/sh'
patch-shebang: ./docs/cmdline-opts/gen.pl: changing `/usr/bin/env perl' to `/gnu/store/ziinjmbnq004866mwjrczsk12wf35qb8-perl-5.30.0/bin/perl'
patch-shebang: ./docs/examples/version-check.pl: changing `/usr/bin/env perl' to `/gnu/store/ziinjmbnq004866mwjrczsk12wf35qb8-perl-5.30.0/bin/perl'
patch-shebang: ./docs/libcurl/mksymbolsmanpage.pl: changing `/usr/bin/env perl' to `/gnu/store/ziinjmbnq004866mwjrczsk12wf35qb8-perl-5.30.0/bin/perl'
patch-shebang: ./docs/libcurl/symbols.pl: changing `/usr/bin/env perl' to `/gnu/store/ziinjmbnq004866mwjrczsk12wf35qb8-perl-5.30.0/bin/perl'
patch-shebang: ./install-sh: changing `/bin/sh' to `/gnu/store/29jhbbg1hf557x8j53f9sxd9imlmf02a-bash-minimal-5.0.7/bin/sh'
patch-shebang: ./lib/checksrc.pl: changing `/usr/bin/env perl' to `/gnu/store/ziinjmbnq004866mwjrczsk12wf35qb8-perl-5.30.0/bin/perl'
patch-shebang: ./lib/firefox-db2pem.sh: changing `/bin/sh' to `/gnu/store/29jhbbg1hf557x8j53f9sxd9imlmf02a-bash-minimal-5.0.7/bin/sh'
patch-shebang: ./lib/mk-ca-bundle.pl: changing `/usr/bin/env perl' to `/gnu/store/ziinjmbnq004866mwjrczsk12wf35qb8-perl-5.30.0/bin/perl'
patch-shebang: ./ltmain.sh: changing `/bin/sh' to `/gnu/store/29jhbbg1hf557x8j53f9sxd9imlmf02a-bash-minimal-5.0.7/bin/sh'
patch-shebang: ./maketgz: changing `/bin/sh' to `/gnu/store/29jhbbg1hf557x8j53f9sxd9imlmf02a-bash-minimal-5.0.7/bin/sh'
patch-shebang: ./missing: changing `/bin/sh' to `/gnu/store/29jhbbg1hf557x8j53f9sxd9imlmf02a-bash-minimal-5.0.7/bin/sh'
patch-shebang: ./packages/OS400/initscript.sh: changing `/bin/sh' to `/gnu/store/29jhbbg1hf557x8j53f9sxd9imlmf02a-bash-minimal-5.0.7/bin/sh'
patch-shebang: ./packages/OS400/make-include.sh: changing `/bin/sh' to `/gnu/store/29jhbbg1hf557x8j53f9sxd9imlmf02a-bash-minimal-5.0.7/bin/sh'
patch-shebang: ./packages/OS400/make-lib.sh: changing `/bin/sh' to `/gnu/store/29jhbbg1hf557x8j53f9sxd9imlmf02a-bash-minimal-5.0.7/bin/sh'
patch-shebang: ./packages/OS400/make-src.sh: changing `/bin/sh' to `/gnu/store/29jhbbg1hf557x8j53f9sxd9imlmf02a-bash-minimal-5.0.7/bin/sh'
patch-shebang: ./packages/OS400/make-tests.sh: changing `/bin/sh' to `/gnu/store/29jhbbg1hf557x8j53f9sxd9imlmf02a-bash-minimal-5.0.7/bin/sh'
patch-shebang: ./packages/OS400/makefile.sh: changing `/bin/sh' to `/gnu/store/29jhbbg1hf557x8j53f9sxd9imlmf02a-bash-minimal-5.0.7/bin/sh'
patch-shebang: ./plan9/lib/mkfile.inc: warning: no binary for interpreter `rc' found in $PATH
patch-shebang: ./plan9/src/mkfile.inc: warning: no binary for interpreter `rc' found in $PATH
patch-shebang: ./scripts/completion.pl: changing `/usr/bin/env perl' to `/gnu/store/ziinjmbnq004866mwjrczsk12wf35qb8-perl-5.30.0/bin/perl'
patch-shebang: ./scripts/coverage.sh: changing `/bin/sh' to `/gnu/store/29jhbbg1hf557x8j53f9sxd9imlmf02a-bash-minimal-5.0.7/bin/sh'
patch-shebang: ./scripts/updatemanpages.pl: changing `/usr/bin/env perl' to `/gnu/store/ziinjmbnq004866mwjrczsk12wf35qb8-perl-5.30.0/bin/perl'
patch-shebang: ./src/mkhelp.pl: changing `/usr/bin/env perl' to `/gnu/store/ziinjmbnq004866mwjrczsk12wf35qb8-perl-5.30.0/bin/perl'
patch-shebang: ./test-driver: changing `/bin/sh' to `/gnu/store/29jhbbg1hf557x8j53f9sxd9imlmf02a-bash-minimal-5.0.7/bin/sh'
patch-shebang: ./tests/certs/scripts/genroot.sh: changing `/bin/bash' to `/gnu/store/29jhbbg1hf557x8j53f9sxd9imlmf02a-bash-minimal-5.0.7/bin/bash'
patch-shebang: ./tests/certs/scripts/genserv.sh: changing `/bin/bash' to `/gnu/store/29jhbbg1hf557x8j53f9sxd9imlmf02a-bash-minimal-5.0.7/bin/bash'
patch-shebang: ./tests/curl_test_data.py: changing `/usr/bin/env python' to `/gnu/store/l8nphg0idd8pfddyad8f92lx8d1hc053-python-wrapper-3.7.4/bin/python'
patch-shebang: ./tests/dictserver.py: changing `/usr/bin/env python' to `/gnu/store/l8nphg0idd8pfddyad8f92lx8d1hc053-python-wrapper-3.7.4/bin/python'
patch-shebang: ./tests/disable-scan.pl: changing `/usr/bin/env perl' to `/gnu/store/ziinjmbnq004866mwjrczsk12wf35qb8-perl-5.30.0/bin/perl'
patch-shebang: ./tests/extern-scan.pl: changing `/usr/bin/env perl' to `/gnu/store/ziinjmbnq004866mwjrczsk12wf35qb8-perl-5.30.0/bin/perl'
patch-shebang: ./tests/ftpserver.pl: changing `/usr/bin/env perl' to `/gnu/store/ziinjmbnq004866mwjrczsk12wf35qb8-perl-5.30.0/bin/perl'
patch-shebang: ./tests/http2-server.pl: changing `/usr/bin/env perl' to `/gnu/store/ziinjmbnq004866mwjrczsk12wf35qb8-perl-5.30.0/bin/perl'
patch-shebang: ./tests/httpserver.pl: changing `/usr/bin/env perl' to `/gnu/store/ziinjmbnq004866mwjrczsk12wf35qb8-perl-5.30.0/bin/perl'
patch-shebang: ./tests/libtest/mk-lib1521.pl: changing `/usr/bin/env perl' to `/gnu/store/ziinjmbnq004866mwjrczsk12wf35qb8-perl-5.30.0/bin/perl'
patch-shebang: ./tests/libtest/notexists.pl: changing `/usr/bin/env perl' to `/gnu/store/ziinjmbnq004866mwjrczsk12wf35qb8-perl-5.30.0/bin/perl'
patch-shebang: ./tests/libtest/test1013.pl: changing `/usr/bin/env perl' to `/gnu/store/ziinjmbnq004866mwjrczsk12wf35qb8-perl-5.30.0/bin/perl'
patch-shebang: ./tests/libtest/test1022.pl: changing `/usr/bin/env perl' to `/gnu/store/ziinjmbnq004866mwjrczsk12wf35qb8-perl-5.30.0/bin/perl'
patch-shebang: ./tests/libtest/test307.pl: changing `/usr/bin/env perl' to `/gnu/store/ziinjmbnq004866mwjrczsk12wf35qb8-perl-5.30.0/bin/perl'
patch-shebang: ./tests/libtest/test610.pl: changing `/usr/bin/env perl' to `/gnu/store/ziinjmbnq004866mwjrczsk12wf35qb8-perl-5.30.0/bin/perl'
patch-shebang: ./tests/libtest/test613.pl: changing `/usr/bin/env perl' to `/gnu/store/ziinjmbnq004866mwjrczsk12wf35qb8-perl-5.30.0/bin/perl'
patch-shebang: ./tests/libtest/test75.pl: changing `/usr/bin/env perl' to `/gnu/store/ziinjmbnq004866mwjrczsk12wf35qb8-perl-5.30.0/bin/perl'
patch-shebang: ./tests/manpage-scan.pl: changing `/usr/bin/env perl' to `/gnu/store/ziinjmbnq004866mwjrczsk12wf35qb8-perl-5.30.0/bin/perl'
patch-shebang: ./tests/manpage-syntax.pl: changing `/usr/bin/env perl' to `/gnu/store/ziinjmbnq004866mwjrczsk12wf35qb8-perl-5.30.0/bin/perl'
patch-shebang: ./tests/mem-include-scan.pl: changing `/usr/bin/env perl' to `/gnu/store/ziinjmbnq004866mwjrczsk12wf35qb8-perl-5.30.0/bin/perl'
patch-shebang: ./tests/memanalyze.pl: changing `/usr/bin/env perl' to `/gnu/store/ziinjmbnq004866mwjrczsk12wf35qb8-perl-5.30.0/bin/perl'
patch-shebang: ./tests/negtelnetserver.py: changing `/usr/bin/env python' to `/gnu/store/l8nphg0idd8pfddyad8f92lx8d1hc053-python-wrapper-3.7.4/bin/python'
patch-shebang: ./tests/nroff-scan.pl: changing `/usr/bin/env perl' to `/gnu/store/ziinjmbnq004866mwjrczsk12wf35qb8-perl-5.30.0/bin/perl'
patch-shebang: ./tests/objnames-test08.sh: changing `/bin/sh' to `/gnu/store/29jhbbg1hf557x8j53f9sxd9imlmf02a-bash-minimal-5.0.7/bin/sh'
patch-shebang: ./tests/objnames-test10.sh: changing `/bin/sh' to `/gnu/store/29jhbbg1hf557x8j53f9sxd9imlmf02a-bash-minimal-5.0.7/bin/sh'
patch-shebang: ./tests/rtspserver.pl: changing `/usr/bin/env perl' to `/gnu/store/ziinjmbnq004866mwjrczsk12wf35qb8-perl-5.30.0/bin/perl'
patch-shebang: ./tests/runtests.pl: changing `/usr/bin/env perl' to `/gnu/store/ziinjmbnq004866mwjrczsk12wf35qb8-perl-5.30.0/bin/perl'
patch-shebang: ./tests/secureserver.pl: changing `/usr/bin/env perl' to `/gnu/store/ziinjmbnq004866mwjrczsk12wf35qb8-perl-5.30.0/bin/perl'
patch-shebang: ./tests/server/base64.pl: changing `/usr/bin/env perl' to `/gnu/store/ziinjmbnq004866mwjrczsk12wf35qb8-perl-5.30.0/bin/perl'
patch-shebang: ./tests/smbserver.py: changing `/usr/bin/env python' to `/gnu/store/l8nphg0idd8pfddyad8f92lx8d1hc053-python-wrapper-3.7.4/bin/python'
patch-shebang: ./tests/sshserver.pl: changing `/usr/bin/env perl' to `/gnu/store/ziinjmbnq004866mwjrczsk12wf35qb8-perl-5.30.0/bin/perl'
patch-shebang: ./tests/symbol-scan.pl: changing `/usr/bin/env perl' to `/gnu/store/ziinjmbnq004866mwjrczsk12wf35qb8-perl-5.30.0/bin/perl'
patch-shebang: ./tests/testcurl.pl: changing `/usr/bin/env perl' to `/gnu/store/ziinjmbnq004866mwjrczsk12wf35qb8-perl-5.30.0/bin/perl'
patch-shebang: ./tests/tftpserver.pl: changing `/usr/bin/env perl' to `/gnu/store/ziinjmbnq004866mwjrczsk12wf35qb8-perl-5.30.0/bin/perl'
phase `patch-source-shebangs' succeeded after 0.8 seconds
starting phase `configure'
source directory: "/tmp/guix-build-curl-7.66.0.drv-0/curl-7.66.0" (relative from build: ".")
build directory: "/tmp/guix-build-curl-7.66.0.drv-0/curl-7.66.0"
configure flags: ("CONFIG_SHELL=/gnu/store/29jhbbg1hf557x8j53f9sxd9imlmf02a-bash-minimal-5.0.7/bin/bash" "SHELL=/gnu/store/29jhbbg1hf557x8j53f9sxd9imlmf02a-bash-minimal-5.0.7/bin/bash" "--prefix=/gnu/store/2rb60gps59qb1z6p8d3xnj375igry4fq-curl-7.66.0" "--enable-fast-install" "--docdir=/gnu/store/yiwbwzhs72z48wc27m781snx221zipcz-curl-7.66.0-doc/share/doc/curl" "--build=x86_64-unknown-linux-gnu" "--with-gnutls" "--with-gssapi=/gnu/store/4rs159kgsa0l1svi5vbvn86in7z28bpl-mit-krb5-1.17" "--disable-static")
checking whether to enable maintainer-specific portions of Makefiles... no
checking whether make supports nested variables... yes
checking whether to enable debug build options... no
checking whether to enable compiler optimizer... (assumed) yes
checking whether to enable strict compiler warnings... no
checking whether to enable compiler warnings as errors... no
checking whether to enable curl debug memory tracking... no
checking whether to enable hiding of library internal symbols... yes
checking whether to enable c-ares for DNS lookups... no
checking whether to disable dependency on -lrt... (assumed no)
checking for path separator... :
checking for sed... /gnu/store/afmvfw1yhfal48n1kjq6bk6kcw8sc3db-sed-4.7/bin/sed
checking for grep... /gnu/store/7iyvxhp2g3v3655zqwr6biz2h0lqv7pr-grep-3.3/bin/grep
checking for egrep... /gnu/store/7iyvxhp2g3v3655zqwr6biz2h0lqv7pr-grep-3.3/bin/grep -E
checking for ar... /gnu/store/3hkdiscs4910r75njbrql10znxxn7chk-binutils-2.32/bin/ar
checking for a BSD-compatible install... /gnu/store/9kzrrccpzl6i1sfwb0drb00gi2gwk0x0-coreutils-8.31/bin/install -c
checking for gcc... gcc
checking whether the C compiler works... yes
checking for C compiler default output file name... a.out
checking for suffix of executables... 
checking whether we are cross compiling... no
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether gcc accepts -g... yes
checking for gcc option to accept ISO C89... none needed
checking whether gcc understands -c and -o together... yes
checking how to run the C preprocessor... gcc -E
checking for a sed that does not truncate output... (cached) /gnu/store/afmvfw1yhfal48n1kjq6bk6kcw8sc3db-sed-4.7/bin/sed
checking for code coverage support... no
checking whether build environment is sane... yes
checking for a thread-safe mkdir -p... /gnu/store/9kzrrccpzl6i1sfwb0drb00gi2gwk0x0-coreutils-8.31/bin/mkdir -p
checking for gawk... gawk
checking whether make sets $(MAKE)... no
checking whether make supports the include directive... yes (GNU style)
checking dependency style of gcc... gcc3
checking curl version... 7.66.0
checking build system type... x86_64-unknown-linux-gnu
checking host system type... x86_64-unknown-linux-gnu
checking for grep that handles long lines and -e... (cached) /gnu/store/7iyvxhp2g3v3655zqwr6biz2h0lqv7pr-grep-3.3/bin/grep
checking for egrep... /gnu/store/7iyvxhp2g3v3655zqwr6biz2h0lqv7pr-grep-3.3/bin/grep -E
checking if OS is AIX (to define _ALL_SOURCE)... no
checking if _THREAD_SAFE is already defined... no
checking if _THREAD_SAFE is actually needed... no
checking if _THREAD_SAFE is onwards defined... no
checking if _REENTRANT is already defined... no
checking if _REENTRANT is actually needed... no
checking if _REENTRANT is onwards defined... no
checking for special C compiler options needed for large files... no
checking for _FILE_OFFSET_BITS value needed for large files... no
checking how to print strings... printf
checking for a sed that does not truncate output... (cached) /gnu/store/afmvfw1yhfal48n1kjq6bk6kcw8sc3db-sed-4.7/bin/sed
checking for fgrep... /gnu/store/7iyvxhp2g3v3655zqwr6biz2h0lqv7pr-grep-3.3/bin/grep -F
checking for ld used by gcc... /gnu/store/nc5vlidpxbvngalng30nif8nb3j7gfy2-ld-wrapper-0/bin/ld
checking if the linker (/gnu/store/nc5vlidpxbvngalng30nif8nb3j7gfy2-ld-wrapper-0/bin/ld) is GNU ld... yes
checking for BSD- or MS-compatible name lister (nm)... /gnu/store/3hkdiscs4910r75njbrql10znxxn7chk-binutils-2.32/bin/nm -B
checking the name lister (/gnu/store/3hkdiscs4910r75njbrql10znxxn7chk-binutils-2.32/bin/nm -B) interface... BSD nm
checking whether ln -s works... yes
checking the maximum length of command line arguments... 1572864
checking how to convert x86_64-unknown-linux-gnu file names to x86_64-unknown-linux-gnu format... func_convert_file_noop
checking how to convert x86_64-unknown-linux-gnu file names to toolchain format... func_convert_file_noop
checking for /gnu/store/nc5vlidpxbvngalng30nif8nb3j7gfy2-ld-wrapper-0/bin/ld option to reload object files... -r
checking for objdump... objdump
checking how to recognize dependent libraries... pass_all
checking for dlltool... no
checking how to associate runtime and link libraries... printf %s\n
checking for archiver @FILE support... @
checking for strip... strip
checking for ranlib... ranlib
checking command to parse /gnu/store/3hkdiscs4910r75njbrql10znxxn7chk-binutils-2.32/bin/nm -B output from gcc object... ok
checking for sysroot... no
checking for a working dd... /gnu/store/9kzrrccpzl6i1sfwb0drb00gi2gwk0x0-coreutils-8.31/bin/dd
checking how to truncate binary pipes... /gnu/store/9kzrrccpzl6i1sfwb0drb00gi2gwk0x0-coreutils-8.31/bin/dd bs=4096 count=1
checking for mt... no
checking if : is a manifest tool... no
checking for ANSI C header files... yes
checking for sys/types.h... yes
checking for sys/stat.h... yes
checking for stdlib.h... yes
checking for string.h... yes
checking for memory.h... yes
checking for strings.h... yes
checking for inttypes.h... yes
checking for stdint.h... yes
checking for unistd.h... yes
checking for dlfcn.h... yes
checking for objdir... .libs
checking if gcc supports -fno-rtti -fno-exceptions... no
checking for gcc option to produce PIC... -fPIC -DPIC
checking if gcc PIC flag -fPIC -DPIC works... yes
checking if gcc static flag -static works... yes
checking if gcc supports -c -o file.o... yes
checking if gcc supports -c -o file.o... (cached) yes
checking whether the gcc linker (/gnu/store/nc5vlidpxbvngalng30nif8nb3j7gfy2-ld-wrapper-0/bin/ld -m elf_x86_64) supports shared libraries... yes
checking whether -lc should be explicitly linked in... no
checking dynamic linker characteristics... GNU/Linux ld.so
checking how to hardcode library paths into programs... immediate
checking whether stripping libraries is possible... yes
checking if libtool supports shared libraries... yes
checking whether to build shared libraries... yes
checking whether to build static libraries... no
checking whether to build shared libraries with -version-info... yes
checking whether to build shared libraries with -no-undefined... no
checking whether to build shared libraries with -mimpure-text... no
checking whether to build shared libraries with PIC... yes
checking whether to build static libraries with PIC... yes
checking whether to build shared libraries only... yes
checking whether to build static libraries only... no
checking for inline... inline
checking if cpp -P is needed... yes
checking if cpp -P works... yes
checking if compiler is DEC/Compaq/HP C... no
checking if compiler is HP-UX C... no
checking if compiler is IBM C... no
checking if compiler is Intel C... no
checking if compiler is clang... no
checking if compiler is GNU C... yes
checking if compiler is LCC... no
checking if compiler is SGI MIPSpro C... no
checking if compiler is SGI MIPS C... no
checking if compiler is SunPro C... no
checking if compiler is Tiny C... no
checking if compiler is Watcom C... no
checking if compiler accepts some basic options... yes
configure: compiler options added: -Werror-implicit-function-declaration 
checking if compiler accepts debug disabling options... yes
configure: compiler options added: 
checking if compiler optimizer assumed setting might be used... yes
checking if compiler accepts optimizer enabling options... yes
configure: compiler options added: -O2
checking if compiler accepts strict warning options... yes
configure: compiler options added: -Wno-system-headers 
checking if compiler halts on compilation errors... yes
checking if compiler halts on negative sized arrays... yes
checking if compiler halts on function prototype mismatch... yes
checking if compiler supports hiding library internal symbols... yes
checking for windows.h... no
checking whether build target is a native Windows one... no
checking whether build target supports WIN32 file API... no
checking for good-to-use Mac CFLAGS... no
checking to see if the compiler supports __builtin_available()... no
checking whether to support http... yes
checking whether to support ftp... yes
checking whether to support file... yes
checking whether to support ldap... yes
checking whether to support ldaps... yes
checking whether to support rtsp... yes
checking whether to support proxies... yes
checking whether to support dict... yes
checking whether to support telnet... yes
checking whether to support tftp... yes
checking whether to support pop3... yes
checking whether to support imap... yes
checking whether to support smb... yes
checking whether to support smtp... yes
checking whether to support gopher... yes
checking whether to provide built-in manual... yes
checking whether to enable generation of C code... yes
checking whether to use libgcc... no
checking if X/Open network library is required... no
checking for gethostbyname... yes
checking for windows.h... (cached) no
checking for winsock.h... (cached) no
checking for winsock2.h... (cached) no
checking for proto/bsdsocket.h... no
checking for connect in libraries... yes
checking whether time.h and sys/time.h may both be included... yes
checking for sys/types.h... (cached) yes
checking sys/time.h usability... yes
checking sys/time.h presence... yes
checking for sys/time.h... yes
checking time.h usability... yes
checking time.h presence... yes
checking for time.h... yes
checking for monotonic clock_gettime... yes
checking for clock_gettime in libraries... no additional lib required
checking if monotonic clock_gettime works... yes
checking for pkg-config... /gnu/store/i1cqaixp79vd3qwnyj1ll10pq6skm2wk-pkg-config-0.29.2/bin/pkg-config
checking for zlib options with pkg-config... found
checking zlib.h usability... yes
checking zlib.h presence... yes
checking for zlib.h... yes
configure: found both libz and libz.h header
checking for BrotliDecoderDecompress in -lbrotlidec... no
checking brotli/decode.h usability... no
checking brotli/decode.h presence... no
checking for brotli/decode.h... no
checking for lber.h... yes
checking for ldap.h... yes
checking for ldapssl.h... no
checking for ldap_ssl.h... no
checking for LDAP libraries... -lldap -llber
checking for ldap_url_parse... yes
checking for ldap_init_fd... yes
checking whether to enable IPv6... yes
checking if struct sockaddr_in6 has sin6_scope_id member... yes
checking if argv can be written to... no
checking if GSS-API support is requested... yes
checking gss.h usability... no
checking gss.h presence... no
checking for gss.h... no
checking gssapi/gssapi.h usability... yes
checking gssapi/gssapi.h presence... yes
checking for gssapi/gssapi.h... yes
checking for gssapi/gssapi_generic.h... yes
checking for gssapi/gssapi_krb5.h... yes
checking if GSS-API headers declare GSS_C_NT_HOSTBASED_SERVICE... yes
checking whether to enable Windows native SSL/TLS (Windows native builds only)... no
checking whether to enable Secure Transport... no
checking whether to enable Amiga native SSL/TLS (AmiSSL)... no
checking for pkg-config... (cached) /gnu/store/i1cqaixp79vd3qwnyj1ll10pq6skm2wk-pkg-config-0.29.2/bin/pkg-config
checking for openssl options with pkg-config... no
checking for HMAC_Update in -lcrypto... no
checking for HMAC_Init_ex in -lcrypto... no
checking OpenSSL linking with -ldl... no
checking OpenSSL linking with -ldl and -lpthread... no
checking for pkg-config... (cached) /gnu/store/i1cqaixp79vd3qwnyj1ll10pq6skm2wk-pkg-config-0.29.2/bin/pkg-config
checking for gnutls options with pkg-config... found
checking for gnutls_check_version in -lgnutls... yes
configure: detected GnuTLS version 3.6.10
configure: Added /gnu/store/ms32lbgjkz2vwk0ih79ysygs3dxaydix-gnutls-3.6.10/lib to CURL_LIBRARY_PATH
checking for gnutls_certificate_set_x509_key_file2... yes
checking for gnutls_alpn_set_protocols... yes
checking for gnutls_ocsp_req_init... yes
checking for nettle_MD5Init in -lgnutls... no
checking for gcry_control in -lgnutls... no
checking for nettle_MD5Init in -lnettle... yes
checking for gnutls_srp_verifier in -lgnutls... yes
configure: built with one SSL backend
checking default CA cert bundle/path... no
checking whether to use builtin CA store of SSL library... no
checking for library containing psl_builtin... no
configure: WARNING: libpsl was not found
checking for RTMP_Init in -lrtmp... no
checking whether versioned symbols are wanted... no
checking whether to enable Windows native IDN (Windows native builds only)... no
checking whether to build with libidn2... (assumed) yes
checking for pkg-config... (cached) /gnu/store/i1cqaixp79vd3qwnyj1ll10pq6skm2wk-pkg-config-0.29.2/bin/pkg-config
checking for libidn2 options with pkg-config... found
configure: pkg-config: IDN_LIBS: "-lidn2"
configure: pkg-config: IDN_LDFLAGS: "-L/gnu/store/7gabmw9siqrz79slpi1f8i90v3w1638x-libidn2-2.2.0/lib"
configure: pkg-config: IDN_CPPFLAGS: ""
configure: pkg-config: IDN_DIR: "/gnu/store/7gabmw9siqrz79slpi1f8i90v3w1638x-libidn2-2.2.0/lib"
checking if idn2_lookup_ul can be linked... yes
checking idn2.h usability... yes
checking idn2.h presence... yes
checking for idn2.h... yes
configure: Added /gnu/store/7gabmw9siqrz79slpi1f8i90v3w1638x-libidn2-2.2.0/lib to CURL_LIBRARY_PATH
checking for pkg-config... (cached) /gnu/store/i1cqaixp79vd3qwnyj1ll10pq6skm2wk-pkg-config-0.29.2/bin/pkg-config
checking for libnghttp2 options with pkg-config... found
configure: -l is -lnghttp2
configure: -I is 
configure: -L is -L/gnu/store/zavdh2z5mwkakjf1v98x43w1hzjzxkhl-nghttp2-1.39.1-lib/lib
checking for nghttp2_option_set_no_recv_client_magic in -lnghttp2... yes
checking nghttp2/nghttp2.h usability... yes
checking nghttp2/nghttp2.h presence... yes
checking for nghttp2/nghttp2.h... yes
checking for pkg-config... (cached) /gnu/store/i1cqaixp79vd3qwnyj1ll10pq6skm2wk-pkg-config-0.29.2/bin/pkg-config
checking for libngtcp2 options with pkg-config... no
checking for pkg-config... (cached) /gnu/store/i1cqaixp79vd3qwnyj1ll10pq6skm2wk-pkg-config-0.29.2/bin/pkg-config
checking for quiche options with pkg-config... no
checking for pkg-config... (cached) /gnu/store/i1cqaixp79vd3qwnyj1ll10pq6skm2wk-pkg-config-0.29.2/bin/pkg-config
checking for fish options with pkg-config... no
checking for ANSI C header files... (cached) yes
checking for malloc.h... yes
checking for memory.h... no
checking for sys/types.h... (cached) yes
checking for sys/time.h... (cached) yes
checking for sys/select.h... yes
checking for sys/socket.h... yes
checking for sys/ioctl.h... yes
checking for sys/uio.h... yes
checking for assert.h... yes
checking for unistd.h... (cached) yes
checking for stdlib.h... (cached) yes
checking for arpa/inet.h... yes
checking for net/if.h... yes
checking for netinet/in.h... yes
checking for netinet/in6.h... no
checking for sys/un.h... yes
checking for linux/tcp.h... yes
checking for netinet/tcp.h... yes
checking for netdb.h... yes
checking for sys/sockio.h... no
checking for sys/stat.h... (cached) yes
checking for sys/param.h... yes
checking for termios.h... yes
checking for termio.h... yes
checking for sgtty.h... yes
checking for fcntl.h... yes
checking for alloca.h... yes
checking for time.h... (cached) yes
checking for io.h... no
checking for pwd.h... yes
checking for utime.h... yes
checking for sys/utime.h... no
checking for sys/poll.h... yes
checking for poll.h... yes
checking for socket.h... no
checking for sys/resource.h... yes
checking for libgen.h... yes
checking for locale.h... yes
checking for errno.h... yes
checking for stdbool.h... yes
checking for arpa/tftp.h... yes
checking for sys/filio.h... no
checking for sys/wait.h... yes
checking for setjmp.h... yes
checking for an ANSI C-conforming const... yes
checking for compiler support of C99 variadic macro style... yes
checking for compiler support of old gcc variadic macro style... yes
checking for size_t... yes
checking whether time.h and sys/time.h may both be included... (cached) yes
checking for sys/types.h... (cached) yes
checking for sys/time.h... (cached) yes
checking for time.h... (cached) yes
checking for sys/socket.h... (cached) yes
checking for struct timeval... yes
checking run-time libs availability... fine
checking size of size_t... 8
checking size of long... 8
checking size of int... 4
checking size of short... 2
checking size of time_t... 8
checking size of off_t... 8
checking size of curl_off_t... 8
checking for long long... yes
checking if numberLL works... yes
checking for ssize_t... yes
checking for bool... yes
checking for sa_family_t... yes
checking if time_t is unsigned... no
checking for sys/types.h... (cached) yes
checking for poll.h... (cached) yes
checking for sys/poll.h... (cached) yes
checking for in_addr_t... yes
checking for struct sockaddr_storage... yes
checking signal.h usability... yes
checking signal.h presence... yes
checking for signal.h... yes
checking for sig_atomic_t... yes
checking if sig_atomic_t is already defined as volatile... no
checking return type of signal handlers... void
checking for sys/select.h... (cached) yes
checking for sys/socket.h... (cached) yes
checking for select... yes
checking types of args and return type for select... int,fd_set *,struct timeval *,int
checking for sys/types.h... (cached) yes
checking for sys/socket.h... (cached) yes
checking for recv... yes
checking types of args and return type for recv... int,void *,size_t,int,ssize_t
checking for sys/types.h... (cached) yes
checking for sys/socket.h... (cached) yes
checking for send... yes
checking types of args and return type for send... int,const void *,size_t,int,ssize_t
checking for sys/types.h... (cached) yes
checking for sys/socket.h... (cached) yes
checking for MSG_NOSIGNAL... yes
checking for sys/types.h... (cached) yes
checking for unistd.h... (cached) yes
checking if alarm can be linked... yes
checking if alarm is prototyped... yes
checking if alarm is compilable... yes
checking if alarm usage allowed... yes
checking if alarm might be used... yes
checking for sys/types.h... (cached) yes
checking for string.h... (cached) yes
checking for strings.h... (cached) yes
checking for sys/types.h... (cached) yes
checking for libgen.h... (cached) yes
checking if basename can be linked... yes
checking if basename is prototyped... yes
checking if basename is compilable... yes
checking if basename usage allowed... yes
checking if basename might be used... yes
checking for sys/types.h... (cached) yes
checking for socket.h... (cached) no
checking if closesocket can be linked... no
checking if closesocket might be used... no
checking for sys/types.h... (cached) yes
checking for sys/socket.h... (cached) yes
checking if CloseSocket can be linked... no
checking if CloseSocket might be used... no
checking if connect can be linked... yes
checking if connect is prototyped... yes
checking if connect is compilable... yes
checking if connect usage allowed... yes
checking if connect might be used... yes
checking for sys/types.h... (cached) yes
checking for unistd.h... (cached) yes
checking for fcntl.h... (cached) yes
checking if fcntl can be linked... yes
checking if fcntl is prototyped... yes
checking if fcntl is compilable... yes
checking if fcntl usage allowed... yes
checking if fcntl might be used... yes
checking if fcntl O_NONBLOCK is compilable... yes
checking if fcntl O_NONBLOCK usage allowed... yes
checking if fcntl O_NONBLOCK might be used... yes
checking for windows.h... (cached) no
checking for winsock2.h... (cached) no
checking for ws2tcpip.h... (cached) no
checking for sys/types.h... (cached) yes
checking for netdb.h... (cached) yes
checking if freeaddrinfo can be linked... yes
checking if freeaddrinfo is prototyped... yes
checking if freeaddrinfo is compilable... yes
checking if freeaddrinfo usage allowed... yes
checking if freeaddrinfo might be used... yes
checking for sys/types.h... (cached) yes
checking for sys/socket.h... (cached) yes
checking for netinet/in.h... (cached) yes
checking for ifaddrs.h... yes
checking if freeifaddrs can be linked... yes
checking if freeifaddrs is prototyped... yes
checking if freeifaddrs is compilable... yes
checking if freeifaddrs usage allowed... yes
checking if freeifaddrs might be used... yes
checking for sys/types.h... (cached) yes
checking for sys/xattr.h... yes
checking if fsetxattr can be linked... yes
checking if fsetxattr is prototyped... yes
checking if fsetxattr takes 5 args.... yes
checking if fsetxattr is compilable... yes
checking if fsetxattr usage allowed... yes
checking if fsetxattr might be used... yes
checking if ftruncate can be linked... yes
checking if ftruncate is prototyped... yes
checking if ftruncate is compilable... yes
checking if ftruncate usage allowed... yes
checking if ftruncate might be used... yes
checking for sys/types.h... (cached) yes
checking for stdlib.h... (cached) yes
checking if getaddrinfo can be linked... yes
checking if getaddrinfo is prototyped... yes
checking if getaddrinfo is compilable... yes
checking if getaddrinfo seems to work... yes
checking if getaddrinfo usage allowed... yes
checking if getaddrinfo might be used... yes
checking if getaddrinfo is threadsafe... yes
checking if gai_strerror can be linked... yes
checking if gai_strerror is prototyped... yes
checking if gai_strerror is compilable... yes
checking if gai_strerror usage allowed... yes
checking if gai_strerror might be used... yes
checking if gethostbyaddr can be linked... yes
checking if gethostbyaddr is prototyped... yes
checking if gethostbyaddr is compilable... yes
checking if gethostbyaddr usage allowed... yes
checking if gethostbyaddr might be used... yes
checking if gethostbyaddr_r can be linked... yes
checking if gethostbyaddr_r is prototyped... yes
checking if gethostbyaddr_r takes 5 args.... no
checking if gethostbyaddr_r takes 7 args.... no
checking if gethostbyaddr_r takes 8 args.... yes
checking if gethostbyaddr_r is compilable... yes
checking if gethostbyaddr_r usage allowed... yes
checking if gethostbyaddr_r might be used... yes
checking if gethostbyname can be linked... yes
checking if gethostbyname is prototyped... yes
checking if gethostbyname is compilable... yes
checking if gethostbyname usage allowed... yes
checking if gethostbyname might be used... yes
checking if gethostbyname_r can be linked... yes
checking if gethostbyname_r is prototyped... yes
checking if gethostbyname_r takes 3 args.... no
checking if gethostbyname_r takes 5 args.... no
checking if gethostbyname_r takes 6 args.... yes
checking if gethostbyname_r is compilable... yes
checking if gethostbyname_r usage allowed... yes
checking if gethostbyname_r might be used... yes
checking if gethostname can be linked... yes
checking if gethostname is prototyped... yes
checking if gethostname is compilable... yes
checking for gethostname arg 2 data type... size_t
checking if gethostname usage allowed... yes
checking if gethostname might be used... yes
checking if getpeername can be linked... yes
checking if getpeername is prototyped... yes
checking if getpeername is compilable... yes
checking if getpeername usage allowed... yes
checking if getpeername might be used... yes
checking if getsockname can be linked... yes
checking if getsockname is prototyped... yes
checking if getsockname is compilable... yes
checking if getsockname usage allowed... yes
checking if getsockname might be used... yes
checking for net/if.h... (cached) yes
checking if if_nametoindex can be linked... yes
checking if if_nametoindex is prototyped... yes
checking if if_nametoindex is compilable... yes
checking if if_nametoindex usage allowed... yes
checking if if_nametoindex might be used... yes
checking if getifaddrs can be linked... yes
checking if getifaddrs is prototyped... yes
checking if getifaddrs is compilable... yes
checking if getifaddrs seems to work... yes
checking if getifaddrs usage allowed... yes
checking if getifaddrs might be used... yes
checking if getservbyport_r can be linked... yes
checking if getservbyport_r is prototyped... yes
checking if getservbyport_r takes 4 args.... no
checking if getservbyport_r takes 5 args.... no
checking if getservbyport_r takes 6 args.... yes
checking if getservbyport_r is compilable... yes
checking if getservbyport_r usage allowed... yes
checking if getservbyport_r might be used... yes
checking for sys/types.h... (cached) yes
checking for sys/time.h... (cached) yes
checking for time.h... (cached) yes
checking if gmtime_r can be linked... yes
checking if gmtime_r is prototyped... yes
checking if gmtime_r is compilable... yes
checking if gmtime_r seems to work... yes
checking if gmtime_r usage allowed... yes
checking if gmtime_r might be used... yes
checking for sys/types.h... (cached) yes
checking for sys/socket.h... (cached) yes
checking for netinet/in.h... (cached) yes
checking for arpa/inet.h... (cached) yes
checking if inet_ntoa_r can be linked... no
checking if inet_ntoa_r might be used... no
checking if inet_ntop can be linked... yes
checking if inet_ntop is prototyped... yes
checking if inet_ntop is compilable... yes
checking if inet_ntop seems to work... yes
checking if inet_ntop usage allowed... yes
checking if inet_ntop might be used... yes
checking if inet_pton can be linked... yes
checking if inet_pton is prototyped... yes
checking if inet_pton is compilable... yes
checking if inet_pton seems to work... yes
checking if inet_pton usage allowed... yes
checking if inet_pton might be used... yes
checking for sys/types.h... (cached) yes
checking for unistd.h... (cached) yes
checking for sys/socket.h... (cached) yes
checking for sys/ioctl.h... (cached) yes
checking for stropts.h... yes
checking if ioctl can be linked... yes
checking if ioctl is prototyped... yes
checking if ioctl is compilable... yes
checking if ioctl usage allowed... yes
checking if ioctl might be used... yes
checking if ioctl FIONBIO is compilable... yes
checking if ioctl FIONBIO usage allowed... yes
checking if ioctl FIONBIO might be used... yes
checking if ioctl SIOCGIFADDR is compilable... yes
checking if ioctl SIOCGIFADDR usage allowed... yes
checking if ioctl SIOCGIFADDR might be used... yes
checking if ioctlsocket can be linked... no
checking if ioctlsocket might be used... no
checking if IoctlSocket can be linked... no
checking if IoctlSocket might be used... no
checking if localtime_r can be linked... yes
checking if localtime_r is prototyped... yes
checking if localtime_r is compilable... yes
checking if localtime_r seems to work... yes
checking if localtime_r usage allowed... yes
checking if localtime_r might be used... yes
checking if memrchr can be linked... yes
checking if memrchr is prototyped... no
checking if memrchr might be used... no
checking if poll can be linked... yes
checking if poll is prototyped... yes
checking if poll is compilable... yes
checking if poll seems to work... yes
checking if poll usage allowed... yes
checking if poll might be used... yes
checking if setsockopt can be linked... yes
checking if setsockopt is prototyped... yes
checking if setsockopt is compilable... yes
checking if setsockopt usage allowed... yes
checking if setsockopt might be used... yes
checking if setsockopt SO_NONBLOCK is compilable... no
checking if setsockopt SO_NONBLOCK might be used... no
checking for sys/types.h... (cached) yes
checking for signal.h... (cached) yes
checking if sigaction can be linked... yes
checking if sigaction is prototyped... yes
checking if sigaction is compilable... yes
checking if sigaction usage allowed... yes
checking if sigaction might be used... yes
checking if siginterrupt can be linked... yes
checking if siginterrupt is prototyped... yes
checking if siginterrupt is compilable... yes
checking if siginterrupt usage allowed... yes
checking if siginterrupt might be used... yes
checking if signal can be linked... yes
checking if signal is prototyped... yes
checking if signal is compilable... yes
checking if signal usage allowed... yes
checking if signal might be used... yes
checking for sys/types.h... (cached) yes
checking for setjmp.h... (cached) yes
checking if sigsetjmp can be linked... no
checking if sigsetjmp seems a macro... yes
checking if sigsetjmp is compilable... yes
checking if sigsetjmp usage allowed... yes
checking if sigsetjmp might be used... yes
checking if socket can be linked... yes
checking if socket is prototyped... yes
checking if socket is compilable... yes
checking if socket usage allowed... yes
checking if socket might be used... yes
checking if socketpair can be linked... yes
checking if socketpair is prototyped... yes
checking if socketpair is compilable... yes
checking if socketpair usage allowed... yes
checking if socketpair might be used... yes
checking if strcasecmp can be linked... yes
checking if strcasecmp is prototyped... yes
checking if strcasecmp is compilable... yes
checking if strcasecmp usage allowed... yes
checking if strcasecmp might be used... yes
checking if strcmpi can be linked... no
checking if strcmpi might be used... no
checking if strdup can be linked... yes
checking if strdup is prototyped... yes
checking if strdup is compilable... yes
checking if strdup usage allowed... yes
checking if strdup might be used... yes
checking if strerror_r can be linked... yes
checking if strerror_r is prototyped... yes
checking if strerror_r is compilable... yes
checking if strerror_r is glibc like... no
checking if strerror_r is POSIX like... yes
checking if strerror_r seems to work... yes
checking if strerror_r usage allowed... yes
checking if strerror_r might be used... yes
checking if stricmp can be linked... no
checking if stricmp might be used... no
checking if strncasecmp can be linked... yes
checking if strncasecmp is prototyped... yes
checking if strncasecmp is compilable... yes
checking if strncasecmp usage allowed... yes
checking if strncasecmp might be used... yes
checking if strncmpi can be linked... no
checking if strncmpi might be used... no
checking if strnicmp can be linked... no
checking if strnicmp might be used... no
checking if strstr can be linked... yes
checking if strstr is prototyped... yes
checking if strstr is compilable... yes
checking if strstr usage allowed... yes
checking if strstr might be used... yes
checking if strtok_r can be linked... yes
checking if strtok_r is prototyped... yes
checking if strtok_r is compilable... yes
checking if strtok_r usage allowed... yes
checking if strtok_r might be used... yes
checking if strtoll can be linked... yes
checking if strtoll is prototyped... yes
checking if strtoll is compilable... yes
checking if strtoll usage allowed... yes
checking if strtoll might be used... yes
checking for sys/types.h... (cached) yes
checking for sys/uio.h... (cached) yes
checking if writev can be linked... yes
checking if writev is prototyped... yes
checking if writev is compilable... yes
checking if writev usage allowed... yes
checking if writev might be used... yes
checking whether getpwuid_r is declared... yes
checking for fnmatch... yes
checking for geteuid... yes
checking for getpass_r... no
checking deeper for getpass_r... but still no
checking for getppid... yes
checking for getpwuid... yes
checking for getpwuid_r... yes
checking for getrlimit... yes
checking for gettimeofday... yes
checking for if_nametoindex... yes
checking for mach_absolute_time... no
checking deeper for mach_absolute_time... but still no
checking for pipe... yes
checking for setlocale... yes
checking for setmode... no
checking deeper for setmode... but still no
checking for setrlimit... yes
checking for usleep... yes
checking for utime... yes
checking for utimes... yes
checking how to set a socket into non-blocking mode... fcntl O_NONBLOCK
checking for perl... /gnu/store/ziinjmbnq004866mwjrczsk12wf35qb8-perl-5.30.0/bin/perl
checking for gnroff... no
checking for nroff... /gnu/store/hhwzzrg3cjzcwki6irmxssakppphdifh-groff-1.22.4/bin/nroff
checking how to use *nroff to get plain text from man pages... -man
checking whether to enable the threaded resolver... yes
checking whether to use POSIX threads for threaded resolver... auto
checking pthread.h usability... yes
checking pthread.h presence... yes
checking for pthread.h... yes
checking for pthread_create... no
checking for pthread_create in -lpthread... yes
checking whether to enable verbose strings... yes
checking whether to enable SSPI support (Windows native builds only)... no
checking whether to enable cryptographic authentication methods... yes
checking whether to enable NTLM delegation to winbind's helper... yes
checking whether to enable TLS-SRP authentication... yes
checking whether to enable Unix domain sockets... auto
checking for struct sockaddr_un.sun_path... yes
checking whether to support cookies... yes
checking whether to support HTTP authentication... yes
checking whether to support DoH... yes
checking whether to support the MIME API... yes
checking whether to support date parsing... yes
checking whether to support netrc parsing... yes
checking whether to support progress-meter... yes
checking whether to support DNS shuffling... yes
checking whether to support alt-svc... no
checking whether hiding of library internal symbols will actually happen... yes
configure: using LIBS: -lnghttp2 -lidn2 -lnettle -lgnutls -L/gnu/store/4rs159kgsa0l1svi5vbvn86in7z28bpl-mit-krb5-1.17/lib -Wl,--enable-new-dtags -Wl,-rpath -Wl,/gnu/store/4rs159kgsa0l1svi5vbvn86in7z28bpl-mit-krb5-1.17/lib -lgssapi_krb5 -lkrb5 -lk5crypto -lcom_err -lldap -llber -lz
configure: LIBS note: LIBS should only be used to specify libraries (-lname).
configure: WARNING: Continuing even with errors mentioned immediately above this line.
checking that generated files are newer than configure... done
configure: creating ./config.status
config.status: creating Makefile
config.status: creating docs/Makefile
config.status: creating docs/examples/Makefile
config.status: creating docs/libcurl/Makefile
config.status: creating docs/libcurl/opts/Makefile
config.status: creating docs/cmdline-opts/Makefile
config.status: creating include/Makefile
config.status: creating include/curl/Makefile
config.status: creating src/Makefile
config.status: creating lib/Makefile
config.status: creating scripts/Makefile
config.status: creating lib/libcurl.vers
config.status: creating tests/Makefile
config.status: creating tests/certs/Makefile
config.status: creating tests/certs/scripts/Makefile
config.status: creating tests/data/Makefile
config.status: creating tests/server/Makefile
config.status: creating tests/libtest/Makefile
config.status: creating tests/unit/Makefile
config.status: creating packages/Makefile
config.status: creating packages/vms/Makefile
config.status: creating curl-config
config.status: creating libcurl.pc
config.status: creating lib/curl_config.h
config.status: executing depfiles commands
config.status: executing libtool commands
configure: amending lib/Makefile
configure: amending src/Makefile
configure: amending tests/unit/Makefile
configure: amending tests/server/Makefile
configure: amending tests/libtest/Makefile
configure: amending docs/examples/Makefile
configure: Configured to build curl/libcurl:

  Host setup:       x86_64-unknown-linux-gnu
  Install prefix:   /gnu/store/2rb60gps59qb1z6p8d3xnj375igry4fq-curl-7.66.0
  Compiler:         gcc
   CFLAGS:          -Werror-implicit-function-declaration -O2 -Wno-system-headers -pthread
   CPPFLAGS:        -I/gnu/store/4rs159kgsa0l1svi5vbvn86in7z28bpl-mit-krb5-1.17/include
   LDFLAGS:         -L/gnu/store/qx7p7hiq90mi7r78hcr9cyskccy2j4bg-zlib-1.2.11/lib -L/gnu/store/ms32lbgjkz2vwk0ih79ysygs3dxaydix-gnutls-3.6.10/lib -L/gnu/store/7gabmw9siqrz79slpi1f8i90v3w1638x-libidn2-2.2.0/lib -L/gnu/store/zavdh2z5mwkakjf1v98x43w1hzjzxkhl-nghttp2-1.39.1-lib/lib
   LIBS:            -lnghttp2 -lidn2 -lnettle -lgnutls -L/gnu/store/4rs159kgsa0l1svi5vbvn86in7z28bpl-mit-krb5-1.17/lib -Wl,--enable-new-dtags -Wl,-rpath -Wl,/gnu/store/4rs159kgsa0l1svi5vbvn86in7z28bpl-mit-krb5-1.17/lib -lgssapi_krb5 -lkrb5 -lk5crypto -lcom_err -lldap -llber -lz

  curl version:     7.66.0
  SSL:              enabled (GnuTLS)
  SSH:              no      (--with-libssh2)
  zlib:             enabled
  brotli:           no      (--with-brotli)
  GSS-API:          enabled (MIT Kerberos/Heimdal)
  TLS-SRP:          enabled
  resolver:         POSIX threaded
  IPv6:             enabled
  Unix sockets:     enabled
  IDN:              enabled (libidn2)
  Build libcurl:    Shared=yes, Static=no
  Built-in manual:  enabled
  --libcurl option: enabled (--disable-libcurl-option)
  Verbose errors:   enabled (--disable-verbose)
  Code coverage:    disabled
  SSPI:             no      (--enable-sspi)
  ca cert bundle:   no
  ca cert path:     no
  ca fallback:      no
  LDAP:             enabled (OpenLDAP)
  LDAPS:            enabled
  RTSP:             enabled
  RTMP:             no      (--with-librtmp)
  Metalink:         no      (--with-libmetalink)
  PSL:              no      (libpsl not found)
  Alt-svc:          no      (--enable-alt-svc)
  HTTP2:            enabled (nghttp2)
  HTTP3:            disabled (--with-ngtcp2, --with-quiche)
  Protocols:        DICT FILE FTP FTPS GOPHER HTTP HTTPS IMAP IMAPS LDAP LDAPS POP3 POP3S RTSP SMB SMBS SMTP SMTPS TELNET TFTP
  Features:         SSL IPv6 UnixSockets libz AsynchDNS IDN GSS-API SPNEGO Kerberos NTLM NTLM_WB TLS-SRP HTTP2 HTTPS-proxy

phase `configure' succeeded after 55.7 seconds
starting phase `patch-generated-file-shebangs'
patch-shebang: ./plan9/lib/mkfile.inc: warning: no binary for interpreter `rc' found in $PATH
patch-shebang: ./plan9/src/mkfile.inc: warning: no binary for interpreter `rc' found in $PATH
phase `patch-generated-file-shebangs' succeeded after 7.1 seconds
starting phase `build'
Making all in lib
make[1]: Entering directory '/tmp/guix-build-curl-7.66.0.drv-0/curl-7.66.0/lib'
make  all-am
make[2]: Entering directory '/tmp/guix-build-curl-7.66.0.drv-0/curl-7.66.0/lib'
  CC       libcurl_la-file.lo
  CC       libcurl_la-timeval.lo
  CC       libcurl_la-base64.lo
  CC       libcurl_la-hostip.lo
  CC       libcurl_la-progress.lo
  CC       libcurl_la-formdata.lo
  CC       libcurl_la-cookie.lo
  CC       libcurl_la-http.lo
  CC       libcurl_la-sendf.lo
  CC       libcurl_la-ftp.lo
  CC       libcurl_la-url.lo
  CC       libcurl_la-dict.lo
  CC       libcurl_la-if2ip.lo
  CC       libcurl_la-speedcheck.lo
  CC       libcurl_la-ldap.lo
  CC       libcurl_la-version.lo
  CC       libcurl_la-getenv.lo
  CC       libcurl_la-escape.lo
  CC       libcurl_la-mprintf.lo
  CC       libcurl_la-telnet.lo
  CC       libcurl_la-netrc.lo
  CC       libcurl_la-getinfo.lo
  CC       libcurl_la-transfer.lo
  CC       libcurl_la-strcase.lo
  CC       libcurl_la-easy.lo
  CC       libcurl_la-security.lo
  CC       libcurl_la-curl_fnmatch.lo
  CC       libcurl_la-fileinfo.lo
  CC       libcurl_la-ftplistparser.lo
  CC       libcurl_la-wildcard.lo
  CC       libcurl_la-krb5.lo
  CC       libcurl_la-memdebug.lo
  CC       libcurl_la-http_chunks.lo
  CC       libcurl_la-strtok.lo
  CC       libcurl_la-connect.lo
  CC       libcurl_la-llist.lo
  CC       libcurl_la-hash.lo
  CC       libcurl_la-multi.lo
  CC       libcurl_la-content_encoding.lo
  CC       libcurl_la-share.lo
  CC       libcurl_la-http_digest.lo
  CC       libcurl_la-md4.lo
  CC       libcurl_la-md5.lo
  CC       libcurl_la-http_negotiate.lo
  CC       libcurl_la-inet_pton.lo
  CC       libcurl_la-strtoofft.lo
  CC       libcurl_la-strerror.lo
  CC       libcurl_la-amigaos.lo
  CC       libcurl_la-hostasyn.lo
  CC       libcurl_la-hostip4.lo
  CC       libcurl_la-hostip6.lo
  CC       libcurl_la-hostsyn.lo
  CC       libcurl_la-inet_ntop.lo
  CC       libcurl_la-parsedate.lo
  CC       libcurl_la-select.lo
  CC       libcurl_la-tftp.lo
  CC       libcurl_la-splay.lo
  CC       libcurl_la-strdup.lo
  CC       libcurl_la-socks.lo
  CC       libcurl_la-curl_addrinfo.lo
  CC       libcurl_la-socks_gssapi.lo
  CC       libcurl_la-socks_sspi.lo
  CC       libcurl_la-curl_sspi.lo
  CC       libcurl_la-slist.lo
  CC       libcurl_la-nonblock.lo
  CC       libcurl_la-curl_memrchr.lo
  CC       libcurl_la-imap.lo
  CC       libcurl_la-pop3.lo
  CC       libcurl_la-smtp.lo
  CC       libcurl_la-pingpong.lo
  CC       libcurl_la-rtsp.lo
  CC       libcurl_la-curl_threads.lo
  CC       libcurl_la-warnless.lo
  CC       libcurl_la-hmac.lo
  CC       libcurl_la-curl_rtmp.lo
  CC       libcurl_la-openldap.lo
  CC       libcurl_la-curl_gethostname.lo
  CC       libcurl_la-gopher.lo
  CC       libcurl_la-idn_win32.lo
  CC       libcurl_la-http_proxy.lo
  CC       libcurl_la-non-ascii.lo
  CC       libcurl_la-asyn-ares.lo
  CC       libcurl_la-asyn-thread.lo
  CC       libcurl_la-curl_gssapi.lo
  CC       libcurl_la-http_ntlm.lo
  CC       libcurl_la-curl_ntlm_wb.lo
  CC       libcurl_la-curl_ntlm_core.lo
  CC       libcurl_la-curl_sasl.lo
  CC       libcurl_la-rand.lo
  CC       libcurl_la-curl_multibyte.lo
  CC       libcurl_la-hostcheck.lo
  CC       libcurl_la-conncache.lo
  CC       libcurl_la-dotdot.lo
  CC       libcurl_la-x509asn1.lo
  CC       libcurl_la-http2.lo
  CC       libcurl_la-smb.lo
  CC       libcurl_la-curl_endian.lo
  CC       libcurl_la-curl_des.lo
  CC       libcurl_la-system_win32.lo
  CC       libcurl_la-mime.lo
  CC       libcurl_la-sha256.lo
  CC       libcurl_la-setopt.lo
  CC       libcurl_la-curl_path.lo
  CC       libcurl_la-curl_ctype.lo
  CC       libcurl_la-curl_range.lo
  CC       libcurl_la-psl.lo
  CC       libcurl_la-doh.lo
  CC       libcurl_la-urlapi.lo
  CC       libcurl_la-curl_get_line.lo
  CC       libcurl_la-altsvc.lo
  CC       vauth/libcurl_la-vauth.lo
  CC       vauth/libcurl_la-cleartext.lo
  CC       vauth/libcurl_la-cram.lo
  CC       vauth/libcurl_la-digest.lo
  CC       vauth/libcurl_la-digest_sspi.lo
  CC       vauth/libcurl_la-krb5_gssapi.lo
  CC       vauth/libcurl_la-krb5_sspi.lo
  CC       vauth/libcurl_la-ntlm.lo
  CC       vauth/libcurl_la-ntlm_sspi.lo
  CC       vauth/libcurl_la-oauth2.lo
  CC       vauth/libcurl_la-spnego_gssapi.lo
  CC       vauth/libcurl_la-spnego_sspi.lo
  CC       vtls/libcurl_la-openssl.lo
  CC       vtls/libcurl_la-gtls.lo
  CC       vtls/libcurl_la-vtls.lo
  CC       vtls/libcurl_la-nss.lo
  CC       vtls/libcurl_la-polarssl.lo
  CC       vtls/libcurl_la-polarssl_threadlock.lo
  CC       vtls/libcurl_la-wolfssl.lo
  CC       vtls/libcurl_la-schannel.lo
  CC       vtls/libcurl_la-schannel_verify.lo
  CC       vtls/libcurl_la-sectransp.lo
  CC       vtls/libcurl_la-gskit.lo
  CC       vtls/libcurl_la-mbedtls.lo
  CC       vtls/libcurl_la-mesalink.lo
  CC       vquic/libcurl_la-ngtcp2.lo
  CC       vquic/libcurl_la-quiche.lo
  CC       vssh/libcurl_la-libssh2.lo
  CC       vssh/libcurl_la-libssh.lo
  CCLD     libcurl.la
make[2]: Leaving directory '/tmp/guix-build-curl-7.66.0.drv-0/curl-7.66.0/lib'
make[1]: Leaving directory '/tmp/guix-build-curl-7.66.0.drv-0/curl-7.66.0/lib'
Making all in src
make[1]: Entering directory '/tmp/guix-build-curl-7.66.0.drv-0/curl-7.66.0/src'
Making all in ../docs
make[2]: Entering directory '/tmp/guix-build-curl-7.66.0.drv-0/curl-7.66.0/docs'
Making all in .
make[3]: Entering directory '/tmp/guix-build-curl-7.66.0.drv-0/curl-7.66.0/docs'
make[3]: Nothing to be done for 'all-am'.
make[3]: Leaving directory '/tmp/guix-build-curl-7.66.0.drv-0/curl-7.66.0/docs'
Making all in cmdline-opts
make[3]: Entering directory '/tmp/guix-build-curl-7.66.0.drv-0/curl-7.66.0/docs/cmdline-opts'
make[3]: Nothing to be done for 'all'.
make[3]: Leaving directory '/tmp/guix-build-curl-7.66.0.drv-0/curl-7.66.0/docs/cmdline-opts'
make[2]: Leaving directory '/tmp/guix-build-curl-7.66.0.drv-0/curl-7.66.0/docs'
make[2]: Entering directory '/tmp/guix-build-curl-7.66.0.drv-0/curl-7.66.0/src'
  CC       curl-slist_wc.o
  CC       curl-tool_binmode.o
  CC       curl-tool_bname.o
  CC       curl-tool_cb_dbg.o
  CC       curl-tool_cb_hdr.o
  CC       curl-tool_cb_prg.o
  CC       curl-tool_cb_rea.o
  CC       curl-tool_cb_see.o
  CC       curl-tool_cb_wrt.o
  CC       curl-tool_cfgable.o
  CC       curl-tool_convert.o
  CC       curl-tool_dirhie.o
  CC       curl-tool_doswin.o
  CC       curl-tool_easysrc.o
  CC       curl-tool_filetime.o
  CC       curl-tool_formparse.o
  CC       curl-tool_getparam.o
  CC       curl-tool_getpass.o
  CC       curl-tool_help.o
  CC       curl-tool_helpers.o
  CC       curl-tool_homedir.o
  CC       curl-tool_hugehelp.o
  CC       curl-tool_libinfo.o
  CC       curl-tool_main.o
  CC       curl-tool_metalink.o
  CC       curl-tool_msgs.o
  CC       curl-tool_operate.o
  CC       curl-tool_operhlp.o
  CC       curl-tool_panykey.o
  CC       curl-tool_paramhlp.o
  CC       curl-tool_parsecfg.o
  CC       curl-tool_progress.o
  CC       curl-tool_strdup.o
  CC       curl-tool_setopt.o
  CC       curl-tool_sleep.o
  CC       curl-tool_urlglob.o
  CC       curl-tool_util.o
  CC       curl-tool_vms.o
  CC       curl-tool_writeout.o
  CC       curl-tool_xattr.o
  CC       ../lib/curl-strtoofft.o
  CC       ../lib/curl-nonblock.o
  CC       ../lib/curl-warnless.o
  CC       ../lib/curl-curl_ctype.o
  CCLD     curl
make[2]: Leaving directory '/tmp/guix-build-curl-7.66.0.drv-0/curl-7.66.0/src'
make[1]: Leaving directory '/tmp/guix-build-curl-7.66.0.drv-0/curl-7.66.0/src'
make[1]: Entering directory '/tmp/guix-build-curl-7.66.0.drv-0/curl-7.66.0'
make[1]: Nothing to be done for 'all-am'.
make[1]: Leaving directory '/tmp/guix-build-curl-7.66.0.drv-0/curl-7.66.0'
phase `build' succeeded after 34.0 seconds
starting phase `check'
make: Entering directory '/tmp/guix-build-curl-7.66.0.drv-0/curl-7.66.0/tests'
Making all in certs
make[1]: Entering directory '/tmp/guix-build-curl-7.66.0.drv-0/curl-7.66.0/tests/certs'
Making all in scripts
make[2]: Entering directory '/tmp/guix-build-curl-7.66.0.drv-0/curl-7.66.0/tests/certs/scripts'
make[2]: Nothing to be done for 'all'.
make[2]: Leaving directory '/tmp/guix-build-curl-7.66.0.drv-0/curl-7.66.0/tests/certs/scripts'
make[2]: Entering directory '/tmp/guix-build-curl-7.66.0.drv-0/curl-7.66.0/tests/certs'
make[2]: Nothing to be done for 'all-am'.
make[2]: Leaving directory '/tmp/guix-build-curl-7.66.0.drv-0/curl-7.66.0/tests/certs'
make[1]: Leaving directory '/tmp/guix-build-curl-7.66.0.drv-0/curl-7.66.0/tests/certs'
Making all in data
make[1]: Entering directory '/tmp/guix-build-curl-7.66.0.drv-0/curl-7.66.0/tests/data'
make[1]: Nothing to be done for 'all'.
make[1]: Leaving directory '/tmp/guix-build-curl-7.66.0.drv-0/curl-7.66.0/tests/data'
Making all in server
make[1]: Entering directory '/tmp/guix-build-curl-7.66.0.drv-0/curl-7.66.0/tests/server'
  CC       ../../lib/getpart-mprintf.o
  CC       ../../lib/getpart-nonblock.o
  CC       ../../lib/getpart-strtoofft.o
  CC       ../../lib/getpart-warnless.o
  CC       ../../lib/getpart-curl_ctype.o
  CC       getpart-getpart.o
  CC       ../../lib/getpart-base64.o
  CC       ../../lib/getpart-memdebug.o
  CC       getpart-testpart.o
  CCLD     getpart
  CC       ../../lib/resolve-mprintf.o
  CC       ../../lib/resolve-nonblock.o
  CC       ../../lib/resolve-strtoofft.o
  CC       ../../lib/resolve-warnless.o
  CC       ../../lib/resolve-curl_ctype.o
  CC       resolve-getpart.o
  CC       ../../lib/resolve-base64.o
  CC       ../../lib/resolve-memdebug.o
  CC       resolve-util.o
  CC       resolve-resolve.o
  CCLD     resolve
  CC       ../../lib/rtspd-mprintf.o
  CC       ../../lib/rtspd-nonblock.o
  CC       ../../lib/rtspd-strtoofft.o
  CC       ../../lib/rtspd-warnless.o
  CC       ../../lib/rtspd-curl_ctype.o
  CC       rtspd-getpart.o
  CC       ../../lib/rtspd-base64.o
  CC       ../../lib/rtspd-memdebug.o
  CC       rtspd-util.o
  CC       rtspd-rtspd.o
  CCLD     rtspd
  CC       ../../lib/sockfilt-mprintf.o
  CC       ../../lib/sockfilt-nonblock.o
  CC       ../../lib/sockfilt-strtoofft.o
  CC       ../../lib/sockfilt-warnless.o
  CC       ../../lib/sockfilt-curl_ctype.o
  CC       sockfilt-getpart.o
  CC       ../../lib/sockfilt-base64.o
  CC       ../../lib/sockfilt-memdebug.o
  CC       sockfilt-util.o
  CC       sockfilt-sockfilt.o
  CC       ../../lib/sockfilt-inet_pton.o
  CCLD     sockfilt
  CC       ../../lib/sws-mprintf.o
  CC       ../../lib/sws-nonblock.o
  CC       ../../lib/sws-strtoofft.o
  CC       ../../lib/sws-warnless.o
  CC       ../../lib/sws-curl_ctype.o
  CC       sws-getpart.o
  CC       ../../lib/sws-base64.o
  CC       ../../lib/sws-memdebug.o
  CC       sws-util.o
  CC       sws-sws.o
  CC       ../../lib/sws-inet_pton.o
  CCLD     sws
  CC       ../../lib/tftpd-mprintf.o
  CC       ../../lib/tftpd-nonblock.o
  CC       ../../lib/tftpd-strtoofft.o
  CC       ../../lib/tftpd-warnless.o
  CC       ../../lib/tftpd-curl_ctype.o
  CC       tftpd-getpart.o
  CC       ../../lib/tftpd-base64.o
  CC       ../../lib/tftpd-memdebug.o
  CC       tftpd-util.o
  CC       tftpd-tftpd.o
  CCLD     tftpd
  CC       ../../lib/fake_ntlm-mprintf.o
  CC       ../../lib/fake_ntlm-nonblock.o
  CC       ../../lib/fake_ntlm-strtoofft.o
  CC       ../../lib/fake_ntlm-warnless.o
  CC       ../../lib/fake_ntlm-curl_ctype.o
  CC       fake_ntlm-getpart.o
  CC       ../../lib/fake_ntlm-base64.o
  CC       ../../lib/fake_ntlm-memdebug.o
  CC       fake_ntlm-util.o
  CC       fake_ntlm-fake_ntlm.o
  CCLD     fake_ntlm
  CC       ../../lib/socksd-mprintf.o
  CC       ../../lib/socksd-nonblock.o
  CC       ../../lib/socksd-strtoofft.o
  CC       ../../lib/socksd-warnless.o
  CC       ../../lib/socksd-curl_ctype.o
  CC       socksd-getpart.o
  CC       ../../lib/socksd-base64.o
  CC       ../../lib/socksd-memdebug.o
  CC       socksd-util.o
  CC       socksd-socksd.o
  CC       ../../lib/socksd-inet_pton.o
  CCLD     socksd
  CC       disabled.o
  CCLD     disabled
make[1]: Leaving directory '/tmp/guix-build-curl-7.66.0.drv-0/curl-7.66.0/tests/server'
Making all in libtest
make[1]: Entering directory '/tmp/guix-build-curl-7.66.0.drv-0/curl-7.66.0/tests/libtest'
  CC       chkhostname-chkhostname.o
  CC       ../../lib/chkhostname-curl_gethostname.o
  CCLD     chkhostname
  CC       libauthretry-libauthretry.o
  CC       libauthretry-first.o
  CCLD     libauthretry
  CC       libntlmconnect-libntlmconnect.o
  CC       libntlmconnect-first.o
  CC       libntlmconnect-testutil.o
  CC       ../../lib/libntlmconnect-warnless.o
  CCLD     libntlmconnect
  CC       chkdecimalpoint-chkdecimalpoint.o
  CC       ../../lib/chkdecimalpoint-mprintf.o
  CC       ../../lib/chkdecimalpoint-curl_ctype.o
  CCLD     chkdecimalpoint
  CC       lib500-lib500.o
  CC       lib500-first.o
  CC       lib500-testutil.o
  CC       lib500-testtrace.o
  CCLD     lib500
  CC       lib501-lib501.o
  CC       lib501-first.o
  CCLD     lib501
  CC       lib502-lib502.o
  CC       lib502-first.o
  CC       lib502-testutil.o
  CC       ../../lib/lib502-warnless.o
  CCLD     lib502
  CC       lib503-lib503.o
  CC       lib503-first.o
  CC       lib503-testutil.o
  CC       ../../lib/lib503-warnless.o
  CCLD     lib503
  CC       lib504-lib504.o
  CC       lib504-first.o
  CC       lib504-testutil.o
  CC       ../../lib/lib504-warnless.o
  CCLD     lib504
  CC       lib505-lib505.o
  CC       lib505-first.o
  CCLD     lib505
  CC       lib506-lib506.o
  CC       lib506-first.o
  CCLD     lib506
  CC       lib507-lib507.o
  CC       lib507-first.o
  CC       lib507-testutil.o
  CC       ../../lib/lib507-warnless.o
  CCLD     lib507
  CC       lib508-lib508.o
  CC       lib508-first.o
  CCLD     lib508
  CC       lib509-lib509.o
  CC       lib509-first.o
  CCLD     lib509
  CC       lib510-lib510.o
  CC       lib510-first.o
  CCLD     lib510
  CC       lib511-lib511.o
  CC       lib511-first.o
  CCLD     lib511
  CC       lib512-lib512.o
  CC       lib512-first.o
  CCLD     lib512
  CC       lib513-lib513.o
  CC       lib513-first.o
  CCLD     lib513
  CC       lib514-lib514.o
  CC       lib514-first.o
  CCLD     lib514
  CC       lib515-lib515.o
  CC       lib515-first.o
  CCLD     lib515
  CC       lib516-lib516.o
  CC       lib516-first.o
  CCLD     lib516
  CC       lib517-lib517.o
  CC       lib517-first.o
  CCLD     lib517
  CC       lib518-lib518.o
  CC       lib518-first.o
  CC       ../../lib/lib518-warnless.o
  CCLD     lib518
  CC       lib519-lib519.o
  CC       lib519-first.o
  CCLD     lib519
  CC       lib520-lib520.o
  CC       lib520-first.o
  CCLD     lib520
  CC       lib521-lib521.o
  CC       lib521-first.o
  CCLD     lib521
  CC       lib523-lib523.o
  CC       lib523-first.o
  CCLD     lib523
  CC       lib524-lib524.o
  CC       lib524-first.o
  CCLD     lib524
  CC       lib525-lib525.o
  CC       lib525-first.o
  CC       lib525-testutil.o
  CC       ../../lib/lib525-warnless.o
  CCLD     lib525
  CC       lib526-lib526.o
  CC       lib526-first.o
  CC       lib526-testutil.o
  CC       ../../lib/lib526-warnless.o
  CCLD     lib526
  CC       lib527-lib526.o
  CC       lib527-first.o
  CC       lib527-testutil.o
  CC       ../../lib/lib527-warnless.o
  CCLD     lib527
  CC       lib529-lib525.o
  CC       lib529-first.o
  CC       lib529-testutil.o
  CC       ../../lib/lib529-warnless.o
  CCLD     lib529
  CC       lib530-lib530.o
  CC       lib530-first.o
  CC       lib530-testutil.o
  CC       ../../lib/lib530-warnless.o
  CCLD     lib530
  CC       lib532-lib526.o
  CC       lib532-first.o
  CC       lib532-testutil.o
  CC       ../../lib/lib532-warnless.o
  CCLD     lib532
  CC       lib533-lib533.o
  CC       lib533-first.o
  CC       lib533-testutil.o
  CC       ../../lib/lib533-warnless.o
  CCLD     lib533
  CC       lib537-lib537.o
  CC       lib537-first.o
  CC       ../../lib/lib537-warnless.o
  CCLD     lib537
  CC       lib539-lib539.o
  CC       lib539-first.o
  CCLD     lib539
  CC       lib540-lib540.o
  CC       lib540-first.o
  CC       lib540-testutil.o
  CC       ../../lib/lib540-warnless.o
  CCLD     lib540
  CC       lib541-lib541.o
  CC       lib541-first.o
  CCLD     lib541
  CC       lib542-lib542.o
  CC       lib542-first.o
  CCLD     lib542
  CC       lib543-lib543.o
  CC       lib543-first.o
  CCLD     lib543
  CC       lib544-lib544.o
  CC       lib544-first.o
  CCLD     lib544
  CC       lib545-lib544.o
  CC       lib545-first.o
  CCLD     lib545
  CC       lib547-lib547.o
  CC       lib547-first.o
  CCLD     lib547
  CC       lib548-lib547.o
  CC       lib548-first.o
  CCLD     lib548
  CC       lib549-lib549.o
  CC       lib549-first.o
  CCLD     lib549
  CC       lib552-lib552.o
  CC       lib552-first.o
  CC       ../../lib/lib552-warnless.o
  CCLD     lib552
  CC       lib553-lib553.o
  CC       lib553-first.o
  CCLD     lib553
  CC       lib554-lib554.o
  CC       lib554-first.o
  CCLD     lib554
  CC       lib555-lib555.o
  CC       lib555-first.o
  CC       lib555-testutil.o
  CC       ../../lib/lib555-warnless.o
  CCLD     lib555
  CC       lib556-lib556.o
  CC       lib556-first.o
  CC       ../../lib/lib556-warnless.o
  CCLD     lib556
  CC       lib557-lib557.o
  CC       lib557-first.o
  CCLD     lib557
  CC       lib558-lib558.o
  CC       lib558-first.o
  CCLD     lib558
  CC       lib559-lib559.o
  CC       lib559-first.o
  CCLD     lib559
  CC       lib560-lib560.o
  CC       lib560-first.o
  CC       lib560-testutil.o
  CC       ../../lib/lib560-warnless.o
  CCLD     lib560
  CC       lib562-lib562.o
  CC       lib562-first.o
  CCLD     lib562
  CC       lib564-lib564.o
  CC       lib564-first.o
  CC       lib564-testutil.o
  CC       ../../lib/lib564-warnless.o
  CCLD     lib564
  CC       lib565-lib510.o
  CC       lib565-first.o
  CCLD     lib565
  CC       lib566-lib566.o
  CC       lib566-first.o
  CCLD     lib566
  CC       lib567-lib567.o
  CC       lib567-first.o
  CCLD     lib567
  CC       lib568-lib568.o
  CC       lib568-first.o
  CCLD     lib568
  CC       lib569-lib569.o
  CC       lib569-first.o
  CCLD     lib569
  CC       lib570-lib570.o
  CC       lib570-first.o
  CCLD     lib570
  CC       lib571-lib571.o
  CC       lib571-first.o
  CC       ../../lib/lib571-warnless.o
  CCLD     lib571
  CC       lib572-lib572.o
  CC       lib572-first.o
  CCLD     lib572
  CC       lib573-lib573.o
  CC       lib573-first.o
  CC       lib573-testutil.o
  CC       ../../lib/lib573-warnless.o
  CC       lib573-testtrace.o
  CCLD     lib573
  CC       lib574-lib574.o
  CC       lib574-first.o
  CCLD     lib574
  CC       lib575-lib575.o
  CC       lib575-first.o
  CC       lib575-testutil.o
  CC       ../../lib/lib575-warnless.o
  CCLD     lib575
  CC       lib576-lib576.o
  CC       lib576-first.o
  CCLD     lib576
  CC       lib578-lib578.o
  CC       lib578-first.o
  CCLD     lib578
  CC       lib579-lib579.o
  CC       lib579-first.o
  CCLD     lib579
  CC       lib582-lib582.o
  CC       lib582-first.o
  CC       lib582-testutil.o
  CC       ../../lib/lib582-warnless.o
  CCLD     lib582
  CC       lib583-lib583.o
  CC       lib583-first.o
  CCLD     lib583
  CC       lib585-lib500.o
  CC       lib585-first.o
  CC       lib585-testutil.o
  CC       lib585-testtrace.o
  CCLD     lib585
  CC       lib586-lib586.o
  CC       lib586-first.o
  CCLD     lib586
  CC       lib587-lib554.o
  CC       lib587-first.o
  CCLD     lib587
  CC       lib589-lib589.o
  CC       lib589-first.o
  CCLD     lib589
  CC       lib590-lib590.o
  CC       lib590-first.o
  CCLD     lib590
  CC       lib591-lib591.o
  CC       lib591-first.o
  CC       lib591-testutil.o
  CC       ../../lib/lib591-warnless.o
  CCLD     lib591
  CC       lib597-lib597.o
  CC       lib597-first.o
  CC       lib597-testutil.o
  CC       ../../lib/lib597-warnless.o
  CCLD     lib597
  CC       lib598-lib598.o
  CC       lib598-first.o
  CCLD     lib598
  CC       lib599-lib599.o
  CC       lib599-first.o
  CCLD     lib599
  CC       lib643-lib643.o
  CC       lib643-first.o
  CCLD     lib643
  CC       lib644-lib643.o
  CC       lib644-first.o
  CCLD     lib644
  CC       lib645-lib643.o
  CC       lib645-first.o
  CCLD     lib645
  CC       lib650-lib650.o
  CC       lib650-first.o
  CCLD     lib650
  CC       lib651-lib651.o
  CC       lib651-first.o
  CCLD     lib651
  CC       lib652-lib652.o
  CC       lib652-first.o
  CCLD     lib652
  CC       lib653-lib653.o
  CC       lib653-first.o
  CCLD     lib653
  CC       lib654-lib654.o
  CC       lib654-first.o
  CCLD     lib654
  CC       lib655-lib655.o
  CC       lib655-first.o
  CCLD     lib655
  CC       lib658-lib658.o
  CC       lib658-first.o
  CC       lib658-testutil.o
  CC       ../../lib/lib658-warnless.o
  CCLD     lib658
  CC       lib659-lib659.o
  CC       lib659-first.o
  CC       lib659-testutil.o
  CC       ../../lib/lib659-warnless.o
  CCLD     lib659
  CC       lib1156-lib1156.o
  CC       lib1156-first.o
  CC       lib1156-testutil.o
  CC       ../../lib/lib1156-warnless.o
  CCLD     lib1156
  CC       lib1500-lib1500.o
  CC       lib1500-first.o
  CC       lib1500-testutil.o
  CCLD     lib1500
  CC       lib1501-lib1501.o
  CC       lib1501-first.o
  CC       lib1501-testutil.o
  CC       ../../lib/lib1501-warnless.o
  CCLD     lib1501
  CC       lib1502-lib1502.o
  CC       lib1502-first.o
  CC       lib1502-testutil.o
  CC       ../../lib/lib1502-warnless.o
  CCLD     lib1502
  CC       lib1503-lib1502.o
  CC       lib1503-first.o
  CC       lib1503-testutil.o
  CC       ../../lib/lib1503-warnless.o
  CCLD     lib1503
  CC       lib1504-lib1502.o
  CC       lib1504-first.o
  CC       lib1504-testutil.o
  CC       ../../lib/lib1504-warnless.o
  CCLD     lib1504
  CC       lib1505-lib1502.o
  CC       lib1505-first.o
  CC       lib1505-testutil.o
  CC       ../../lib/lib1505-warnless.o
  CCLD     lib1505
  CC       lib1506-lib1506.o
  CC       lib1506-first.o
  CC       lib1506-testutil.o
  CC       ../../lib/lib1506-warnless.o
  CCLD     lib1506
  CC       lib1507-lib1507.o
  CC       lib1507-first.o
  CC       lib1507-testutil.o
  CC       ../../lib/lib1507-warnless.o
  CCLD     lib1507
  CC       lib1508-lib1508.o
  CC       lib1508-first.o
  CC       lib1508-testutil.o
  CC       ../../lib/lib1508-warnless.o
  CCLD     lib1508
  CC       lib1509-lib1509.o
  CC       lib1509-first.o
  CC       lib1509-testutil.o
  CC       ../../lib/lib1509-warnless.o
  CCLD     lib1509
  CC       lib1510-lib1510.o
  CC       lib1510-first.o
  CC       lib1510-testutil.o
  CC       ../../lib/lib1510-warnless.o
  CCLD     lib1510
  CC       lib1511-lib1511.o
  CC       lib1511-first.o
  CC       lib1511-testutil.o
  CC       ../../lib/lib1511-warnless.o
  CCLD     lib1511
  CC       lib1512-lib1512.o
  CC       lib1512-first.o
  CC       lib1512-testutil.o
  CC       ../../lib/lib1512-warnless.o
  CCLD     lib1512
  CC       lib1513-lib1513.o
  CC       lib1513-first.o
  CC       lib1513-testutil.o
  CC       ../../lib/lib1513-warnless.o
  CCLD     lib1513
  CC       lib1514-lib1514.o
  CC       lib1514-first.o
  CC       lib1514-testutil.o
  CC       ../../lib/lib1514-warnless.o
  CCLD     lib1514
  CC       lib1515-lib1515.o
  CC       lib1515-first.o
  CC       lib1515-testutil.o
  CC       ../../lib/lib1515-warnless.o
  CCLD     lib1515
  CC       lib1517-lib1517.o
  CC       lib1517-first.o
  CCLD     lib1517
  CC       lib1518-lib1518.o
  CC       lib1518-first.o
  CCLD     lib1518
  CC       lib1520-lib1520.o
  CC       lib1520-first.o
  CCLD     lib1520
/gnu/store/ziinjmbnq004866mwjrczsk12wf35qb8-perl-5.30.0/bin/perl ../../tests/libtest/mk-lib1521.pl < ../../include/curl/curl.h > lib1521.c
  CC       lib1521-lib1521.o
  CC       lib1521-first.o
  CCLD     lib1521
  CC       lib1522-lib1522.o
  CC       lib1522-first.o
  CCLD     lib1522
  CC       lib1523-lib1523.o
  CC       lib1523-first.o
  CCLD     lib1523
  CC       lib1525-lib1525.o
  CC       lib1525-first.o
  CC       lib1525-testutil.o
  CC       ../../lib/lib1525-warnless.o
  CCLD     lib1525
  CC       lib1526-lib1526.o
  CC       lib1526-first.o
  CC       lib1526-testutil.o
  CC       ../../lib/lib1526-warnless.o
  CCLD     lib1526
  CC       lib1527-lib1527.o
  CC       lib1527-first.o
  CC       lib1527-testutil.o
  CC       ../../lib/lib1527-warnless.o
  CCLD     lib1527
  CC       lib1528-lib1528.o
  CC       lib1528-first.o
  CC       lib1528-testutil.o
  CC       ../../lib/lib1528-warnless.o
  CCLD     lib1528
  CC       lib1529-lib1529.o
  CC       lib1529-first.o
  CC       lib1529-testutil.o
  CC       ../../lib/lib1529-warnless.o
  CCLD     lib1529
  CC       lib1530-lib1530.o
  CC       lib1530-first.o
  CC       lib1530-testutil.o
  CC       ../../lib/lib1530-warnless.o
  CCLD     lib1530
  CC       lib1531-lib1531.o
  CC       lib1531-first.o
  CC       lib1531-testutil.o
  CC       ../../lib/lib1531-warnless.o
  CCLD     lib1531
  CC       lib1532-lib1532.o
  CC       lib1532-first.o
  CC       lib1532-testutil.o
  CC       ../../lib/lib1532-warnless.o
  CCLD     lib1532
  CC       lib1533-lib1533.o
  CC       lib1533-first.o
  CC       lib1533-testutil.o
  CC       ../../lib/lib1533-warnless.o
  CCLD     lib1533
  CC       lib1534-lib1534.o
  CC       lib1534-first.o
  CC       lib1534-testutil.o
  CC       ../../lib/lib1534-warnless.o
  CCLD     lib1534
  CC       lib1535-lib1535.o
  CC       lib1535-first.o
  CC       lib1535-testutil.o
  CC       ../../lib/lib1535-warnless.o
  CCLD     lib1535
  CC       lib1536-lib1536.o
  CC       lib1536-first.o
  CC       lib1536-testutil.o
  CC       ../../lib/lib1536-warnless.o
  CCLD     lib1536
  CC       lib1537-lib1537.o
  CC       lib1537-first.o
  CC       lib1537-testutil.o
  CC       ../../lib/lib1537-warnless.o
  CCLD     lib1537
  CC       lib1538-lib1538.o
  CC       lib1538-first.o
  CC       lib1538-testutil.o
  CC       ../../lib/lib1538-warnless.o
  CCLD     lib1538
  CC       lib1540-lib1540.o
  CC       lib1540-first.o
  CC       lib1540-testutil.o
  CC       ../../lib/lib1540-warnless.o
  CCLD     lib1540
  CC       lib1541-lib1541.o
  CC       lib1541-first.o
  CC       lib1541-testutil.o
  CC       ../../lib/lib1541-warnless.o
  CCLD     lib1541
  CC       lib1550-lib1550.o
  CC       lib1550-first.o
  CCLD     lib1550
  CC       lib1551-lib1551.o
  CC       lib1551-first.o
  CCLD     lib1551
  CC       lib1552-lib1552.o
  CC       lib1552-first.o
  CC       lib1552-testutil.o
  CCLD     lib1552
  CC       lib1553-lib1553.o
  CC       lib1553-first.o
  CC       lib1553-testutil.o
  CCLD     lib1553
  CC       lib1554-lib1554.o
  CC       lib1554-first.o
  CCLD     lib1554
  CC       lib1555-lib1555.o
  CC       lib1555-first.o
  CC       lib1555-testutil.o
  CC       ../../lib/lib1555-warnless.o
  CCLD     lib1555
  CC       lib1556-lib1556.o
  CC       lib1556-first.o
  CC       lib1556-testutil.o
  CC       ../../lib/lib1556-warnless.o
  CCLD     lib1556
  CC       lib1557-lib1557.o
  CC       lib1557-first.o
  CC       lib1557-testutil.o
  CC       ../../lib/lib1557-warnless.o
  CCLD     lib1557
  CC       lib1558.o
  CC       first.o
  CC       testutil.o
  CC       ../../lib/warnless.o
  CCLD     lib1558
  CC       lib1559.o
  CCLD     lib1559
  CC       lib1560.o
  CCLD     lib1560
  CC       lib1591-lib1591.o
  CC       lib1591-first.o
  CC       lib1591-testutil.o
  CC       ../../lib/lib1591-warnless.o
  CCLD     lib1591
  CC       lib1592-lib1592.o
  CC       lib1592-first.o
  CC       lib1592-testutil.o
  CC       ../../lib/lib1592-warnless.o
  CCLD     lib1592
  CC       lib1593.o
  CCLD     lib1593
  CC       lib1594.o
  CCLD     lib1594
  CC       lib1596-lib1594.o
  CC       lib1596-first.o
  CC       lib1596-testutil.o
  CC       ../../lib/lib1596-warnless.o
  CCLD     lib1596
  CC       lib1900-lib1900.o
  CC       lib1900-first.o
  CC       lib1900-testutil.o
  CC       ../../lib/lib1900-warnless.o
  CCLD     lib1900
  CC       lib1905-lib1905.o
  CC       lib1905-first.o
  CC       lib1905-testutil.o
  CC       ../../lib/lib1905-warnless.o
  CCLD     lib1905
  CC       lib1906-lib1906.o
  CC       lib1906-first.o
  CC       lib1906-testutil.o
  CC       ../../lib/lib1906-warnless.o
  CCLD     lib1906
  CC       lib2033-libntlmconnect.o
  CC       lib2033-first.o
  CC       lib2033-testutil.o
  CC       ../../lib/lib2033-warnless.o
  CCLD     lib2033
  CC       libhostname_la-sethostname.lo
  CCLD     libhostname.la
  CC       libstubgss_la-stub_gssapi.lo
  CCLD     libstubgss.la
make[1]: Leaving directory '/tmp/guix-build-curl-7.66.0.drv-0/curl-7.66.0/tests/libtest'
make[1]: Entering directory '/tmp/guix-build-curl-7.66.0.drv-0/curl-7.66.0/tests'
make[1]: Nothing to be done for 'all-am'.
make[1]: Leaving directory '/tmp/guix-build-curl-7.66.0.drv-0/curl-7.66.0/tests'
srcdir=. /gnu/store/ziinjmbnq004866mwjrczsk12wf35qb8-perl-5.30.0/bin/perl -I. ./runtests.pl 
Can't exec "hostname": No such file or directory at ./runtests.pl line 557.
********* System characteristics ******** 
* curl 7.66.0 (x86_64-unknown-linux-gnu) 
* libcurl/7.66.0 GnuTLS/3.6.10 zlib/1.2.11 libidn2/2.2.0 nghttp2/1.39.1
* Features: AsynchDNS GSS-API HTTP2 HTTPS-proxy IDN IPv6 Kerberos Largefile libz NTLM NTLM_WB SPNEGO SSL TLS-SRP UnixSockets
* Disabled: 
* Host: * System: Linux localhost 5.3.8-gnu #1 SMP 1 x86_64 GNU/Linux
* Servers: HTTP-IPv6 HTTP-unix FTP-IPv6 
* Env: 
***************************************** 
test 0001...[HTTP GET]
--pd---e--- OK (1   out of 1249, remaining: 43:52, took 2.1s, duration: 00:02)
test 0002...[HTTP GET with user and password]
--pd---e--- OK (2   out of 1249, remaining: 23:03, took 0.1s, duration: 00:02)
test 0003...[HTTP POST with auth and contents but with content-length set to 0]
--pd---e--- OK (3   out of 1249, remaining: 15:46, took 0.1s, duration: 00:02)
test 0004...[Replaced internal and added custom HTTP headers]
--pd---e--- OK (4   out of 1249, remaining: 12:40, took 0.2s, duration: 00:02)
test 0005...[HTTP over proxy]
--pd---e--- OK (5   out of 1249, remaining: 10:35, took 0.1s, duration: 00:02)
test 0006...[HTTP with simple cookie send]
--pd---e--- OK (6   out of 1249, remaining: 09:11, took 0.1s, duration: 00:02)
test 0007...[HTTP with cookie parser and header recording]
--pd--oe--- OK (7   out of 1249, remaining: 08:11, took 0.1s, duration: 00:02)
test 0008...[HTTP with cookie parsing from header file]
--pd---e--- OK (8   out of 1249, remaining: 07:29, took 0.1s, duration: 00:02)
test 0009...[HTTP RFC1867-type formposting]
--pd---e--- OK (9   out of 1249, remaining: 06:54, took 0.1s, duration: 00:03)
test 0010...[simple HTTP PUT from file]
--pd---e--- OK (10  out of 1249, remaining: 08:31, took 1.1s, duration: 00:04)
test 0011...[simple HTTP Location: following]
--pd---e--- OK (11  out of 1249, remaining: 08:03, took 0.2s, duration: 00:04)
test 0012...[HTTP range support]
--pd---e--- OK (12  out of 1249, remaining: 07:29, took 0.1s, duration: 00:04)
test 0013...[HTTP custom request 'DELETE']
--pd---e--- OK (13  out of 1249, remaining: 07:00, took 0.1s, duration: 00:04)
test 0014...[HTTP HEAD with Connection: close]
--pd---e--- OK (14  out of 1249, remaining: 06:35, took 0.1s, duration: 00:04)
test 0015...[--write-out test]
s-p----e--- OK (15  out of 1249, remaining: 06:13, took 0.1s, duration: 00:04)
test 0016...[HTTP with proxy authorization]
--pd---e--- OK (16  out of 1249, remaining: 05:54, took 0.1s, duration: 00:04)
test 0017...[HTTP with config file on stdin]
--pd---e--- OK (17  out of 1249, remaining: 05:38, took 0.1s, duration: 00:04)
test 0018...[multiple requests using {} in URL]
s-p----e--- OK (18  out of 1249, remaining: 05:24, took 0.1s, duration: 00:04)
test 0019...[attempt connect to non-listening socket]
-------e--- OK (19  out of 1249, remaining: 05:10, took 0.1s, duration: 00:04)
test 0020...[attempt connect to non-existing host name]
-------e--- OK (20  out of 1249, remaining: 04:58, took 0.1s, duration: 00:04)
test 0021...[use curl with multiple request methods]
-------e--- OK (21  out of 1249, remaining: 04:47, took 0.1s, duration: 00:04)
test 0022...[get HTTP with URL > 10000 bytes]
--pd---e--- OK (22  out of 1249, remaining: 04:37, took 0.1s, duration: 00:04)
test 0023...[unsupported protocol:// URL]
-------e--- OK (23  out of 1249, remaining: 04:28, took 0.1s, duration: 00:05)
test 0024...[HTTP GET fail silently on HTTP error return]
--p---oe--- OK (24  out of 1249, remaining: 04:20, took 0.1s, duration: 00:05)
test 0025...[looping HTTP Location: following with --max-redirs]
--pd---e--- OK (25  out of 1249, remaining: 04:13, took 0.1s, duration: 00:05)
test 0026...[specify more -o than URLs]
--pd---e--- OK (26  out of 1249, remaining: 04:08, took 0.1s, duration: 00:05)
test 0027...[Get same cookie page several times]
--pd---e--- OK (27  out of 1249, remaining: 04:10, took 0.3s, duration: 00:05)
test 0028...[HTTP Location: following with extra spaces in header]
--pd---e--- OK (28  out of 1249, remaining: 04:08, took 0.2s, duration: 00:05)
test 0029...[HTTP with 2 secs timeout]
Warning: server logs lock timeout (2 seconds) expired
--pd---e--- OK (29  out of 1249, remaining: 06:51, took 4.1s, duration: 00:09)
test 0030...[HTTP with no data in server reply]
--p----e--- OK (30  out of 1249, remaining: 10:45, took 6.1s, duration: 00:15)
test 0031...[HTTP with weirdly formatted cookies and cookiejar storage]
--pd--oe--- OK (31  out of 1249, remaining: 10:27, took 0.1s, duration: 00:15)
test 0032...[HTTP with -d and -G]
--pd---e--- OK (32  out of 1249, remaining: 10:09, took 0.1s, duration: 00:16)
test 0033...[HTTP PUT with resume]
--pd---e--- OK (33  out of 1249, remaining: 10:31, took 1.1s, duration: 00:17)
test 0034...[HTTP GET with chunked Transfer-Encoding]
--pd---e--- OK (34  out of 1249, remaining: 10:15, took 0.1s, duration: 00:17)
test 0035...[HTTP POST binary data with embedded NUL]
--pd---e--- OK (35  out of 1249, remaining: 10:00, took 0.1s, duration: 00:17)
test 0036...[HTTP GET with bad chunked Transfer-Encoding]
--pd---e--- OK (36  out of 1249, remaining: 09:45, took 0.1s, duration: 00:17)
test 0037...[HTTP GET with nothing returned from server]
--p----e--- OK (37  out of 1249, remaining: 09:33, took 0.1s, duration: 00:17)
test 0038...[HTTP resume request without server supporting it]
--p---oe--- OK (38  out of 1249, remaining: 09:19, took 0.1s, duration: 00:17)
test 0039...[HTTP RFC1867-type formposting with filename= and type=]
--pd---e--- OK (39  out of 1249, remaining: 09:37, took 1.1s, duration: 00:18)
test 0040...[HTTP redirect with whitespace after ? (and conversion)]
--pd---e--- OK (40  out of 1249, remaining: 09:27, took 0.2s, duration: 00:18)
test 0041...[HTTP formpost with missing file]
-------e--- OK (41  out of 1249, remaining: 09:15, took 0.1s, duration: 00:18)
test 0042...[HTTP redirect with whitespace in path (and conversion)]
--pd---e--- OK (42  out of 1249, remaining: 09:06, took 0.2s, duration: 00:19)
test 0043...[HTTP Location: following over HTTP proxy]
--pd---e--- OK (43  out of 1249, remaining: 08:56, took 0.1s, duration: 00:19)
test 0044...[HTTP RFC1867-type formposting without Expect: header]
--pd---e--- OK (44  out of 1249, remaining: 08:47, took 0.1s, duration: 00:19)
test 0045...[simple HTTP Location: without protocol in initial URL]
--pd---e--- OK (45  out of 1249, remaining: 08:39, took 0.2s, duration: 00:19)
test 0046...[HTTP with bad domain name, get cookies and store in cookie jar]
--pd--oe--- OK (46  out of 1249, remaining: 08:29, took 0.1s, duration: 00:19)
test 0047...[simple HTTP 1.0 GET]
--pd---e--- OK (47  out of 1249, remaining: 08:21, took 0.1s, duration: 00:19)
test 0048...[HTTP with -d and -G and -I]
--pd---e--- OK (48  out of 1249, remaining: 08:12, took 0.1s, duration: 00:19)
test 0049...[HTTP follow redirect with ../]
--pd---e--- OK (49  out of 1249, remaining: 08:05, took 0.2s, duration: 00:19)
test 0050...[HTTP follow redirect with ../../]
--pd---e--- OK (50  out of 1249, remaining: 07:59, took 0.2s, duration: 00:20)
test 0051...[HTTP follow redirect with excessive ../]
--pd---e--- OK (51  out of 1249, remaining: 07:53, took 0.2s, duration: 00:20)
test 0052...[HTTP follow redirect with ./-prefix]
--pd---e--- OK (52  out of 1249, remaining: 07:48, took 0.2s, duration: 00:20)
test 0053...[HTTP, junk session cookies]
--pd---e--- OK (53  out of 1249, remaining: 07:40, took 0.1s, duration: 00:20)
test 0054...[HTTP with blank Location:]
--pd---e--- OK (54  out of 1249, remaining: 07:34, took 0.1s, duration: 00:20)
test 0055...[HTTP follow redirect with single slash in path]
--pd---e--- OK (55  out of 1249, remaining: 07:29, took 0.2s, duration: 00:20)
test 0056...[HTTP POST with *HUGE* request and chunked transfer-encoding]
--pd---e--- OK (56  out of 1249, remaining: 07:23, took 0.1s, duration: 00:20)
test 0057...[HTTP content-type with spaces in]
s-p----e--- OK (57  out of 1249, remaining: 07:17, took 0.1s, duration: 00:20)
test 0058...[HTTP PUT from file with weird letters]
--pd---e--- OK (58  out of 1249, remaining: 07:32, took 1.1s, duration: 00:22)
test 0059...[HTTP URL with slash but with "parameter"]
--pd---e--- OK (59  out of 1249, remaining: 07:26, took 0.1s, duration: 00:22)
test 0060...[HTTP PUT from stdin with wrong content-length]
--pd---e--- OK (60  out of 1249, remaining: 07:41, took 1.1s, duration: 00:23)
test 0061...[HTTP with various cookies and custom Host:]
--pd--oe--- OK (61  out of 1249, remaining: 07:34, took 0.1s, duration: 00:23)
test 0062...[HTTP, send cookies when using custom Host:]
--pd---e--- OK (62  out of 1249, remaining: 07:29, took 0.1s, duration: 00:23)
test 0063...[HTTP with proxy authorization set in environment]
--pd---e--- OK (63  out of 1249, remaining: 07:23, took 0.1s, duration: 00:23)
test 0064...[HTTP with Digest authorization]
--pd---e--- OK (64  out of 1249, remaining: 07:19, took 0.2s, duration: 00:23)
test 0065...[HTTP with Digest authorization with bad password]
--pd---e--- OK (65  out of 1249, remaining: 07:13, took 0.1s, duration: 00:23)
test 0066...[HTTP GET without headers in the response]
--pd---e--- OK (66  out of 1249, remaining: 07:08, took 0.1s, duration: 00:23)
test 0067 SKIPPED: curl lacks debug support
test 0068 SKIPPED: curl lacks debug support
test 0069 SKIPPED: curl lacks debug support
test 0070...[HTTP with Digest *OR* NTLM authorization]
--pd---e--- OK (70  out of 1249, remaining: 06:44, took 0.1s, duration: 00:24)
test 0071...[HTTP and -F upload in config file]
--pd---e--- OK (71  out of 1249, remaining: 06:40, took 0.1s, duration: 00:24)
test 0072...[HTTP with Digest *OR* Basic authorization]
--pd---e--- OK (72  out of 1249, remaining: 06:35, took 0.1s, duration: 00:24)
test 0073...[HTTP, receive cookies when using custom Host:, domain using only two dots]
--pd--oe--- OK (73  out of 1249, remaining: 06:31, took 0.1s, duration: 00:24)
test 0074...[HTTP, urlglob {}-retrieval and -o #[num] usage]
--p---oe--- OK (74  out of 1249, remaining: 06:27, took 0.1s, duration: 00:24)
test 0075...[HTTP, urlglob retrieval with bad range]
s------e--- OK (75  out of 1249, remaining: 06:23, took 0.1s, duration: 00:24)
test 0076...[HTTP, -O with no file name part in the URL]
-------e--- OK (76  out of 1249, remaining: 06:18, took 0.1s, duration: 00:24)
test 0077...[HTTP with -z "older date"]
--pd---e--- OK (77  out of 1249, remaining: 06:14, took 0.1s, duration: 00:24)
test 0078...[HTTP with -z "newer date"]
--pd---e--- OK (78  out of 1249, remaining: 06:10, took 0.1s, duration: 00:24)
test 0079...[FTP over HTTP proxy]
--pd---e--- OK (79  out of 1249, remaining: 06:07, took 0.1s, duration: 00:24)
test 0080...[HTTP 1.0 CONNECT with proxytunnel and proxy+host Basic authentication]
--pd-P-e--- OK (80  out of 1249, remaining: 06:41, took 2.7s, duration: 00:27)
test 0082...[HTTP with proxy requiring NTLM, but we send Basic]
--pd---e--- OK (82  out of 1249, remaining: 06:31, took 0.1s, duration: 00:27)
test 0083...[HTTP over proxy-tunnel with site authentication]
--pd-P-e--- OK (83  out of 1249, remaining: 06:39, took 0.9s, duration: 00:28)
test 0084...[HTTP over proxy with site authentication]
--pd---e--- OK (84  out of 1249, remaining: 06:36, took 0.1s, duration: 00:28)
test 0085...[HTTP over proxy with site and proxy authentication]
--pd---e--- OK (85  out of 1249, remaining: 06:32, took 0.1s, duration: 00:28)
test 0086...[HTTP, urlglob []-retrieval and -o #[num] usage]
--p---oe--- OK (86  out of 1249, remaining: 06:30, took 0.2s, duration: 00:28)
test 0087...[urlglob with out of range -o #[num] usage]
------oe--- OK (87  out of 1249, remaining: 06:27, took 0.1s, duration: 00:28)
test 0088...[HTTP PUT with Digest authorization]
--pd---e--- OK (88  out of 1249, remaining: 06:37, took 1.1s, duration: 00:30)
test 0092...[HTTP resume transfer with the whole file already downloaded]
--pd---e--- OK (92  out of 1249, remaining: 06:19, took 0.1s, duration: 00:30)
test 0093...[HTTP GET with failed proxy auth]
--pd---e--- OK (93  out of 1249, remaining: 06:16, took 0.1s, duration: 00:30)
test 0094...[HTTPS GET with failed proxy auth (CONNECT 1.0)]
--p----e--- OK (94  out of 1249, remaining: 06:12, took 0.1s, duration: 00:30)
test 0095...[HTTP over proxytunnel using POST]
--pd-P-e--- OK (95  out of 1249, remaining: 06:16, took 0.6s, duration: 00:30)
test 0096 SKIPPED: curl lacks TrackMemory support
test 0097...[HTTP POST with custom content-type]
--pd---e--- OK (97  out of 1249, remaining: 06:08, took 0.1s, duration: 00:31)
test 0098...[HTTP PUT from stdin with set size, disabling chunked transfer-encoding]
--pd---e--- OK (98  out of 1249, remaining: 06:17, took 1.1s, duration: 00:32)
test 0099...[HTTP GET with large-file resume point and failed resume]
--pd---e--- OK (99  out of 1249, remaining: 06:13, took 0.1s, duration: 00:32)
test 0100...[FTP dir list PASV]
--pd---e--- OK (100 out of 1249, remaining: 06:34, took 2.1s, duration: 00:34)
test 0101...[FTP dir list, PORT with specified IP]
--pd---e--- OK (101 out of 1249, remaining: 06:30, took 0.1s, duration: 00:34)
test 0102...[FTP RETR PASV]
--pd---e--- OK (102 out of 1249, remaining: 06:27, took 0.1s, duration: 00:34)
test 0103...[FTP RETR PORT with CWD]
--pd---e--- OK (103 out of 1249, remaining: 06:24, took 0.1s, duration: 00:34)
test 0104...[FTP --head to get file size only]
--p----e--- OK (104 out of 1249, remaining: 06:21, took 0.1s, duration: 00:34)
test 0105...[FTP user+password in URL and ASCII transfer]
--pd---e--- OK (105 out of 1249, remaining: 06:18, took 0.1s, duration: 00:34)
test 0106...[FTP GET with type=A style ASCII URL using %20 codes]
--pd---e--- OK (106 out of 1249, remaining: 06:15, took 0.1s, duration: 00:34)
test 0107...[FTP PASV upload file]
--p-u--e--- OK (107 out of 1249, remaining: 06:12, took 0.1s, duration: 00:34)
test 0108...[FTP PORT upload with CWD]
--p-u--e--- OK (108 out of 1249, remaining: 06:10, took 0.1s, duration: 00:35)
test 0109...[FTP PASV upload append]
--p-u--e--- OK (109 out of 1249, remaining: 06:07, took 0.1s, duration: 00:35)
test 0110...[FTP download resume with set limit]
--pd---e--- OK (110 out of 1249, remaining: 06:04, took 0.1s, duration: 00:35)
test 0111...[FTP download resume beyond file size]
--p----e--- OK (111 out of 1249, remaining: 06:01, took 0.1s, duration: 00:35)
test 0112...[FTP PASV upload resume]
--p-u--e--- OK (112 out of 1249, remaining: 05:59, took 0.1s, duration: 00:35)
test 0113...[FTP download, failed login: USER not valid]
--p----e--- OK (113 out of 1249, remaining: 05:56, took 0.1s, duration: 00:35)
test 0114...[FTP download, failed login: PASS not valid]
--p----e--- OK (114 out of 1249, remaining: 05:53, took 0.1s, duration: 00:35)
test 0115...[FTP download, failed PASV]
--p----e--- OK (115 out of 1249, remaining: 05:51, took 0.1s, duration: 00:35)
test 0116...[FTP download, failed PORT]
--p----e--- OK (116 out of 1249, remaining: 05:48, took 0.1s, duration: 00:35)
test 0117...[FTP download, failed TYPE]
--p----e--- OK (117 out of 1249, remaining: 05:45, took 0.1s, duration: 00:35)
test 0118...[FTP download, failed RETR]
--p----e--- OK (118 out of 1249, remaining: 05:43, took 0.1s, duration: 00:35)
test 0119...[FTP download, failed RETR with PORT]
--p----e--- OK (119 out of 1249, remaining: 05:40, took 0.1s, duration: 00:35)
test 0120...[ftp download with post-quote delete operation]
--pd---e--- OK (120 out of 1249, remaining: 05:38, took 0.1s, duration: 00:35)
test 0121...[ftp download with post- and pre-transfer delete operations]
--pd---e--- OK (121 out of 1249, remaining: 05:36, took 0.1s, duration: 00:36)
test 0122...[FTP download resume with whole file already downloaded]
--p----e--- OK (122 out of 1249, remaining: 05:33, took 0.1s, duration: 00:36)
test 0123...[FTP upload resume with whole file already downloaded]
--p----e--- OK (123 out of 1249, remaining: 05:31, took 0.1s, duration: 00:36)
test 0124...[FTP download, failed PWD]
--pd---e--- OK (124 out of 1249, remaining: 05:29, took 0.1s, duration: 00:36)
test 0125...[FTP download, failed CWD]
--p----e--- OK (125 out of 1249, remaining: 05:27, took 0.1s, duration: 00:36)
test 0126...[FTP download with multiple replies at once in RETR]
--pd---e--- OK (126 out of 1249, remaining: 05:24, took 0.1s, duration: 00:36)
test 0127...[FTP --disable-epsv]
--pd---e--- OK (127 out of 1249, remaining: 05:23, took 0.1s, duration: 00:36)
test 0128...[FTP upload with --crlf]
--p-u--e--- OK (128 out of 1249, remaining: 05:21, took 0.1s, duration: 00:36)
test 0129...[FTP GET with type=A style ASCII URL and understated server SIZE]
--pd---e--- OK (129 out of 1249, remaining: 05:18, took 0.1s, duration: 00:36)
test 0130...[FTP (optional .netrc; no user/pass) dir list PASV]
--pd---e--- OK (130 out of 1249, remaining: 05:17, took 0.1s, duration: 00:36)
test 0131...[FTP (optional .netrc; user/no pass) dir list PASV]
--pd---e--- OK (131 out of 1249, remaining: 05:15, took 0.1s, duration: 00:36)
test 0132...[FTP (optional .netrc; user/passwd supplied) dir list PASV]
--pd---e--- OK (132 out of 1249, remaining: 05:13, took 0.1s, duration: 00:37)
test 0133...[FTP (compulsory .netrc; ignored user/passwd) dir list PASV]
--pd---e--- OK (133 out of 1249, remaining: 05:11, took 0.1s, duration: 00:37)
test 0134...[FTP (optional .netrc; programmatic user/passwd) dir list PASV]
--pd---e--- OK (134 out of 1249, remaining: 05:09, took 0.1s, duration: 00:37)
test 0135...[FTP retrieve a byte-range]
--pd---e--- OK (135 out of 1249, remaining: 05:07, took 0.1s, duration: 00:37)
test 0136...[FTP with user and no password]
--pd---e--- OK (136 out of 1249, remaining: 05:05, took 0.1s, duration: 00:37)
test 0137...[FTP download without size in RETR string]
--pd---e--- OK (137 out of 1249, remaining: 05:04, took 0.1s, duration: 00:37)
test 0138...[FTP download without size in RETR string and no SIZE command]
--pd---e--- OK (138 out of 1249, remaining: 05:02, took 0.1s, duration: 00:37)
test 0139...[FTP download a newer file with -z]
--pd---e--- OK (139 out of 1249, remaining: 05:00, took 0.1s, duration: 00:37)
test 0140...[FTP download file with -z, expected to not transfer]
--p----e--- OK (140 out of 1249, remaining: 04:58, took 0.1s, duration: 00:37)
test 0141...[FTP download info with -I]
s-p----e--- OK (141 out of 1249, remaining: 04:56, took 0.1s, duration: 00:37)
test 0142...[FTP URL with 150 dir levels]
--pd---e--- OK (142 out of 1249, remaining: 04:55, took 0.2s, duration: 00:37)
test 0143...[FTP URL with type=a]
--pd---e--- OK (143 out of 1249, remaining: 04:54, took 0.1s, duration: 00:38)
test 0144...[FTP NLST dir list without contents, using PORT]
--p----e--- OK (144 out of 1249, remaining: 04:52, took 0.1s, duration: 00:38)
test 0145...[FTP NLST dir list with weird reply code, using PORT]
--p----e--- OK (145 out of 1249, remaining: 04:50, took 0.1s, duration: 00:38)
test 0146...[persistent FTP with different paths]
--pd---e--- OK (146 out of 1249, remaining: 04:49, took 0.2s, duration: 00:38)
test 0147...[FTP with --ftp-create-dirs (failing CWD)]
--pd---e--- OK (147 out of 1249, remaining: 04:48, took 0.1s, duration: 00:38)
test 0148...[FTP with --ftp-create-dirs (failing MKD)]
--p----e--- OK (148 out of 1249, remaining: 04:46, took 0.1s, duration: 00:38)
test 0149...[FTP with multiple uploads]
--p---oe--- OK (149 out of 1249, remaining: 04:45, took 0.1s, duration: 00:38)
test 0151...[HTTP GET with an error code that might trick authentication]
--pd---e--- OK (151 out of 1249, remaining: 04:41, took 0.1s, duration: 00:38)
test 0152...[HTTP GET with an error code that might trick authentication and --fail]
--p----e--- OK (152 out of 1249, remaining: 04:40, took 0.1s, duration: 00:38)
test 0153...[HTTP with Digest authorization with stale=true]
s-p----e--- OK (153 out of 1249, remaining: 04:39, took 0.2s, duration: 00:39)
test 0154...[HTTP PUT with --anyauth authorization (picking Digest)]
--pd---e--- OK (154 out of 1249, remaining: 04:45, took 1.1s, duration: 00:40)
test 0156...[HTTP PUT with --anyauth (when the server requires none)]
--pd---e--- OK (156 out of 1249, remaining: 04:49, took 1.1s, duration: 00:41)
test 0157...[HTTP GET with --anyauth (when the server requires none)]
--pd---e--- OK (157 out of 1249, remaining: 04:48, took 0.1s, duration: 00:41)
test 0158...[HTTP multipart formpost with only a 100 reply]
--pd---e--- OK (158 out of 1249, remaining: 04:46, took 0.1s, duration: 00:41)
test 0160...[HTTP with delayed close, conn reuse, connection reset and retry]
s-p----e--- OK (160 out of 1249, remaining: 04:57, took 2.2s, duration: 00:43)
test 0161...[FTP RETR PASV]
--pd---e--- OK (161 out of 1249, remaining: 04:56, took 0.1s, duration: 00:43)
test 0162...[HTTP GET asking for --proxy-ntlm when some other authentication is required]
--p----e--- OK (162 out of 1249, remaining: 04:54, took 0.1s, duration: 00:43)
test 0163...[HTTP multipart formpost with contents from a file]
--pd---e--- OK (163 out of 1249, remaining: 04:53, took 0.1s, duration: 00:44)
test 0164...[HTTP range with multiple ranges]
--pd---e--- OK (164 out of 1249, remaining: 04:52, took 0.1s, duration: 00:44)
test 0165...[HTTP over proxy with IDN host name]
--pd---e--- OK (165 out of 1249, remaining: 04:51, took 0.2s, duration: 00:44)
test 0166...[HTTP formpost a file with spaces in name]
--pd---e--- OK (166 out of 1249, remaining: 04:50, took 0.1s, duration: 00:44)
test 0167...[HTTP with proxy-requiring-Basic to site-requiring-Digest]
--pd---e--- OK (167 out of 1249, remaining: 04:49, took 0.2s, duration: 00:44)
test 0168...[HTTP with proxy-requiring-Digest to site-requiring-Digest]
--pd---e--- OK (168 out of 1249, remaining: 04:48, took 0.2s, duration: 00:44)
test 0170...[HTTP POST with --proxy-ntlm and no SSL with no response]
--p----e--- OK (170 out of 1249, remaining: 04:45, took 0.1s, duration: 00:44)
test 0171...[HTTP, get cookie with dot prefixed full domain]
--pd--oe--- OK (171 out of 1249, remaining: 04:43, took 0.1s, duration: 00:45)
test 0172...[HTTP with cookies file and custom added cookie]
--pd---e--- OK (172 out of 1249, remaining: 04:42, took 0.1s, duration: 00:45)
test 0173...[HTTP RFC1867-formpost a file from stdin with "faked" filename]
--pd---e--- OK (173 out of 1249, remaining: 04:41, took 0.1s, duration: 00:45)
test 0174...[HTTP POST --anyauth to server not requiring any auth at all]
--pd---e--- OK (174 out of 1249, remaining: 04:40, took 0.1s, duration: 00:45)
test 0175...[HTTP POST --digest to server not requiring any auth at all]
--pd---e--- OK (175 out of 1249, remaining: 04:39, took 0.2s, duration: 00:45)
test 0176...[HTTP POST --ntlm to server not requiring any auth at all]
--pd---e--- OK (176 out of 1249, remaining: 04:38, took 0.2s, duration: 00:45)
test 0177...[HTTP POST --digest to server doing a 302-location response]
--pd---e--- OK (177 out of 1249, remaining: 04:37, took 0.1s, duration: 00:45)
test 0178...[HTTP response with negative Content-Length]
--pd---e--- OK (178 out of 1249, remaining: 04:36, took 0.1s, duration: 00:45)
test 0179...[HTTP using proxy and cookies with path checks]
--pd---e--- OK (179 out of 1249, remaining: 04:34, took 0.1s, duration: 00:45)
test 0180...[HTTP 1.0 PUT]
--pd---e--- OK (180 out of 1249, remaining: 04:33, took 0.1s, duration: 00:46)
test 0181...[HTTP 1.0 POST]
--pd---e--- OK (181 out of 1249, remaining: 04:32, took 0.1s, duration: 00:46)
test 0182...[FTP download an empty file]
--pd---e--- OK (182 out of 1249, remaining: 04:31, took 0.1s, duration: 00:46)
test 0183...[HTTP GET two URLs over a single proxy with persistent connection]
--pd---e--- OK (183 out of 1249, remaining: 04:30, took 0.1s, duration: 00:46)
test 0184...[HTTP replace Host: when following Location: to new host]
--pd---e--- OK (184 out of 1249, remaining: 04:28, took 0.1s, duration: 00:46)
test 0185...[HTTP replace Host: when following Location: on the same host]
--pd---e--- OK (185 out of 1249, remaining: 04:27, took 0.1s, duration: 00:46)
test 0186...[HTTP RFC1867-type formposting with types on text fields]
--pd---e--- OK (186 out of 1249, remaining: 04:26, took 0.1s, duration: 00:46)
test 0187...[HTTP redirect with bad host name separation and slash in parameters]
--pd---e--- OK (187 out of 1249, remaining: 04:25, took 0.1s, duration: 00:46)
test 0188...[HTTP GET with resume and redirect]
--pd---e--- OK (188 out of 1249, remaining: 04:24, took 0.1s, duration: 00:46)
test 0189...[HTTP GET with resume and redirect (to a page that doesn't resume)]
--pd---e--- OK (189 out of 1249, remaining: 04:22, took 0.1s, duration: 00:46)
test 0190...[FTP download with strict timeout and slow CWD]
--p----e--- OK (190 out of 1249, remaining: 05:06, took 8.1s, duration: 00:54)
test 0191...[FTP URL with ?-letters in username and password ]
--pd---e--- OK (191 out of 1249, remaining: 05:16, took 2.1s, duration: 00:57)
test 0192...[HTTP GET -w num_connects with one simple connect]
s-p----e--- OK (192 out of 1249, remaining: 05:14, took 0.1s, duration: 00:57)
test 0193...[HTTP GET -w num_connects with redirected fetch (2 connects)]
s-p----e--- OK (193 out of 1249, remaining: 05:13, took 0.1s, duration: 00:57)
test 0194...[HTTP resume transfer with the whole file already downloaded and --fail]
--pd---e--- OK (194 out of 1249, remaining: 05:12, took 0.1s, duration: 00:57)
test 0195...[FTP response 530 after PASS, temporarily not allowed access]
--p----e--- OK (195 out of 1249, remaining: 05:10, took 0.1s, duration: 00:57)
test 0196...[FTP transient error, retry request once]
--p----e--- OK (196 out of 1249, remaining: 05:14, took 1.1s, duration: 00:58)
test 0197...[HTTP GET --retry on 503 error with output to stdout]
s-p----e--- OK (197 out of 1249, remaining: 05:18, took 1.1s, duration: 00:59)
test 0198...[HTTP GET --retry on 503 error with output to file]
--pd---e--- OK (198 out of 1249, remaining: 05:22, took 1.1s, duration: 01:00)
test 0199...[HTTP with -d, -G and {}]
--pd---e--- OK (199 out of 1249, remaining: 05:20, took 0.1s, duration: 01:00)
test 0200...[basic file:// file]
---d---e--- OK (200 out of 1249, remaining: 05:18, took 0.1s, duration: 01:00)
test 0201...[missing file:// file]
-------e--- OK (201 out of 1249, remaining: 05:17, took 0.1s, duration: 01:00)
test 0202...[two file:// URLs to stdout]
s------e--- OK (202 out of 1249, remaining: 05:15, took 0.1s, duration: 01:00)
test 0203...[file:/path URL with a single slash]
---d---e--- OK (203 out of 1249, remaining: 05:14, took 0.1s, duration: 01:00)
test 0204...["upload" with file://]
------oe--- OK (204 out of 1249, remaining: 05:12, took 0.1s, duration: 01:01)
test 0205...["upload" with file://]
-------e--- OK (205 out of 1249, remaining: 05:11, took 0.1s, duration: 01:01)
test 0206...[HTTP proxy CONNECT auth Digest]
--pd---e--- OK (206 out of 1249, remaining: 05:09, took 0.1s, duration: 01:01)
test 0207...[HTTP GET with chunked Transfer-Encoding closed prematurely]
--pd---e--- OK (207 out of 1249, remaining: 05:08, took 0.1s, duration: 01:01)
test 0208...[HTTP PUT to a FTP URL with username+password - over HTTP proxy]
--pd---e--- OK (208 out of 1249, remaining: 05:12, took 1.1s, duration: 01:02)
test 0210...[Get two FTP files from the same remote dir: no second CWD]
--pd---e--- OK (210 out of 1249, remaining: 05:09, took 0.2s, duration: 01:02)
test 0211...[Get two FTP files with no remote EPSV support]
--pd---e--- OK (211 out of 1249, remaining: 05:08, took 0.1s, duration: 01:02)
test 0212...[Get two FTP files with no remote EPRT support]
--pd---e--- OK (212 out of 1249, remaining: 05:07, took 0.1s, duration: 01:02)
test 0214...[HTTP URL with escaped { and }]
--pd---e--- OK (214 out of 1249, remaining: 05:04, took 0.1s, duration: 01:02)
test 0215...[Get two FTP dir listings from the same remote dir: no second CWD]
--pd---e--- OK (215 out of 1249, remaining: 05:03, took 0.1s, duration: 01:03)
test 0216...[FTP upload two files to the same dir]
--p----e--- OK (216 out of 1249, remaining: 05:02, took 0.1s, duration: 01:03)
test 0217...[HTTP proxy CONNECT to proxy returning 405]
s-p----e--- OK (217 out of 1249, remaining: 05:00, took 0.1s, duration: 01:03)
test 0218...[HTTP PUT from a file but enforce chunked transfer-encoding]
--pd---e--- OK (218 out of 1249, remaining: 05:04, took 1.1s, duration: 01:04)
test 0219...[try using proxy with unsupported scheme]
-------e--- OK (219 out of 1249, remaining: 05:02, took 0.1s, duration: 01:04)
test 0220...[HTTP GET gzip compressed content]
--pd---e--- OK (220 out of 1249, remaining: 05:01, took 0.1s, duration: 01:04)
test 0221...[HTTP GET gzip compressed content with broken gzip header]
--pd---e--- OK (221 out of 1249, remaining: 05:00, took 0.1s, duration: 01:04)
test 0222...[HTTP GET deflate compressed content]
--pd---e--- OK (222 out of 1249, remaining: 04:58, took 0.1s, duration: 01:04)
test 0223...[HTTP GET deflate compressed content with broken deflate header]
--pd---e--- OK (223 out of 1249, remaining: 04:57, took 0.1s, duration: 01:04)
test 0224...[HTTP GET gzip compressed content with huge comment and extra field]
--pd---e--- OK (224 out of 1249, remaining: 04:56, took 0.1s, duration: 01:04)
test 0225...[FTP %0a-code in URL's name part]
-------e--- OK (225 out of 1249, remaining: 04:54, took 0.1s, duration: 01:04)
test 0226...[FTP %0d-code in URL's CWD part]
-------e--- OK (226 out of 1249, remaining: 04:53, took 0.1s, duration: 01:04)
test 0227...[FTP with quote ops]
--pd---e--- OK (227 out of 1249, remaining: 04:52, took 0.1s, duration: 01:04)
test 0228...[FTP RETR with ACCT]
--pd---e--- OK (228 out of 1249, remaining: 04:51, took 0.1s, duration: 01:05)
test 0229...[FTP RETR with bad ACCT]
--p----e--- OK (229 out of 1249, remaining: 04:50, took 0.1s, duration: 01:05)
test 0230...[HTTP GET multiply compressed content]
--pd---e--- OK (230 out of 1249, remaining: 04:48, took 0.1s, duration: 01:05)
test 0231...[file:// with resume]
---d---e--- OK (231 out of 1249, remaining: 04:47, took 0.1s, duration: 01:05)
test 0232...[HTTP GET deflate raw-compressed content]
--pd---e--- OK (232 out of 1249, remaining: 04:46, took 0.1s, duration: 01:05)
test 0233...[HTTP, proxy, site+proxy auth and Location: to new host]
--pd---e--- OK (233 out of 1249, remaining: 04:45, took 0.2s, duration: 01:05)
test 0234...[HTTP, proxy, site+proxy auth and Location: to new host using location-trusted]
--pd---e--- OK (234 out of 1249, remaining: 04:44, took 0.2s, duration: 01:05)
test 0235...[FTP resumed upload but no file present remotely]
--p-u--e--- OK (235 out of 1249, remaining: 04:43, took 0.1s, duration: 01:05)
test 0236...[FTP resume upload but denied access to remote file]
--p----e--- OK (236 out of 1249, remaining: 04:42, took 0.1s, duration: 01:05)
test 0237...[FTP getting bad host in 227-response to PASV]
--p----e--- OK (237 out of 1249, remaining: 04:41, took 0.1s, duration: 01:05)
test 0238...[FTP getting bad port in response to EPSV]
--p----e--- OK (238 out of 1249, remaining: 04:40, took 0.1s, duration: 01:05)
test 0240...[HTTP-IPv6 GET]
--pd---e--- OK (240 out of 1249, remaining: 04:46, took 2.1s, duration: 01:08)
test 0241 SKIPPED: Resolving IPv6 'ip6-localhost' didn't work
test 0242...[HTTP-IPv6 GET with username+password in URL]
--pd---e--- OK (242 out of 1249, remaining: 04:43, took 0.1s, duration: 01:08)
test 0244...[FTP dir listing with nocwd and URL encoded path]
--pd---e--- OK (244 out of 1249, remaining: 04:41, took 0.1s, duration: 01:08)
test 0245...[HTTP POST --digest]
--pd---e--- OK (245 out of 1249, remaining: 04:39, took 0.1s, duration: 01:08)
test 0246...[HTTP POST --digest with server doing a 100 before 401 response]
--pd---e--- OK (246 out of 1249, remaining: 04:38, took 0.1s, duration: 01:08)
test 0247...[FTP upload time condition evaluates TRUE => skip upload]
--p----e--- OK (247 out of 1249, remaining: 04:37, took 0.1s, duration: 01:08)
test 0248...[FTP upload time condition evaluates FALSE => upload anyway]
--p-u--e--- OK (248 out of 1249, remaining: 04:36, took 0.1s, duration: 01:08)
test 0249...[HTTP 304 response with "illegal" Content-Length: header]
--pd---e--- OK (249 out of 1249, remaining: 04:35, took 0.1s, duration: 01:08)
test 0250...[FTP dir list PASV with slow response]
--pd---e--- OK (250 out of 1249, remaining: 05:16, took 10.5s, duration: 01:19)
test 0251...[FTP dir list, PORT with specified IP and slow response]
--pd---e--- OK (251 out of 1249, remaining: 05:57, took 10.6s, duration: 01:29)
test 0252...[FTP IPv6 dir list PASV]
--pd---e--- OK (252 out of 1249, remaining: 06:03, took 2.1s, duration: 01:31)
test 0253...[FTP IPv6 dir list with EPRT]
--pd---e--- OK (253 out of 1249, remaining: 06:02, took 0.1s, duration: 01:32)
test 0254...[FTP IPv6 dir list PASV and --disable-epsv]
--pd---e--- OK (254 out of 1249, remaining: 06:00, took 0.1s, duration: 01:32)
test 0255...[FTP IPv6 dir list with EPRT and --disable-eprt]
--pd---e--- OK (255 out of 1249, remaining: 05:59, took 0.1s, duration: 01:32)
test 0256...[HTTP resume request over proxy with auth without server supporting it]
--p---oe--- OK (256 out of 1249, remaining: 05:57, took 0.1s, duration: 01:32)
test 0257...[HTTP Location: following with --netrc-optional]
--pd---e--- OK (257 out of 1249, remaining: 05:56, took 0.2s, duration: 01:32)
test 0258...[HTTP POST multipart without Expect: header using proxy anyauth (Digest)]
--pd---e--- OK (258 out of 1249, remaining: 05:55, took 0.1s, duration: 01:32)
test 0259...[HTTP POST multipart with Expect: header using proxy anyauth (Digest)]
--pd---e--- OK (259 out of 1249, remaining: 06:01, took 2.1s, duration: 01:34)
test 0260...[HTTP GET URL without slash but with questionmark]
--pd---e--- OK (260 out of 1249, remaining: 06:00, took 0.1s, duration: 01:34)
test 0261...[FTP RETR with 226 response code to TYPE]
--pd---e--- OK (261 out of 1249, remaining: 05:58, took 0.1s, duration: 01:34)
test 0262...[HTTP GET with binary zeroes in header]
--pd---e--- OK (262 out of 1249, remaining: 05:57, took 0.1s, duration: 01:34)
test 0263...[HTTP-IPv6 GET with proxy specified using IPv6-numerical address]
--pd---e--- OK (263 out of 1249, remaining: 05:55, took 0.1s, duration: 01:34)
test 0264...[HTTP with proxy string including http:// and user+password]
--pd---e--- OK (264 out of 1249, remaining: 05:54, took 0.1s, duration: 01:35)
test 0266...[HTTP GET with chunked Transfer-Encoding and chunked trailer]
--pd--oe--- OK (266 out of 1249, remaining: 05:51, took 0.1s, duration: 01:35)
test 0268...[HTTP POST a non-existing file]
--pd---e--- OK (268 out of 1249, remaining: 05:48, took 0.1s, duration: 01:35)
test 0269...[HTTP --ignore-content-length]
--pd---e--- OK (269 out of 1249, remaining: 05:47, took 0.1s, duration: 01:35)
test 0270...[FTP RETR PASV --ftp-skip-pasv-ip]
--pd---e--- OK (270 out of 1249, remaining: 05:45, took 0.1s, duration: 01:35)
test 0271...[TFTP retrieve]
--pd---e--- OK (271 out of 1249, remaining: 05:51, took 2.1s, duration: 01:37)
test 0272...[FTP timed conditioned get file with identical time stamp ]
--p----e--- OK (272 out of 1249, remaining: 05:50, took 0.1s, duration: 01:37)
test 0273...[HTTP with two Digest authorization headers]
--pd---e--- OK (273 out of 1249, remaining: 05:49, took 0.2s, duration: 01:37)
test 0274...[HTTP Location: following with --max-redirs 0]
--pd---e--- OK (274 out of 1249, remaining: 05:48, took 0.1s, duration: 01:37)
test 0275...[HTTP CONNECT with proxytunnel getting two URLs from the same host]
--pd-P-e--- OK (275 out of 1249, remaining: 05:48, took 0.6s, duration: 01:38)
test 0276...[HTTP Location: following with multiple question marks in URLs]
--pd---e--- OK (276 out of 1249, remaining: 05:47, took 0.2s, duration: 01:38)
test 0277...[HTTP RFC1867-type formposting with custom Content-Type]
--pd---e--- OK (277 out of 1249, remaining: 05:46, took 0.1s, duration: 01:38)
test 0278...[HTTP with proxy string including http:// and user+empty password]
--pd---e--- OK (278 out of 1249, remaining: 05:45, took 0.1s, duration: 01:38)
test 0279...[HTTP with proxy string including http:// and user only]
--pd---e--- OK (279 out of 1249, remaining: 05:43, took 0.1s, duration: 01:38)
test 0280...[FTP --ftp-alternative-to-user on USER failure]
--pd---e--- OK (280 out of 1249, remaining: 05:42, took 0.1s, duration: 01:39)
test 0281...[HTTP PUT from file with 100 + 401 responses and -f without auth given]
--pd---e--- OK (281 out of 1249, remaining: 05:44, took 1.1s, duration: 01:40)
test 0282...[HTTP GET with no response body or headers]
--pd---e--- OK (282 out of 1249, remaining: 05:43, took 0.1s, duration: 01:40)
test 0283...[TFTP retrieve on invalid file]
--p----e--- OK (283 out of 1249, remaining: 05:42, took 0.1s, duration: 01:40)
test 0284...[TFTP retrieve of boundary case 512 byte file]
--pd---e--- OK (284 out of 1249, remaining: 05:41, took 0.1s, duration: 01:40)
test 0285...[TFTP send]
Warning: server logs lock timeout (2 seconds) expired
--p-u--e--- OK (285 out of 1249, remaining: 05:46, took 2.1s, duration: 01:42)
test 0286...[TFTP send of boundary case 512 byte file]
Warning: server logs lock timeout (2 seconds) expired
--p-u--e--- OK (286 out of 1249, remaining: 06:01, took 5.0s, duration: 01:47)
test 0287...[HTTP proxy CONNECT with custom User-Agent header]
s-p----e--- OK (287 out of 1249, remaining: 06:00, took 0.1s, duration: 01:47)
test 0288...[file:// with (unsupported) proxy, authentication and range]
---d---e--- OK (288 out of 1249, remaining: 05:59, took 0.1s, duration: 01:47)
test 0289...[FTP resume upload but denied access to local file]
-------e--- OK (289 out of 1249, remaining: 05:57, took 0.1s, duration: 01:47)
test 0290...[FTP download maximum filesize exceeded]
--p----e--- OK (290 out of 1249, remaining: 05:56, took 0.1s, duration: 01:47)
test 0291...[FTP download maximum filesize not exceeded]
--pd---e--- OK (291 out of 1249, remaining: 05:55, took 0.1s, duration: 01:47)
test 0292...[HTTP GET with maximum filesize not exceeded]
--pd---e--- OK (292 out of 1249, remaining: 05:53, took 0.1s, duration: 01:47)
test 0293...[HTTP GET with maximum filesize exceeded]
--p----e--- OK (293 out of 1249, remaining: 05:52, took 0.1s, duration: 01:47)
test 0294...[FTP --ftp-account on ACCT request]
--pd---e--- OK (294 out of 1249, remaining: 05:50, took 0.1s, duration: 01:48)
test 0295...[FTP ACCT request without --ftp-account]
--p----e--- OK (295 out of 1249, remaining: 05:49, took 0.1s, duration: 01:48)
test 0296...[FTP CWD with --ftp-method multicwd]
--pd---e--- OK (296 out of 1249, remaining: 05:48, took 0.1s, duration: 01:48)
test 0297...[FTP CWD with --ftp-method singlecwd]
--pd---e--- OK (297 out of 1249, remaining: 05:47, took 0.1s, duration: 01:48)
test 0298...[FTP CWD with --ftp-method nocwd]
--pd---e--- OK (298 out of 1249, remaining: 05:45, took 0.1s, duration: 01:48)
test 0299...[FTP over HTTP proxy with user:pass not in url]
--pd---e--- OK (299 out of 1249, remaining: 05:44, took 0.1s, duration: 01:48)
test 0300 SKIPPED: no stunnel
test 0301 SKIPPED: no stunnel
test 0302 SKIPPED: no stunnel
test 0307 SKIPPED: curl lacks OpenSSL support
test 0308 SKIPPED: curl lacks OpenSSL support
test 0314 SKIPPED: curl lacks brotli support
test 0315 SKIPPED: curl lacks brotli support
test 0316 SKIPPED: curl lacks brotli support
test 0317...[HTTP with custom Authorization: and redirect to new host]
--pd---e--- OK (317 out of 1249, remaining: 05:19, took 0.2s, duration: 01:48)
test 0318...[HTTP with custom Authorization: and redirect to new host]
--pd---e--- OK (318 out of 1249, remaining: 05:18, took 0.2s, duration: 01:48)
test 0319...[HTTP GET gzip transfer-encoded data in raw mode]
--pd---e--- OK (319 out of 1249, remaining: 05:17, took 0.1s, duration: 01:48)
test 0320...[simple TLS-SRP HTTPS GET, check user in response]
------oe--- OK (320 out of 1249, remaining: 05:48, took 11.1s, duration: 02:00)
test 0321...[TLS-SRP with bad username and password]
-------e--- OK (321 out of 1249, remaining: 05:47, took 0.1s, duration: 02:00)
test 0322...[TLS-SRP with bad password]
-------e--- OK (322 out of 1249, remaining: 05:45, took 0.1s, duration: 02:00)
test 0324...[TLS-SRP with server cert checking]
-------e--- OK (324 out of 1249, remaining: 05:43, took 0.1s, duration: 02:00)
test 0326...[HTTP GET chunked data in raw mode]
--pd---e--- OK (326 out of 1249, remaining: 05:40, took 0.1s, duration: 02:00)
test 0327...[HTTP with cookiejar without cookies left]
--pd--oe--- OK (327 out of 1249, remaining: 05:39, took 0.2s, duration: 02:00)
test 0328...[HTTP with "Content-Encoding: none]
--pd---e--- OK (328 out of 1249, remaining: 05:38, took 0.1s, duration: 02:00)
test 0329...[HTTP cookie with Max-Age=0]
--pd---e--- OK (329 out of 1249, remaining: 05:37, took 0.1s, duration: 02:00)
test 0330...[HTTP with custom Cookie: and redirect to new host]
--pd---e--- OK (330 out of 1249, remaining: 05:36, took 0.2s, duration: 02:00)
test 0331...[HTTP with cookie using host name 'moo']
--pd---e--- OK (331 out of 1249, remaining: 05:35, took 0.1s, duration: 02:00)
test 0332...[TFTP retrieve with blksize 400]
--pd---e--- OK (332 out of 1249, remaining: 05:34, took 0.1s, duration: 02:00)
test 0333...[Try a non-boolean command line option with --no-]
-------e--- OK (333 out of 1249, remaining: 05:32, took 0.1s, duration: 02:01)
test 0334...[HTTP 204 No content with chunked header]
--pd---e--- OK (334 out of 1249, remaining: 05:31, took 0.1s, duration: 02:01)
test 0335...[HTTP with proxy Digest and site Digest with creds in URLs]
--pd---e--- OK (335 out of 1249, remaining: 05:30, took 0.2s, duration: 02:01)
test 0340...[FTP using %00 in path with singlecwd]
--p----e--- OK (336 out of 1249, remaining: 05:29, took 0.1s, duration: 02:01)
test 0350...[FTP root dir list multicwd]
--pd---e--- OK (337 out of 1249, remaining: 05:28, took 0.1s, duration: 02:01)
test 0351...[FTP root dir list nocwd]
--pd---e--- OK (338 out of 1249, remaining: 05:27, took 0.1s, duration: 02:01)
test 0352...[FTP root dir list singlecwd]
--pd---e--- OK (339 out of 1249, remaining: 05:26, took 0.1s, duration: 02:01)
test 0353...[FTP home dir list singlecwd]
--pd---e--- OK (340 out of 1249, remaining: 05:25, took 0.1s, duration: 02:01)
test 0354...[FTP without password]
--pd---e--- OK (341 out of 1249, remaining: 05:24, took 0.1s, duration: 02:01)
test 0355 SKIPPED: curl lacks alt-svc support
test 0393...[HTTP max-filesize and out-of-range Content-Length]
--p----e--- OK (344 out of 1249, remaining: 05:20, took 0.1s, duration: 02:01)
test 0394...[HTTP with rubbish in Content-Length]
--p----e--- OK (345 out of 1249, remaining: 05:19, took 0.1s, duration: 02:01)
test 0395...[HTTP and out-of-range Content-Length]
--p----e--- OK (346 out of 1249, remaining: 05:18, took 0.1s, duration: 02:02)
test 0402...[FTP SSL required on non-SSL server]
--p----e--- OK (349 out of 1249, remaining: 05:15, took 0.1s, duration: 02:02)
test 0405...[FTPS operation to FTP port]
-------e--- OK (352 out of 1249, remaining: 05:11, took 0.1s, duration: 02:02)
test 0500...[simple libcurl HTTP GET tool]
--pd--oe--- OK (357 out of 1249, remaining: 05:05, took 0.1s, duration: 02:02)
test 0501...[simple libcurl attempt operation without URL set]
-------e--- OK (358 out of 1249, remaining: 05:04, took 0.1s, duration: 02:02)
test 0502...[simple multi file:// get]
---d---e--- OK (359 out of 1249, remaining: 05:03, took 0.1s, duration: 02:02)
test 0503...[simple multi http:// through proxytunnel with authentication info]
--pd-P-e--- OK (360 out of 1249, remaining: 05:03, took 0.6s, duration: 02:03)
test 0504...[simple multi through local proxy without listener]
-------e--- OK (361 out of 1249, remaining: 05:02, took 0.1s, duration: 02:03)
test 0505...[FTP upload with rename after transfer]
--p-u--e--- OK (362 out of 1249, remaining: 05:01, took 0.1s, duration: 02:03)
test 0506 SKIPPED: curl has threaded-resolver support
test 0507...[multi interface get with non-existing host name]
-------e--- OK (364 out of 1249, remaining: 04:59, took 0.1s, duration: 02:03)
test 0508...[send HTTP POST using read callback]
--pd---e--- OK (365 out of 1249, remaining: 04:58, took 0.1s, duration: 02:03)
test 0509...[initialization with memory callbacks and actual usage]
s------e--- OK (366 out of 1249, remaining: 04:57, took 0.1s, duration: 02:03)
test 0510...[send HTTP POST using read callback, using chunked transfer-encoding]
--pd---e--- OK (367 out of 1249, remaining: 04:59, took 1.1s, duration: 02:04)
test 0511...[FTP with FILETIME and NOBODY but missing file]
--p----e--- OK (368 out of 1249, remaining: 04:58, took 0.1s, duration: 02:04)
test 0512...[simple curl_easy_duplicate() test]
--pd---e--- OK (369 out of 1249, remaining: 04:57, took 0.1s, duration: 02:04)
test 0513...[send HTTP POST using read callback that returns CURL_READFUNC_ABORT]
--p----e--- OK (370 out of 1249, remaining: 04:58, took 1.1s, duration: 02:05)
test 0514...[First set options to POST and then to make HEAD]
--pd---e--- OK (371 out of 1249, remaining: 05:00, took 1.1s, duration: 02:06)
test 0515...[make a POSTFIELDS set to NULL with POSTFIELDSIZE set to zero]
--pd---e--- OK (372 out of 1249, remaining: 04:59, took 0.1s, duration: 02:06)
test 0516...[make a HTTPPOST set to NULL]
--pd---e--- OK (373 out of 1249, remaining: 04:58, took 0.1s, duration: 02:07)
test 0517...[curl_getdate() testing]
-------e--- OK (374 out of 1249, remaining: 04:57, took 0.1s, duration: 02:07)
test 0518...[HTTP GET with more than FD_SETSIZE descriptors open]
--pd---e--- OK (375 out of 1249, remaining: 04:56, took 0.1s, duration: 02:07)
test 0519...[GET same URL twice with different users]
--pd---e--- OK (376 out of 1249, remaining: 04:55, took 0.1s, duration: 02:07)
test 0520...[FTP RETR with FILETIME]
--pd---e--- OK (377 out of 1249, remaining: 04:54, took 0.1s, duration: 02:07)
test 0521...[FTP dir list PASV with CURLOPT_PORT]
--pd---e--- OK (378 out of 1249, remaining: 04:53, took 0.1s, duration: 02:07)
test 0522...[HTTP GET with CURLOPT_PORT]
s-p----e--- OK (379 out of 1249, remaining: 04:52, took 0.1s, duration: 02:07)
test 0523...[HTTP GET with proxy and CURLOPT_PORT]
s-p----e--- OK (380 out of 1249, remaining: 04:52, took 0.1s, duration: 02:07)
test 0524...[FTP upload with target URL ending with slash]
--p----e--- OK (381 out of 1249, remaining: 04:51, took 0.1s, duration: 02:07)
test 0525...[FTP PORT upload using multi interface]
--p-u--e--- OK (382 out of 1249, remaining: 04:50, took 0.1s, duration: 02:07)
test 0526...[FTP RETR same file using different handles but same connection]
--pd---e--- OK (383 out of 1249, remaining: 04:56, took 3.2s, duration: 02:11)
test 0527...[FTP RETR same file using different handles but same connection]
--pd---e--- OK (384 out of 1249, remaining: 05:02, took 3.2s, duration: 02:14)
test 0528...[HTTP GET same file using different handles but same connection]
--pd---e--- OK (385 out of 1249, remaining: 05:08, took 3.1s, duration: 02:17)
test 0529...[FTP PORT upload using multi interface (weird cleanup function sequence)]
--p-u--e--- OK (386 out of 1249, remaining: 05:07, took 0.1s, duration: 02:17)
test 0531...[FTP PORT upload using multi interface and get 425 response]
--p----e--- OK (387 out of 1249, remaining: 05:06, took 0.1s, duration: 02:17)
test 0532...[FTP RETR same file using reset handles between each transfer]
--pd---e--- OK (388 out of 1249, remaining: 05:12, took 3.2s, duration: 02:20)
test 0533...[FTP RETR a non-existing file twice using the multi interface]
--p----e--- OK (389 out of 1249, remaining: 05:13, took 1.1s, duration: 02:21)
test 0534...[FTP RETR twice using multi: non-existing host and non-existing file]
--p----e--- OK (390 out of 1249, remaining: 05:14, took 1.1s, duration: 02:22)
test 0535...[HTTP GET multi two files with FAILONERROR]
--pd---e--- OK (391 out of 1249, remaining: 05:15, took 1.1s, duration: 02:23)
test 0537...[HTTP GET with a HUGE number of file descriptors open]
--pd---e--- OK (392 out of 1249, remaining: 05:14, took 0.1s, duration: 02:23)
test 0538...[FTP multi-interface download, failed login: PASS not valid]
--p----e--- OK (393 out of 1249, remaining: 05:13, took 0.1s, duration: 02:24)
test 0539...[Two FTP fetches using different CURLOPT_FTP_FILEMETHOD]
--pd---e--- OK (394 out of 1249, remaining: 05:12, took 0.1s, duration: 02:24)
test 0540...[HTTP proxy auth Digest multi API re-using connection]
--pd---e--- OK (395 out of 1249, remaining: 05:11, took 0.1s, duration: 02:24)
test 0541...[FTP upload and upload same file again without rewind]
--p----e--- OK (396 out of 1249, remaining: 05:11, took 0.1s, duration: 02:24)
test 0542...[FTP a file with NOBODY yes and HEADER no]
--pd---e--- OK (397 out of 1249, remaining: 05:09, took 0.1s, duration: 02:24)
test 0543...[curl_easy_escape]
s------e--- OK (398 out of 1249, remaining: 05:08, took 0.1s, duration: 02:24)
test 0544...[HTTP POST text data using CURLOPT_COPYPOSTFIELDS]
--pd---e--- OK (399 out of 1249, remaining: 05:08, took 0.1s, duration: 02:24)
test 0545...[HTTP POST binary with embedded zero and no trailing zero]
--pd---e--- OK (400 out of 1249, remaining: 05:07, took 0.1s, duration: 02:24)
test 0546...[FTP RETR a non-existing file then a found one using the multi interface]
s-p----e--- OK (401 out of 1249, remaining: 05:08, took 1.1s, duration: 02:25)
test 0549...[FTP RETR over proxy with CURLOPT_PROXY_TRANSFER_MODE]
s-p----e--- OK (404 out of 1249, remaining: 05:05, took 0.1s, duration: 02:25)
test 0550...[FTP RETR over proxy with CURLOPT_PROXY_TRANSFER_MODE and ASCII transfer]
s-p----e--- OK (405 out of 1249, remaining: 05:04, took 0.1s, duration: 02:26)
test 0551...[HTTP proxy auth Digest with POST data from read callback]
--pd---e--- OK (406 out of 1249, remaining: 05:03, took 0.2s, duration: 02:26)
test 0552...[HTTP proxy auth Digest with 70K POST data from read callback]
--pd---e--- OK (407 out of 1249, remaining: 05:08, took 2.9s, duration: 02:29)
test 0553...[HTTP post with huge request headers and post data from callback]
--pd---e--- OK (408 out of 1249, remaining: 05:07, took 0.1s, duration: 02:29)
test 0554...[HTTP multi-part formpost using read callback for the file part]
--pd---e--- OK (409 out of 1249, remaining: 05:06, took 0.2s, duration: 02:29)
test 0556...[send and recv HTTP]
--pd---e--- OK (411 out of 1249, remaining: 05:04, took 0.1s, duration: 02:29)
test 0557...[curl_mprintf() testing]
s------e--- OK (412 out of 1249, remaining: 05:03, took 0.1s, duration: 02:29)
test 0558 SKIPPED: curl lacks TrackMemory support
test 0559...[use tiny CURLOPT_BUFFERSIZE]
---d---e--- OK (414 out of 1249, remaining: 05:01, took 0.1s, duration: 02:29)
test 0561...[FTP RETR with CURLOPT_PROXY_TRANSFER_MODE, ASCII transfer and type=i]
s-p----e--- OK (416 out of 1249, remaining: 04:59, took 0.1s, duration: 02:29)
test 0562...[FTP a type=A URL and CURLOPT_PORT set]
--pd---e--- OK (417 out of 1249, remaining: 04:58, took 0.1s, duration: 02:29)
test 0563...[FTP type=A URL and CURLOPT_PORT set and proxy]
--p----e--- OK (418 out of 1249, remaining: 04:58, took 0.1s, duration: 02:29)
test 0564...[FTP RETR a file over a SOCKS proxy using the multi interface]
s-pd---e--- OK (419 out of 1249, remaining: 04:59, took 1.1s, duration: 02:31)
test 0565...[send HTTP POST using read callback, chunked transfer-encoding and Digest]
--pd---e--- OK (420 out of 1249, remaining: 05:00, took 1.1s, duration: 02:32)
test 0566...[HTTP GET with CURLINFO_CONTENT_LENGTH_DOWNLOAD and 0 bytes transfer]
--pd--oe--- OK (421 out of 1249, remaining: 04:59, took 0.1s, duration: 02:32)
test 0567...[simple RTSP OPTIONS command]
--pd---e--- OK (422 out of 1249, remaining: 05:02, took 2.1s, duration: 02:34)
test 0568...[RTSP Announce (PUT and POST style) test]
--p----e--- OK (423 out of 1249, remaining: 05:01, took 0.1s, duration: 02:34)
test 0569...[RTSP Session ID parsing]
--p---oe--- OK (424 out of 1249, remaining: 05:00, took 0.1s, duration: 02:34)
test 0570...[RTSP CSeq and Session Mismatch checks]
--p----e--- OK (425 out of 1249, remaining: 04:59, took 0.1s, duration: 02:34)
test 0571...[RTSP RTP Interleaving Test]
s-----oe--- OK (426 out of 1249, remaining: 04:58, took 0.1s, duration: 02:34)
test 0572...[RTSP GET_PARAMETER (Put/Heartbeat/Post)]
--p----e--- OK (427 out of 1249, remaining: 04:57, took 0.1s, duration: 02:34)
test 0573...[verify connect time with multi interface]
--pd---e--- OK (428 out of 1249, remaining: 04:56, took 0.1s, duration: 02:34)
test 0574...[FTP wildcard download - changed fnmatch, 2x perform (Unix LIST response)]
s-p----e--- OK (429 out of 1249, remaining: 04:56, took 0.5s, duration: 02:35)
test 0575...[FTP wildcard download - dup_handle and multi interface]
s-p----e--- OK (430 out of 1249, remaining: 04:57, took 0.7s, duration: 02:35)
test 0576...[FTP wildcard download - skip/parser_correctness/CURLOPT_FNMATCH_FUNCTION (Unix)]
s------e--- OK (431 out of 1249, remaining: 04:56, took 0.3s, duration: 02:36)
test 0577...[Funny RTSP version in response]
--p----e--- OK (432 out of 1249, remaining: 04:55, took 0.1s, duration: 02:36)
test 0578...[HTTP POST lower than MAX_INITIAL_POST_SIZE with progress callback]
---d--oe--- OK (433 out of 1249, remaining: 04:54, took 0.1s, duration: 02:36)
test 0579...[small chunked HTTP POSTs with digest auth. and progress callback]
---d--oe--- OK (434 out of 1249, remaining: 04:55, took 1.1s, duration: 02:37)
test 0580...[multi interface, multiple Location: headers]
--pd---e--- OK (435 out of 1249, remaining: 04:54, took 0.1s, duration: 02:37)
test 0581...[multi interface, multiple Content-Type: headers]
--pd---e--- OK (436 out of 1249, remaining: 04:53, took 0.1s, duration: 02:37)
test 0582 SKIPPED: curl lacks sftp server support
test 0583 SKIPPED: curl lacks sftp server support
test 0585...[socket open/close callbacks]
--pd---e--- OK (439 out of 1249, remaining: 04:50, took 0.1s, duration: 02:37)
test 0586...[FTP and open/close socket callbacks]
--pd---e--- OK (440 out of 1249, remaining: 04:49, took 0.1s, duration: 02:37)
test 0587...[HTTP multi-part formpost with aborted read callback]
--p----e--- OK (441 out of 1249, remaining: 04:49, took 0.1s, duration: 02:37)
test 0588...[FTP PORT upload using multi interface, EPRT doesn't work]
--p-u--e--- OK (442 out of 1249, remaining: 04:48, took 0.1s, duration: 02:37)
test 0589...[make a HTTP MIME POST set to NULL]
--pd---e--- OK (443 out of 1249, remaining: 04:47, took 0.1s, duration: 02:37)
test 0591...[FTP multi PORT and 425 on upload]
--p----e--- OK (445 out of 1249, remaining: 04:45, took 0.1s, duration: 02:38)
test 0592...[FTP multi PORT and 421 on upload]
--p----e--- OK (446 out of 1249, remaining: 04:44, took 0.1s, duration: 02:38)
test 0593...[FTP multi PORT upload, no data conn and no transient neg. reply]
--p----e--- OK (447 out of 1249, remaining: 04:47, took 2.1s, duration: 02:40)
test 0595...[verify close callbacks with passive FTP]
--pd---e--- OK (448 out of 1249, remaining: 04:46, took 0.1s, duration: 02:40)
test 0596...[verify close callbacks with active FTP]
--pd---e--- OK (449 out of 1249, remaining: 04:45, took 0.1s, duration: 02:40)
test 0597...[FTP connect only option]
--p----e--- OK (450 out of 1249, remaining: 04:44, took 0.1s, duration: 02:40)
test 0598...[curl_easy_reset with referer and other strings set]
--pd---e--- OK (451 out of 1249, remaining: 04:44, took 0.1s, duration: 02:40)
test 0599...[HTTP GET with progress callback and redirects changing content sizes]
---d--oe--- OK (452 out of 1249, remaining: 04:43, took 0.1s, duration: 02:40)
test 0600 SKIPPED: curl lacks sftp server support
test 0601 SKIPPED: curl lacks scp server support
test 0603 SKIPPED: curl lacks scp server support
test 0605 SKIPPED: curl lacks scp server support
test 0632 SKIPPED: curl lacks sftp support
test 0643...[HTTP multi-part mimepost using read callback for the file part]
--pd---e--- OK (496 out of 1249, remaining: 04:04, took 0.2s, duration: 02:40)
test 0644...[HTTP multi-part formpost with aborted read callback]

 644: protocol FAILED:
--- log/check-expected	2019-10-31 19:13:05.899471460 +0000
+++ log/check-generated	2019-10-31 19:13:05.899471460 +0000
@@ -1,9 +0,0 @@
-POST /644 HTTP/1.1[CR][LF]
-Host: 127.0.0.1:8990[CR][LF]
-Accept: */*[CR][LF]
-Content-Length: 718[CR][LF]
-Content-Type: multipart/form-data; boundary=----------------------------[CR][LF]
-[CR][LF]
-------------------------------[CR][LF]
-Content-Disposition: form-data; name="sendfile"; filename="postit2.c"[CR][LF]
-[CR][LF]

 - abort tests
TESTDONE: 396 tests out of 397 reported OK: 99%
TESTFAIL: These test cases failed: 644 
TESTDONE: 514 tests were considered during 161 seconds.
TESTINFO: 117 tests were skipped due to these restraints:
TESTINFO: "no stunnel" 23 times (300, 301, 302, 303, 304, 305, 306, 309, 310 and 14 more)
TESTINFO: "curl lacks TrackMemory support" 2 times (96, 558)
TESTINFO: "curl lacks debug support" 22 times (67, 68, 69, 81, 89, 90, 91, 150, 155 and 13 more)
TESTINFO: "configured as DISABLED" 17 times (530, 584, 594, 836, 882, 938, 1209, 1211, 1307 and 8 more)
TESTINFO: "curl lacks sftp server support" 33 times (582, 583, 600, 602, 604, 606, 608, 609, 610 and 24 more)
TESTINFO: "curl lacks brotli support" 3 times (314, 315, 316)
TESTINFO: "curl lacks alt-svc support" 1 times (355)
TESTINFO: "curl lacks scp server support" 11 times (601, 603, 605, 607, 617, 619, 621, 623, 629 and 2 more)
TESTINFO: "curl lacks OpenSSL support" 2 times (307, 308)
TESTINFO: "curl lacks sftp support" 1 times (632)
TESTINFO: "curl has threaded-resolver support" 1 times (506)
TESTINFO: "Resolving IPv6 'ip6-localhost' didn't work" 1 times (241)
make: *** [Makefile:794: test] Error 1
make: Leaving directory '/tmp/guix-build-curl-7.66.0.drv-0/curl-7.66.0/tests'
command "make" "-C" "tests" "test" failed with status 2

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

* Re: Maintaining GNU Jami package for Guix
  2019-10-31 20:19 ` Jan Wielkiewicz
@ 2019-10-31 21:37   ` Pierre Neidhardt
  2019-10-31 22:26   ` Marius Bakke
  1 sibling, 0 replies; 40+ messages in thread
From: Pierre Neidhardt @ 2019-10-31 21:37 UTC (permalink / raw)
  To: Jan Wielkiewicz, guix-devel

[-- Attachment #1: Type: text/plain, Size: 234 bytes --]

Fantastic!

I suggest you ask upstream which precise version of Curl they use.

You can still try to skip the tests in the meantime, but the messages
are not very reassuring... :p

-- 
Pierre Neidhardt
https://ambrevar.xyz/

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 487 bytes --]

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

* Re: Maintaining GNU Jami package for Guix
  2019-10-31 20:19 ` Jan Wielkiewicz
  2019-10-31 21:37   ` Pierre Neidhardt
@ 2019-10-31 22:26   ` Marius Bakke
  2019-11-01 12:01     ` Jan Wielkiewicz
  1 sibling, 1 reply; 40+ messages in thread
From: Marius Bakke @ 2019-10-31 22:26 UTC (permalink / raw)
  To: Jan Wielkiewicz, guix-devel

[-- Attachment #1: Type: text/plain, Size: 1076 bytes --]

Jan Wielkiewicz <tona_kosmicznego_smiecia@interia.pl> writes:

> Also as for packaging Jami generally, I think we should keep a separate
> versions of things like gnutls and pjproject (basically all
> dependencies of pjproject), because version used by Jami are often not
> up to date and considering patches getting applied, using an unproper
> version can break compilation.

Do you have a link to the patches that Jami/pjproject needs?

It would be great if we could use system versions of GnuTLS and cURL,
because otherwise Jami risks not getting security updates.

If they really need special patched versions of some libraries, you can
do something along these lines to create a custom variant:

(define-public gnutls/jami
  (hidden-package
   (package/inherit
    gnutls
    (source (origin
              (inherit (package-source gnutls))
              (patches (append (origin-patches gnutls)
                               (search-patches "gnutls-jami.patch"))))))))

I realize now that this won't do the right thing wrt grafts, but we can
deal with that later.  :-)

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 487 bytes --]

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

* Re: Maintaining GNU Jami package for Guix
  2019-10-31 22:26   ` Marius Bakke
@ 2019-11-01 12:01     ` Jan Wielkiewicz
  2019-11-01 19:02       ` Pierre Neidhardt
  2019-11-03 16:37       ` Marius Bakke
  0 siblings, 2 replies; 40+ messages in thread
From: Jan Wielkiewicz @ 2019-11-01 12:01 UTC (permalink / raw)
  To: Marius Bakke; +Cc: guix-devel

Dnia 2019-10-31, o godz. 23:26:39
Marius Bakke <mbakke@fastmail.com> napisał(a):

> Do you have a link to the patches that Jami/pjproject needs?
You can find patches in the ring-project/daemon/contrib/src/pjproject
directory from the latest source tarball here:
https://dl.jami.net/ring-release/tarballs/

> It would be great if we could use system versions of GnuTLS and cURL,
> because otherwise Jami risks not getting security updates.
A bit unlikely, they update dependencies quickly, but they're slower
than upstream. Keeping a separate version and updating it paralelly
will prevent breaking the build process of the modified pjproject
version. 

> If they really need special patched versions of some libraries, you
> can do something along these lines to create a
> cusctm variant:
> 
> (define-public gnutls/jami
>   (hidden-package
>    (package/inherit
>     gnutls
>     (source (origin
>               (inherit (package-source gnutls))
>               (patches (append (origin-patches gnutls)
>                                (search-patches
> "gnutls-jami.patch"))))))))
Why can't we just keep paralell version for a package? Like 
gnutls @ 3.6.7, gnutls @ 3.6.9 etc?   

> I realize now that this won't do the right thing wrt grafts, but we
> can deal with that later.  :-)
Don't really know what grafts are yet, so we can indeed skip this
now :)


Jan Wielkiewicz

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

* Re: Maintaining GNU Jami package for Guix
  2019-10-18 18:56 Maintaining GNU Jami package for Guix Jan
                   ` (3 preceding siblings ...)
  2019-10-31 20:19 ` Jan Wielkiewicz
@ 2019-11-01 12:29 ` Jan Wielkiewicz
  2019-11-01 19:01   ` Pierre Neidhardt
                     ` (2 more replies)
  4 siblings, 3 replies; 40+ messages in thread
From: Jan Wielkiewicz @ 2019-11-01 12:29 UTC (permalink / raw)
  To: guix-devel

[-- Attachment #1: Type: text/plain, Size: 1685 bytes --]

I have good and bad news.
The good news is I fixed curl by using the most recent Jami source
tarball - 20191031.3.40360d8.
The bad news is that pjproject-jami didn't really build, because the
patches failed to get applied again - the curl problem had occured
*before* the problem with pjproject-jami, so I thought it had been
fixed.

I don't know what's the problem - the versions of pjproject and gnutls
seem to be correct, I can check other dependencies of pjproject, but
it'll take some time. I'll also ask the devs if I'm using the right
versions now, but something seems to be broken for me, see this fail:

patching file pjnath/src/pjnath/ice_strans.c
Hunk #1 succeeded at 366 (offset -25 lines).
Hunk #2 FAILED at 1655.
Hunk #3 FAILED at 1861.
2 out of 3 hunks FAILED -- saving rejects to file
pjnath/src/pjnath/ice_strans.c.rej File
pjnath/src/pjnath/turn_session.c is read-only; trying to patch anyway
patching file pjnath/src/pjnath/turn_session.c Hunk #1 succeeded at 974
(offset -1 lines). Hunk #2 succeeded at 1022 (offset -1 lines).
Hunk #3 succeeded at 1050 (offset -1 lines).
Hunk #4 succeeded at 1090 (offset -1 lines).
File pjnath/src/pjnath/turn_sock.c is read-only; trying to patch anyway
patching file pjnath/src/pjnath/turn_sock.c
command "patch" "--force" "-p1" "-i" "Savoir-faire Linux
patches/fix_ebusy_turn.patch" failed with status 1

The full log is attached below.

Why "pjnath/src/pjnath/turn_session.c is read-only; trying to patch
anyway"? Why is it read-only. I don't get it, are we missing some
permissions? Somehow this wasn't a problem before - the previous
version of pjproject-jami didn't have this problem. Is it a bug in Guix?


Jan Wielkiewicz

[-- Attachment #2: pjproject-jami-2.9-the-most-recent.drv --]
[-- Type: application/octet-stream, Size: 111086 bytes --]

starting phase `set-SOURCE-DATE-EPOCH'
phase `set-SOURCE-DATE-EPOCH' succeeded after 0.0 seconds
starting phase `set-paths'
environment variable `PATH' set to `/gnu/store/wqg1phrny7vdc6ns7qxb0d7rq8j1bwmw-autoconf-2.69/bin:/gnu/store/xxv1sk5y2bzi08v13dzs8cmsnivqsf22-automake-1.16.1/bin:/gnu/store/i1cqaixp79vd3qwnyj1ll10pq6skm2wk-pkg-config-0.29.2/bin:/gnu/store/222gr37iybb5cnwxcrz1i45jinp415c2-libtool-2.4.6/bin:/gnu/store/cnqpra8vr2l5fz00rr4yj4bp3hr00cfw-tar-1.32/bin:/gnu/store/py3k9zla9fj3z7430v4crqj5pyrsd3qj-gzip-1.10/bin:/gnu/store/l86azr7r3p5631wj3kk329jl1y1mpjgy-bzip2-1.0.6/bin:/gnu/store/lbip9isk25isymvnb159l115xnacb5j8-xz-5.2.4/bin:/gnu/store/6jdshxwdrad9mlhcqc9k0g24yw45rqf1-file-5.33/bin:/gnu/store/58sq8iabw3jkv0fvf95hd7sq2g4xcsnz-diffutils-3.7/bin:/gnu/store/v76scv4n63ip08g119rczh2mrw31zwpd-patch-2.7.6/bin:/gnu/store/g9d3wv1d68iflx57yp3mcp3k3sv8spsl-findutils-4.6.0/bin:/gnu/store/2z9hsww76aag37p40671l9niq5pvvasx-gawk-5.0.1/bin:/gnu/store/afmvfw1yhfal48n1kjq6bk6kcw8sc3db-sed-4.7/bin:/gnu/store/7iyvxhp2g3v3655zqwr6biz2h0lqv7pr-grep-3.3/bin:/gnu/store/9kzrrccpzl6i1sfwb0drb00gi2gwk0x0-coreutils-8.31/bin:/gnu/store/b5vpfzkr59bpgcsg1k9vvad9h5rwvpgk-make-4.2.1/bin:/gnu/store/29jhbbg1hf557x8j53f9sxd9imlmf02a-bash-minimal-5.0.7/bin:/gnu/store/nc5vlidpxbvngalng30nif8nb3j7gfy2-ld-wrapper-0/bin:/gnu/store/3hkdiscs4910r75njbrql10znxxn7chk-binutils-2.32/bin:/gnu/store/x3jx25cd3q363mr7nbgzrhrv1vza6cf7-gcc-7.4.0/bin:/gnu/store/ahqgl4h89xqj695lgqvsaf6zh2nhy4pj-glibc-2.29/bin:/gnu/store/ahqgl4h89xqj695lgqvsaf6zh2nhy4pj-glibc-2.29/sbin:/gnu/store/d0h6ll4hq4bi58d9p4f1c3w4v1xaigkc-speex-1.2.0/bin:/gnu/store/ms32lbgjkz2vwk0ih79ysygs3dxaydix-gnutls-3.6.10/bin:/gnu/store/pg8bsmynpkg4cv3hx1kpyxisafwip415-resample-1.8.1/bin:/gnu/store/xymkwf57x988q8cny2is1dgzrbr9xdfi-util-linux-2.34/bin:/gnu/store/xymkwf57x988q8cny2is1dgzrbr9xdfi-util-linux-2.34/sbin:/gnu/store/42myw0y4q2djyajzc9i5i4inwr2831nv-m4-1.4.18/bin:/gnu/store/lvnybsygfd6gya6xbdv48g72lb0iqqzx-nettle-3.5.1/bin:/gnu/store/7gabmw9siqrz79slpi1f8i90v3w1638x-libidn2-2.2.0/bin:/gnu/store/lwz8fygpmmsw6h8vrllr56p7ssi5qx33-libtasn1-4.14/bin'
environment variable `ACLOCAL_PATH' set to `/gnu/store/xxv1sk5y2bzi08v13dzs8cmsnivqsf22-automake-1.16.1/share/aclocal:/gnu/store/i1cqaixp79vd3qwnyj1ll10pq6skm2wk-pkg-config-0.29.2/share/aclocal:/gnu/store/222gr37iybb5cnwxcrz1i45jinp415c2-libtool-2.4.6/share/aclocal:/gnu/store/d0h6ll4hq4bi58d9p4f1c3w4v1xaigkc-speex-1.2.0/share/aclocal'
environment variable `PKG_CONFIG_PATH' set to `/gnu/store/lbip9isk25isymvnb159l115xnacb5j8-xz-5.2.4/lib/pkgconfig:/gnu/store/35ps40xim9lradm7ni8kz4lv5qczkvvk-portaudio-190600.20161030/lib/pkgconfig:/gnu/store/d0h6ll4hq4bi58d9p4f1c3w4v1xaigkc-speex-1.2.0/lib/pkgconfig:/gnu/store/cam7i5x7p8scgr72yf84wdcpivm689f5-libsrtp-2.2.0/lib/pkgconfig:/gnu/store/ms32lbgjkz2vwk0ih79ysygs3dxaydix-gnutls-3.6.10/lib/pkgconfig:/gnu/store/xymkwf57x988q8cny2is1dgzrbr9xdfi-util-linux-2.34/lib/pkgconfig:/gnu/store/qx7p7hiq90mi7r78hcr9cyskccy2j4bg-zlib-1.2.11/lib/pkgconfig:/gnu/store/lvnybsygfd6gya6xbdv48g72lb0iqqzx-nettle-3.5.1/lib/pkgconfig:/gnu/store/7gabmw9siqrz79slpi1f8i90v3w1638x-libidn2-2.2.0/lib/pkgconfig:/gnu/store/lwz8fygpmmsw6h8vrllr56p7ssi5qx33-libtasn1-4.14/lib/pkgconfig'
environment variable `BASH_LOADABLES_PATH' unset
environment variable `CPATH' set to `/gnu/store/l86azr7r3p5631wj3kk329jl1y1mpjgy-bzip2-1.0.6/include:/gnu/store/lbip9isk25isymvnb159l115xnacb5j8-xz-5.2.4/include:/gnu/store/6jdshxwdrad9mlhcqc9k0g24yw45rqf1-file-5.33/include:/gnu/store/2z9hsww76aag37p40671l9niq5pvvasx-gawk-5.0.1/include:/gnu/store/b5vpfzkr59bpgcsg1k9vvad9h5rwvpgk-make-4.2.1/include:/gnu/store/3hkdiscs4910r75njbrql10znxxn7chk-binutils-2.32/include:/gnu/store/x3jx25cd3q363mr7nbgzrhrv1vza6cf7-gcc-7.4.0/include:/gnu/store/ahqgl4h89xqj695lgqvsaf6zh2nhy4pj-glibc-2.29/include:/gnu/store/35ps40xim9lradm7ni8kz4lv5qczkvvk-portaudio-190600.20161030/include:/gnu/store/d0h6ll4hq4bi58d9p4f1c3w4v1xaigkc-speex-1.2.0/include:/gnu/store/cam7i5x7p8scgr72yf84wdcpivm689f5-libsrtp-2.2.0/include:/gnu/store/ms32lbgjkz2vwk0ih79ysygs3dxaydix-gnutls-3.6.10/include:/gnu/store/xymkwf57x988q8cny2is1dgzrbr9xdfi-util-linux-2.34/include:/gnu/store/7czrqpi0kwazras6pgyx0bhdn89pg0jl-linux-libre-headers-4.19.56/include:/gnu/store/qx7p7hiq90mi7r78hcr9cyskccy2j4bg-zlib-1.2.11/include:/gnu/store/lvnybsygfd6gya6xbdv48g72lb0iqqzx-nettle-3.5.1/include:/gnu/store/7gabmw9siqrz79slpi1f8i90v3w1638x-libidn2-2.2.0/include:/gnu/store/lwz8fygpmmsw6h8vrllr56p7ssi5qx33-libtasn1-4.14/include:/gnu/store/y7qk8raalgvdnxcglvxa320cfxrjk1x6-gmp-6.1.2/include'
environment variable `LIBRARY_PATH' set to `/gnu/store/l86azr7r3p5631wj3kk329jl1y1mpjgy-bzip2-1.0.6/lib:/gnu/store/lbip9isk25isymvnb159l115xnacb5j8-xz-5.2.4/lib:/gnu/store/6jdshxwdrad9mlhcqc9k0g24yw45rqf1-file-5.33/lib:/gnu/store/2z9hsww76aag37p40671l9niq5pvvasx-gawk-5.0.1/lib:/gnu/store/3hkdiscs4910r75njbrql10znxxn7chk-binutils-2.32/lib:/gnu/store/ahqgl4h89xqj695lgqvsaf6zh2nhy4pj-glibc-2.29/lib:/gnu/store/qky1x5bb2jygy58bn6y95ygfsmpakf52-glibc-2.29-static/lib:/gnu/store/mmqp1xqffn6qw6v88i627c2bpbq36fcy-glibc-utf8-locales-2.29/lib:/gnu/store/35ps40xim9lradm7ni8kz4lv5qczkvvk-portaudio-190600.20161030/lib:/gnu/store/d0h6ll4hq4bi58d9p4f1c3w4v1xaigkc-speex-1.2.0/lib:/gnu/store/cam7i5x7p8scgr72yf84wdcpivm689f5-libsrtp-2.2.0/lib:/gnu/store/ms32lbgjkz2vwk0ih79ysygs3dxaydix-gnutls-3.6.10/lib:/gnu/store/xymkwf57x988q8cny2is1dgzrbr9xdfi-util-linux-2.34/lib:/gnu/store/qx7p7hiq90mi7r78hcr9cyskccy2j4bg-zlib-1.2.11/lib:/gnu/store/lvnybsygfd6gya6xbdv48g72lb0iqqzx-nettle-3.5.1/lib:/gnu/store/7gabmw9siqrz79slpi1f8i90v3w1638x-libidn2-2.2.0/lib:/gnu/store/lwz8fygpmmsw6h8vrllr56p7ssi5qx33-libtasn1-4.14/lib:/gnu/store/y7qk8raalgvdnxcglvxa320cfxrjk1x6-gmp-6.1.2/lib'
environment variable `GUIX_LOCPATH' set to `/gnu/store/mmqp1xqffn6qw6v88i627c2bpbq36fcy-glibc-utf8-locales-2.29/lib/locale'
phase `set-paths' succeeded after 0.0 seconds
starting phase `install-locale'
using 'en_US.utf8' locale for category "LC_ALL"
phase `install-locale' succeeded after 0.0 seconds
starting phase `unpack'
git-checkout/
git-checkout/COPYING
git-checkout/INSTALL.txt
git-checkout/Makefile
git-checkout/README-RTEMS
git-checkout/README.txt
git-checkout/aconfigure
git-checkout/aconfigure.ac
git-checkout/bb10-config.mak
git-checkout/build/
git-checkout/build/cc-auto.mak.in
git-checkout/build/cc-gcc.mak
git-checkout/build/cc-vc.mak
git-checkout/build/common.mak
git-checkout/build/host-mingw.mak
git-checkout/build/host-unix.mak
git-checkout/build/host-win32.mak
git-checkout/build/m-alpha.mak
git-checkout/build/m-arm.mak
git-checkout/build/m-auto.mak
git-checkout/build/m-i386.mak
git-checkout/build/m-m68k.mak
git-checkout/build/m-mpc860.mak
git-checkout/build/m-powerpc.mak
git-checkout/build/m-sparc.mak
git-checkout/build/m-x86_64.mak
git-checkout/build/os-auto.mak.in
git-checkout/build/os-darwinos.mak
git-checkout/build/os-linux.mak
git-checkout/build/os-palmos.mak
git-checkout/build/os-rtems.mak
git-checkout/build/os-sunos.mak
git-checkout/build/os-win32.mak
git-checkout/build/rules.mak
git-checkout/build/vs/
git-checkout/build/vs/pjproject-vs14-api-def.props
git-checkout/build/vs/pjproject-vs14-arm-common-defaults.props
git-checkout/build/vs/pjproject-vs14-arm-release-defaults.props
git-checkout/build/vs/pjproject-vs14-build-targets.targets
git-checkout/build/vs/pjproject-vs14-common-config.props
git-checkout/build/vs/pjproject-vs14-common-defaults.props
git-checkout/build/vs/pjproject-vs14-common-targets.targets
git-checkout/build/vs/pjproject-vs14-debug-defaults.props
git-checkout/build/vs/pjproject-vs14-debug-dynamic-defaults.props
git-checkout/build/vs/pjproject-vs14-debug-static-defaults.props
git-checkout/build/vs/pjproject-vs14-release-defaults.props
git-checkout/build/vs/pjproject-vs14-release-dynamic-defaults.props
git-checkout/build/vs/pjproject-vs14-release-static-defaults.props
git-checkout/build/vs/pjproject-vs14-win32-common-defaults.props
git-checkout/build/vs/pjproject-vs14-win32-release-defaults.props
git-checkout/build/vs/pjproject-vs14-win64-common-defaults.props
git-checkout/build/vs/pjproject-vs14-win64-release-defaults.props
git-checkout/build/vs/pjproject-vs8-common-defaults.vsprops
git-checkout/build/vs/pjproject-vs8-debug-defaults.vsprops
git-checkout/build/vs/pjproject-vs8-debug-dynamic-defaults.vsprops
git-checkout/build/vs/pjproject-vs8-debug-static-defaults.vsprops
git-checkout/build/vs/pjproject-vs8-release-defaults.vsprops
git-checkout/build/vs/pjproject-vs8-release-dynamic-defaults.vsprops
git-checkout/build/vs/pjproject-vs8-release-static-defaults.vsprops
git-checkout/build/vs/pjproject-vs8-win32-common-defaults.vsprops
git-checkout/build/vs/pjproject-vs8-win32-release-defaults.vsprops
git-checkout/build/vs/pjproject-vs8-win64-common-defaults.vsprops
git-checkout/build/vs/pjproject-vs8-win64-release-defaults.vsprops
git-checkout/build/vs/pjproject-vs8-wm2003-common-defaults.vsprops
git-checkout/build/vs/pjproject-vs8-wm2003-release-defaults.vsprops
git-checkout/build/vs/pjproject-vs8-wm5-common-defaults.vsprops
git-checkout/build/vs/pjproject-vs8-wm5-release-defaults.vsprops
git-checkout/build/vs/pjproject-vs8-wm6-common-defaults.vsprops
git-checkout/build/vs/pjproject-vs8-wm6-release-defaults.vsprops
git-checkout/build.mak.in
git-checkout/build.symbian/
git-checkout/build.symbian/00.bat
git-checkout/build.symbian/01.bat
git-checkout/build.symbian/bld.inf
git-checkout/build.symbian/libg7221codec.mmp
git-checkout/build.symbian/libgsmcodec.mmp
git-checkout/build.symbian/libpassthroughcodec.mmp
git-checkout/build.symbian/libresample.mmp
git-checkout/build.symbian/libspeexcodec.mmp
git-checkout/build.symbian/libsrtp.mmp
git-checkout/build.symbian/makedef.sh
git-checkout/build.symbian/null_audio.mmp
git-checkout/build.symbian/null_audioU.def
git-checkout/build.symbian/pjlib.mmp
git-checkout/build.symbian/pjlibU.def
git-checkout/build.symbian/pjlib_test.mmp
git-checkout/build.symbian/pjlib_test.pkg
git-checkout/build.symbian/pjlib_util.mmp
git-checkout/build.symbian/pjlib_utilU.def
git-checkout/build.symbian/pjmedia.mmp
git-checkout/build.symbian/pjmediaU.def
git-checkout/build.symbian/pjmedia_audiodev.mmp
git-checkout/build.symbian/pjnath.mmp
git-checkout/build.symbian/pjnathU.def
git-checkout/build.symbian/pjproject.cww
git-checkout/build.symbian/pjsdp.mmp
git-checkout/build.symbian/pjsdpU.def
git-checkout/build.symbian/pjsip.mmp
git-checkout/build.symbian/pjsipU.def
git-checkout/build.symbian/pjsip_simple.mmp
git-checkout/build.symbian/pjsip_simpleU.def
git-checkout/build.symbian/pjsip_ua.mmp
git-checkout/build.symbian/pjsip_uaU.def
git-checkout/build.symbian/pjstun_client.mmp
git-checkout/build.symbian/pjsua_lib.mmp
git-checkout/build.symbian/pjsua_libU.def
git-checkout/build.symbian/symbian_audio.mmp
git-checkout/build.symbian/symbian_audioU.def
git-checkout/build.symbian/symsndtest.mmp
git-checkout/build.symbian/symsndtest.pkg
git-checkout/c++-build.mak
git-checkout/config.guess
git-checkout/config.sub
git-checkout/configure
git-checkout/configure-android
git-checkout/configure-bb10
git-checkout/configure-iphone
git-checkout/configure-legacy
git-checkout/doc/
git-checkout/doc/pjsip-book/
git-checkout/doc/pjsip-book/Doxyfile
git-checkout/doc/pjsip-book/Makefile
git-checkout/doc/pjsip-book/account.rst
git-checkout/doc/pjsip-book/breathe.rst
git-checkout/doc/pjsip-book/call.rst
git-checkout/doc/pjsip-book/conf.py
git-checkout/doc/pjsip-book/consider.rst
git-checkout/doc/pjsip-book/endpoint.rst
git-checkout/doc/pjsip-book/fetch_trac.py
git-checkout/doc/pjsip-book/index.rst
git-checkout/doc/pjsip-book/intro.rst
git-checkout/doc/pjsip-book/intro_pjsua2.rst
git-checkout/doc/pjsip-book/make.bat
git-checkout/doc/pjsip-book/media.rst
git-checkout/doc/pjsip-book/media_quality.rst
git-checkout/doc/pjsip-book/network_problems.rst
git-checkout/doc/pjsip-book/optimization.rst
git-checkout/doc/pjsip-book/presence.rst
git-checkout/doc/pjsip-book/reference.rst
git-checkout/doc/pjsip-book/samples.rst
git-checkout/install-sh
git-checkout/libpjproject.pc.in
git-checkout/pjlib/
git-checkout/pjlib/build/
git-checkout/pjlib/build/Makefile
git-checkout/pjlib/build/cacert.der
git-checkout/pjlib/build/cacert.pem
git-checkout/pjlib/build/os-auto.mak.in
git-checkout/pjlib/build/os-darwinos.mak
git-checkout/pjlib/build/os-linux.mak
git-checkout/pjlib/build/os-rtems.mak
git-checkout/pjlib/build/os-sunos.mak
git-checkout/pjlib/build/os-win32.mak
git-checkout/pjlib/build/pjlib.vcproj
git-checkout/pjlib/build/pjlib.vcxproj
git-checkout/pjlib/build/pjlib.vcxproj.filters
git-checkout/pjlib/build/pjlib_samples.mak
git-checkout/pjlib/build/pjlib_test.vcproj
git-checkout/pjlib/build/pjlib_test.vcxproj
git-checkout/pjlib/build/pjlib_test.vcxproj.filters
git-checkout/pjlib/build/privkey.p12
git-checkout/pjlib/build/privkey.pem
git-checkout/pjlib/build/wince-evc4/
git-checkout/pjlib/build/wince-evc4/pjlib_test_wince.vcp
git-checkout/pjlib/build/wince-evc4/pjlib_wince.vcp
git-checkout/pjlib/build/wince-evc4/pjlib_wince.vcw
git-checkout/pjlib/docs/
git-checkout/pjlib/docs/doxygen.cfg
git-checkout/pjlib/docs/doxygen.css
git-checkout/pjlib/docs/footer.html
git-checkout/pjlib/docs/header.html
git-checkout/pjlib/include/
git-checkout/pjlib/include/pj/
git-checkout/pjlib/include/pj/activesock.h
git-checkout/pjlib/include/pj/addr_resolv.h
git-checkout/pjlib/include/pj/array.h
git-checkout/pjlib/include/pj/assert.h
git-checkout/pjlib/include/pj/compat/
git-checkout/pjlib/include/pj/compat/assert.h
git-checkout/pjlib/include/pj/compat/cc_armcc.h
git-checkout/pjlib/include/pj/compat/cc_codew.h
git-checkout/pjlib/include/pj/compat/cc_gcc.h
git-checkout/pjlib/include/pj/compat/cc_gcce.h
git-checkout/pjlib/include/pj/compat/cc_msvc.h
git-checkout/pjlib/include/pj/compat/cc_mwcc.h
git-checkout/pjlib/include/pj/compat/ctype.h
git-checkout/pjlib/include/pj/compat/errno.h
git-checkout/pjlib/include/pj/compat/high_precision.h
git-checkout/pjlib/include/pj/compat/limits.h
git-checkout/pjlib/include/pj/compat/m_alpha.h
git-checkout/pjlib/include/pj/compat/m_armv4.h
git-checkout/pjlib/include/pj/compat/m_auto.h.in
git-checkout/pjlib/include/pj/compat/m_i386.h
git-checkout/pjlib/include/pj/compat/m_m68k.h
git-checkout/pjlib/include/pj/compat/m_powerpc.h
git-checkout/pjlib/include/pj/compat/m_sparc.h
git-checkout/pjlib/include/pj/compat/m_x86_64.h
git-checkout/pjlib/include/pj/compat/malloc.h
git-checkout/pjlib/include/pj/compat/os_auto.h.in
git-checkout/pjlib/include/pj/compat/os_darwinos.h
git-checkout/pjlib/include/pj/compat/os_linux.h
git-checkout/pjlib/include/pj/compat/os_palmos.h
git-checkout/pjlib/include/pj/compat/os_rtems.h
git-checkout/pjlib/include/pj/compat/os_sunos.h
git-checkout/pjlib/include/pj/compat/os_symbian.h
git-checkout/pjlib/include/pj/compat/os_win32.h
git-checkout/pjlib/include/pj/compat/os_win32_wince.h
git-checkout/pjlib/include/pj/compat/os_winphone8.h
git-checkout/pjlib/include/pj/compat/os_winuwp.h
git-checkout/pjlib/include/pj/compat/rand.h
git-checkout/pjlib/include/pj/compat/setjmp.h
git-checkout/pjlib/include/pj/compat/size_t.h
git-checkout/pjlib/include/pj/compat/socket.h
git-checkout/pjlib/include/pj/compat/stdarg.h
git-checkout/pjlib/include/pj/compat/stdfileio.h
git-checkout/pjlib/include/pj/compat/string.h
git-checkout/pjlib/include/pj/compat/time.h
git-checkout/pjlib/include/pj/config.h
git-checkout/pjlib/include/pj/config_site_sample.h
git-checkout/pjlib/include/pj/ctype.h
git-checkout/pjlib/include/pj/doxygen.h
git-checkout/pjlib/include/pj/errno.h
git-checkout/pjlib/include/pj/except.h
git-checkout/pjlib/include/pj/fifobuf.h
git-checkout/pjlib/include/pj/file_access.h
git-checkout/pjlib/include/pj/file_io.h
git-checkout/pjlib/include/pj/guid.h
git-checkout/pjlib/include/pj/hash.h
git-checkout/pjlib/include/pj/ioqueue.h
git-checkout/pjlib/include/pj/ip_helper.h
git-checkout/pjlib/include/pj/limits.h
git-checkout/pjlib/include/pj/list.h
git-checkout/pjlib/include/pj/list_i.h
git-checkout/pjlib/include/pj/lock.h
git-checkout/pjlib/include/pj/log.h
git-checkout/pjlib/include/pj/math.h
git-checkout/pjlib/include/pj/os.h
git-checkout/pjlib/include/pj/pool.h
git-checkout/pjlib/include/pj/pool_alt.h
git-checkout/pjlib/include/pj/pool_buf.h
git-checkout/pjlib/include/pj/pool_i.h
git-checkout/pjlib/include/pj/rand.h
git-checkout/pjlib/include/pj/rbtree.h
git-checkout/pjlib/include/pj/sock.h
git-checkout/pjlib/include/pj/sock_qos.h
git-checkout/pjlib/include/pj/sock_select.h
git-checkout/pjlib/include/pj/ssl_sock.h
git-checkout/pjlib/include/pj/string.h
git-checkout/pjlib/include/pj/string_i.h
git-checkout/pjlib/include/pj/timer.h
git-checkout/pjlib/include/pj/types.h
git-checkout/pjlib/include/pj/unicode.h
git-checkout/pjlib/include/pj++/
git-checkout/pjlib/include/pj++/file.hpp
git-checkout/pjlib/include/pj++/hash.hpp
git-checkout/pjlib/include/pj++/list.hpp
git-checkout/pjlib/include/pj++/lock.hpp
git-checkout/pjlib/include/pj++/os.hpp
git-checkout/pjlib/include/pj++/pool.hpp
git-checkout/pjlib/include/pj++/proactor.hpp
git-checkout/pjlib/include/pj++/scanner.hpp
git-checkout/pjlib/include/pj++/sock.hpp
git-checkout/pjlib/include/pj++/string.hpp
git-checkout/pjlib/include/pj++/timer.hpp
git-checkout/pjlib/include/pj++/tree.hpp
git-checkout/pjlib/include/pj++/types.hpp
git-checkout/pjlib/include/pjlib++.hpp
git-checkout/pjlib/include/pjlib.h
git-checkout/pjlib/src/
git-checkout/pjlib/src/pj/
git-checkout/pjlib/src/pj/activesock.c
git-checkout/pjlib/src/pj/addr_resolv_sock.c
git-checkout/pjlib/src/pj/addr_resolv_symbian.cpp
git-checkout/pjlib/src/pj/array.c
git-checkout/pjlib/src/pj/compat/
git-checkout/pjlib/src/pj/compat/sigjmp.c
git-checkout/pjlib/src/pj/compat/string.c
git-checkout/pjlib/src/pj/compat/string_compat.c
git-checkout/pjlib/src/pj/config.c
git-checkout/pjlib/src/pj/ctype.c
git-checkout/pjlib/src/pj/errno.c
git-checkout/pjlib/src/pj/except.c
git-checkout/pjlib/src/pj/exception_symbian.cpp
git-checkout/pjlib/src/pj/extra-exports.c
git-checkout/pjlib/src/pj/fifobuf.c
git-checkout/pjlib/src/pj/file_access_unistd.c
git-checkout/pjlib/src/pj/file_access_win32.c
git-checkout/pjlib/src/pj/file_io_ansi.c
git-checkout/pjlib/src/pj/file_io_win32.c
git-checkout/pjlib/src/pj/guid.c
git-checkout/pjlib/src/pj/guid_android.c
git-checkout/pjlib/src/pj/guid_simple.c
git-checkout/pjlib/src/pj/guid_uuid.c
git-checkout/pjlib/src/pj/guid_win32.c
git-checkout/pjlib/src/pj/hash.c
git-checkout/pjlib/src/pj/ioqueue_common_abs.c
git-checkout/pjlib/src/pj/ioqueue_common_abs.h
git-checkout/pjlib/src/pj/ioqueue_dummy.c
git-checkout/pjlib/src/pj/ioqueue_epoll.c
git-checkout/pjlib/src/pj/ioqueue_select.c
git-checkout/pjlib/src/pj/ioqueue_symbian.cpp
git-checkout/pjlib/src/pj/ioqueue_uwp.cpp
git-checkout/pjlib/src/pj/ioqueue_winnt.c
git-checkout/pjlib/src/pj/ip_helper_generic.c
git-checkout/pjlib/src/pj/ip_helper_symbian.cpp
git-checkout/pjlib/src/pj/ip_helper_win32.c
git-checkout/pjlib/src/pj/ip_helper_winphone8.c
git-checkout/pjlib/src/pj/list.c
git-checkout/pjlib/src/pj/lock.c
git-checkout/pjlib/src/pj/log.c
git-checkout/pjlib/src/pj/log_writer_printk.c
git-checkout/pjlib/src/pj/log_writer_stdout.c
git-checkout/pjlib/src/pj/log_writer_symbian_console.cpp
git-checkout/pjlib/src/pj/os_core_darwin.m
git-checkout/pjlib/src/pj/os_core_symbian.cpp
git-checkout/pjlib/src/pj/os_core_unix.c
git-checkout/pjlib/src/pj/os_core_win32.c
git-checkout/pjlib/src/pj/os_error_symbian.cpp
git-checkout/pjlib/src/pj/os_error_unix.c
git-checkout/pjlib/src/pj/os_error_win32.c
git-checkout/pjlib/src/pj/os_info.c
git-checkout/pjlib/src/pj/os_info_iphone.m
git-checkout/pjlib/src/pj/os_info_symbian.cpp
git-checkout/pjlib/src/pj/os_rwmutex.c
git-checkout/pjlib/src/pj/os_symbian.h
git-checkout/pjlib/src/pj/os_time_bsd.c
git-checkout/pjlib/src/pj/os_time_common.c
git-checkout/pjlib/src/pj/os_time_unix.c
git-checkout/pjlib/src/pj/os_time_win32.c
git-checkout/pjlib/src/pj/os_timestamp_common.c
git-checkout/pjlib/src/pj/os_timestamp_posix.c
git-checkout/pjlib/src/pj/os_timestamp_win32.c
git-checkout/pjlib/src/pj/pool.c
git-checkout/pjlib/src/pj/pool_buf.c
git-checkout/pjlib/src/pj/pool_caching.c
git-checkout/pjlib/src/pj/pool_dbg.c
git-checkout/pjlib/src/pj/pool_policy_kmalloc.c
git-checkout/pjlib/src/pj/pool_policy_malloc.c
git-checkout/pjlib/src/pj/pool_policy_new.cpp
git-checkout/pjlib/src/pj/pool_signature.h
git-checkout/pjlib/src/pj/rand.c
git-checkout/pjlib/src/pj/rbtree.c
git-checkout/pjlib/src/pj/sock_bsd.c
git-checkout/pjlib/src/pj/sock_common.c
git-checkout/pjlib/src/pj/sock_qos_bsd.c
git-checkout/pjlib/src/pj/sock_qos_common.c
git-checkout/pjlib/src/pj/sock_qos_darwin.c
git-checkout/pjlib/src/pj/sock_qos_dummy.c
git-checkout/pjlib/src/pj/sock_qos_symbian.cpp
git-checkout/pjlib/src/pj/sock_qos_wm.c
git-checkout/pjlib/src/pj/sock_select.c
git-checkout/pjlib/src/pj/sock_select_symbian.cpp
git-checkout/pjlib/src/pj/sock_symbian.cpp
git-checkout/pjlib/src/pj/sock_uwp.cpp
git-checkout/pjlib/src/pj/sock_uwp.h
git-checkout/pjlib/src/pj/ssl_sock_common.c
git-checkout/pjlib/src/pj/ssl_sock_darwin.c
git-checkout/pjlib/src/pj/ssl_sock_dump.c
git-checkout/pjlib/src/pj/ssl_sock_gtls.c
git-checkout/pjlib/src/pj/ssl_sock_imp_common.c
git-checkout/pjlib/src/pj/ssl_sock_imp_common.h
git-checkout/pjlib/src/pj/ssl_sock_ossl.c
git-checkout/pjlib/src/pj/ssl_sock_symbian.cpp
git-checkout/pjlib/src/pj/string.c
git-checkout/pjlib/src/pj/symbols.c
git-checkout/pjlib/src/pj/timer.c
git-checkout/pjlib/src/pj/timer_symbian.cpp
git-checkout/pjlib/src/pj/types.c
git-checkout/pjlib/src/pj/unicode_symbian.cpp
git-checkout/pjlib/src/pj/unicode_win32.c
git-checkout/pjlib/src/pjlib++-test/
git-checkout/pjlib/src/pjlib++-test/main.cpp
git-checkout/pjlib/src/pjlib-samples/
git-checkout/pjlib/src/pjlib-samples/except.c
git-checkout/pjlib/src/pjlib-samples/list.c
git-checkout/pjlib/src/pjlib-samples/log.c
git-checkout/pjlib/src/pjlib-test/
git-checkout/pjlib/src/pjlib-test/activesock.c
git-checkout/pjlib/src/pjlib-test/atomic.c
git-checkout/pjlib/src/pjlib-test/echo_clt.c
git-checkout/pjlib/src/pjlib-test/errno.c
git-checkout/pjlib/src/pjlib-test/exception.c
git-checkout/pjlib/src/pjlib-test/exception_wrap.cpp
git-checkout/pjlib/src/pjlib-test/fifobuf.c
git-checkout/pjlib/src/pjlib-test/file.c
git-checkout/pjlib/src/pjlib-test/hash_test.c
git-checkout/pjlib/src/pjlib-test/ioq_perf.c
git-checkout/pjlib/src/pjlib-test/ioq_tcp.c
git-checkout/pjlib/src/pjlib-test/ioq_udp.c
git-checkout/pjlib/src/pjlib-test/ioq_unreg.c
git-checkout/pjlib/src/pjlib-test/list.c
git-checkout/pjlib/src/pjlib-test/main.c
git-checkout/pjlib/src/pjlib-test/main_mod.c
git-checkout/pjlib/src/pjlib-test/main_rtems.c
git-checkout/pjlib/src/pjlib-test/main_symbian.cpp
git-checkout/pjlib/src/pjlib-test/main_win32.c
git-checkout/pjlib/src/pjlib-test/mutex.c
git-checkout/pjlib/src/pjlib-test/os.c
git-checkout/pjlib/src/pjlib-test/pjlib_test_reg.rss
git-checkout/pjlib/src/pjlib-test/pool.c
git-checkout/pjlib/src/pjlib-test/pool_perf.c
git-checkout/pjlib/src/pjlib-test/pool_wrap.cpp
git-checkout/pjlib/src/pjlib-test/rand.c
git-checkout/pjlib/src/pjlib-test/rbtree.c
git-checkout/pjlib/src/pjlib-test/rtems_network_config.h
git-checkout/pjlib/src/pjlib-test/select.c
git-checkout/pjlib/src/pjlib-test/sleep.c
git-checkout/pjlib/src/pjlib-test/sock.c
git-checkout/pjlib/src/pjlib-test/sock_perf.c
git-checkout/pjlib/src/pjlib-test/ssl_sock.c
git-checkout/pjlib/src/pjlib-test/string.c
git-checkout/pjlib/src/pjlib-test/test.c
git-checkout/pjlib/src/pjlib-test/test.h
git-checkout/pjlib/src/pjlib-test/test_wrap.cpp
git-checkout/pjlib/src/pjlib-test/thread.c
git-checkout/pjlib/src/pjlib-test/timer.c
git-checkout/pjlib/src/pjlib-test/timestamp.c
git-checkout/pjlib/src/pjlib-test/udp_echo_srv_ioqueue.c
git-checkout/pjlib/src/pjlib-test/udp_echo_srv_sync.c
git-checkout/pjlib/src/pjlib-test/util.c
git-checkout/pjlib-util/
git-checkout/pjlib-util/build/
git-checkout/pjlib-util/build/Makefile
git-checkout/pjlib-util/build/os-auto.mak.in
git-checkout/pjlib-util/build/os-rtems.mak
git-checkout/pjlib-util/build/pjlib_util.dsw
git-checkout/pjlib-util/build/pjlib_util.vcproj
git-checkout/pjlib-util/build/pjlib_util.vcxproj
git-checkout/pjlib-util/build/pjlib_util.vcxproj.filters
git-checkout/pjlib-util/build/pjlib_util_test.vcproj
git-checkout/pjlib-util/build/pjlib_util_test.vcxproj
git-checkout/pjlib-util/build/pjlib_util_test.vcxproj.filters
git-checkout/pjlib-util/build/wince-evc4/
git-checkout/pjlib-util/build/wince-evc4/pjlib_util_test_wince.vcp
git-checkout/pjlib-util/build/wince-evc4/pjlib_util_wince.vcp
git-checkout/pjlib-util/build/wince-evc4/pjlib_util_wince.vcw
git-checkout/pjlib-util/docs/
git-checkout/pjlib-util/docs/doxygen.cfg
git-checkout/pjlib-util/docs/doxygen.css
git-checkout/pjlib-util/docs/footer.html
git-checkout/pjlib-util/docs/header.html
git-checkout/pjlib-util/include/
git-checkout/pjlib-util/include/pjlib-util/
git-checkout/pjlib-util/include/pjlib-util/base64.h
git-checkout/pjlib-util/include/pjlib-util/cli.h
git-checkout/pjlib-util/include/pjlib-util/cli_console.h
git-checkout/pjlib-util/include/pjlib-util/cli_imp.h
git-checkout/pjlib-util/include/pjlib-util/cli_telnet.h
git-checkout/pjlib-util/include/pjlib-util/config.h
git-checkout/pjlib-util/include/pjlib-util/crc32.h
git-checkout/pjlib-util/include/pjlib-util/dns.h
git-checkout/pjlib-util/include/pjlib-util/dns_server.h
git-checkout/pjlib-util/include/pjlib-util/errno.h
git-checkout/pjlib-util/include/pjlib-util/getopt.h
git-checkout/pjlib-util/include/pjlib-util/hmac_md5.h
git-checkout/pjlib-util/include/pjlib-util/hmac_sha1.h
git-checkout/pjlib-util/include/pjlib-util/http_client.h
git-checkout/pjlib-util/include/pjlib-util/json.h
git-checkout/pjlib-util/include/pjlib-util/md5.h
git-checkout/pjlib-util/include/pjlib-util/pcap.h
git-checkout/pjlib-util/include/pjlib-util/resolver.h
git-checkout/pjlib-util/include/pjlib-util/scanner.h
git-checkout/pjlib-util/include/pjlib-util/scanner_cis_bitwise.h
git-checkout/pjlib-util/include/pjlib-util/scanner_cis_uint.h
git-checkout/pjlib-util/include/pjlib-util/sha1.h
git-checkout/pjlib-util/include/pjlib-util/srv_resolver.h
git-checkout/pjlib-util/include/pjlib-util/string.h
git-checkout/pjlib-util/include/pjlib-util/stun_simple.h
git-checkout/pjlib-util/include/pjlib-util/types.h
git-checkout/pjlib-util/include/pjlib-util/xml.h
git-checkout/pjlib-util/include/pjlib-util.h
git-checkout/pjlib-util/src/
git-checkout/pjlib-util/src/pjlib-util/
git-checkout/pjlib-util/src/pjlib-util/base64.c
git-checkout/pjlib-util/src/pjlib-util/cli.c
git-checkout/pjlib-util/src/pjlib-util/cli_console.c
git-checkout/pjlib-util/src/pjlib-util/cli_telnet.c
git-checkout/pjlib-util/src/pjlib-util/crc32.c
git-checkout/pjlib-util/src/pjlib-util/dns.c
git-checkout/pjlib-util/src/pjlib-util/dns_dump.c
git-checkout/pjlib-util/src/pjlib-util/dns_server.c
git-checkout/pjlib-util/src/pjlib-util/errno.c
git-checkout/pjlib-util/src/pjlib-util/getopt.c
git-checkout/pjlib-util/src/pjlib-util/hmac_md5.c
git-checkout/pjlib-util/src/pjlib-util/hmac_sha1.c
git-checkout/pjlib-util/src/pjlib-util/http_client.c
git-checkout/pjlib-util/src/pjlib-util/json.c
git-checkout/pjlib-util/src/pjlib-util/md5.c
git-checkout/pjlib-util/src/pjlib-util/pcap.c
git-checkout/pjlib-util/src/pjlib-util/resolver.c
git-checkout/pjlib-util/src/pjlib-util/resolver_wrap.cpp
git-checkout/pjlib-util/src/pjlib-util/scanner.c
git-checkout/pjlib-util/src/pjlib-util/scanner_cis_bitwise.c
git-checkout/pjlib-util/src/pjlib-util/scanner_cis_uint.c
git-checkout/pjlib-util/src/pjlib-util/sha1.c
git-checkout/pjlib-util/src/pjlib-util/srv_resolver.c
git-checkout/pjlib-util/src/pjlib-util/string.c
git-checkout/pjlib-util/src/pjlib-util/stun_simple.c
git-checkout/pjlib-util/src/pjlib-util/stun_simple_client.c
git-checkout/pjlib-util/src/pjlib-util/symbols.c
git-checkout/pjlib-util/src/pjlib-util/xml.c
git-checkout/pjlib-util/src/pjlib-util/xml_wrap.cpp
git-checkout/pjlib-util/src/pjlib-util-test/
git-checkout/pjlib-util/src/pjlib-util-test/encryption.c
git-checkout/pjlib-util/src/pjlib-util-test/http_client.c
git-checkout/pjlib-util/src/pjlib-util-test/json_test.c
git-checkout/pjlib-util/src/pjlib-util-test/main.c
git-checkout/pjlib-util/src/pjlib-util-test/main_rtems.c
git-checkout/pjlib-util/src/pjlib-util-test/main_win32.c
git-checkout/pjlib-util/src/pjlib-util-test/resolver_test.c
git-checkout/pjlib-util/src/pjlib-util-test/stun.c
git-checkout/pjlib-util/src/pjlib-util-test/test.c
git-checkout/pjlib-util/src/pjlib-util-test/test.h
git-checkout/pjlib-util/src/pjlib-util-test/xml.c
git-checkout/pjmedia/
git-checkout/pjmedia/README.txt
git-checkout/pjmedia/build/
git-checkout/pjmedia/build/Jbtest.dat
git-checkout/pjmedia/build/Makefile
git-checkout/pjmedia/build/m-i386.mak
git-checkout/pjmedia/build/m-x86_64.mak
git-checkout/pjmedia/build/os-auto.mak.in
git-checkout/pjmedia/build/os-darwinos.mak
git-checkout/pjmedia/build/os-linux.mak
git-checkout/pjmedia/build/os-rtems.mak
git-checkout/pjmedia/build/os-win32.mak
git-checkout/pjmedia/build/pjmedia.vcproj
git-checkout/pjmedia/build/pjmedia.vcxproj
git-checkout/pjmedia/build/pjmedia.vcxproj.filters
git-checkout/pjmedia/build/pjmedia_audiodev.vcproj
git-checkout/pjmedia/build/pjmedia_audiodev.vcxproj
git-checkout/pjmedia/build/pjmedia_audiodev.vcxproj.filters
git-checkout/pjmedia/build/pjmedia_codec.vcproj
git-checkout/pjmedia/build/pjmedia_codec.vcxproj
git-checkout/pjmedia/build/pjmedia_codec.vcxproj.filters
git-checkout/pjmedia/build/pjmedia_test.vcproj
git-checkout/pjmedia/build/pjmedia_test.vcxproj
git-checkout/pjmedia/build/pjmedia_test.vcxproj.filters
git-checkout/pjmedia/build/pjmedia_videodev.vcproj
git-checkout/pjmedia/build/pjmedia_videodev.vcxproj
git-checkout/pjmedia/build/pjmedia_videodev.vcxproj.filters
git-checkout/pjmedia/build/wince-evc4/
git-checkout/pjmedia/build/wince-evc4/pjmedia_auddev_wince.vcp
git-checkout/pjmedia/build/wince-evc4/pjmedia_codec_wince.vcp
git-checkout/pjmedia/build/wince-evc4/pjmedia_test.vcp
git-checkout/pjmedia/build/wince-evc4/pjmedia_wince.vcp
git-checkout/pjmedia/build/wince-evc4/pjmedia_wince.vcw
git-checkout/pjmedia/docs/
git-checkout/pjmedia/docs/doxygen.cfg
git-checkout/pjmedia/docs/footer.html
git-checkout/pjmedia/docs/header.html
git-checkout/pjmedia/docs/master-port.jpg
git-checkout/pjmedia/docs/media-flow.jpg
git-checkout/pjmedia/docs/media-flow.vsd
git-checkout/pjmedia/docs/media-srtp-transport.PNG
git-checkout/pjmedia/docs/media-transport.PNG
git-checkout/pjmedia/docs/sample-manual-resampling.jpg
git-checkout/pjmedia/docs/siprtp.jpg
git-checkout/pjmedia/docs/sndtest.jpg
git-checkout/pjmedia/include/
git-checkout/pjmedia/include/pjmedia/
git-checkout/pjmedia/include/pjmedia/alaw_ulaw.h
git-checkout/pjmedia/include/pjmedia/audiodev.h
git-checkout/pjmedia/include/pjmedia/avi.h
git-checkout/pjmedia/include/pjmedia/avi_stream.h
git-checkout/pjmedia/include/pjmedia/bidirectional.h
git-checkout/pjmedia/include/pjmedia/circbuf.h
git-checkout/pjmedia/include/pjmedia/clock.h
git-checkout/pjmedia/include/pjmedia/codec.h
git-checkout/pjmedia/include/pjmedia/conference.h
git-checkout/pjmedia/include/pjmedia/config.h
git-checkout/pjmedia/include/pjmedia/config_auto.h.in
git-checkout/pjmedia/include/pjmedia/converter.h
git-checkout/pjmedia/include/pjmedia/delaybuf.h
git-checkout/pjmedia/include/pjmedia/doxygen.h
git-checkout/pjmedia/include/pjmedia/echo.h
git-checkout/pjmedia/include/pjmedia/echo_port.h
git-checkout/pjmedia/include/pjmedia/endpoint.h
git-checkout/pjmedia/include/pjmedia/errno.h
git-checkout/pjmedia/include/pjmedia/event.h
git-checkout/pjmedia/include/pjmedia/format.h
git-checkout/pjmedia/include/pjmedia/frame.h
git-checkout/pjmedia/include/pjmedia/g711.h
git-checkout/pjmedia/include/pjmedia/jbuf.h
git-checkout/pjmedia/include/pjmedia/master_port.h
git-checkout/pjmedia/include/pjmedia/mem_port.h
git-checkout/pjmedia/include/pjmedia/null_port.h
git-checkout/pjmedia/include/pjmedia/plc.h
git-checkout/pjmedia/include/pjmedia/port.h
git-checkout/pjmedia/include/pjmedia/resample.h
git-checkout/pjmedia/include/pjmedia/rtcp.h
git-checkout/pjmedia/include/pjmedia/rtcp_fb.h
git-checkout/pjmedia/include/pjmedia/rtcp_xr.h
git-checkout/pjmedia/include/pjmedia/rtp.h
git-checkout/pjmedia/include/pjmedia/sdp.h
git-checkout/pjmedia/include/pjmedia/sdp_neg.h
git-checkout/pjmedia/include/pjmedia/session.h
git-checkout/pjmedia/include/pjmedia/signatures.h
git-checkout/pjmedia/include/pjmedia/silencedet.h
git-checkout/pjmedia/include/pjmedia/sound.h
git-checkout/pjmedia/include/pjmedia/sound_port.h
git-checkout/pjmedia/include/pjmedia/splitcomb.h
git-checkout/pjmedia/include/pjmedia/stereo.h
git-checkout/pjmedia/include/pjmedia/stream.h
git-checkout/pjmedia/include/pjmedia/stream_common.h
git-checkout/pjmedia/include/pjmedia/symbian_sound_aps.h
git-checkout/pjmedia/include/pjmedia/tonegen.h
git-checkout/pjmedia/include/pjmedia/transport.h
git-checkout/pjmedia/include/pjmedia/transport_adapter_sample.h
git-checkout/pjmedia/include/pjmedia/transport_ice.h
git-checkout/pjmedia/include/pjmedia/transport_loop.h
git-checkout/pjmedia/include/pjmedia/transport_srtp.h
git-checkout/pjmedia/include/pjmedia/transport_udp.h
git-checkout/pjmedia/include/pjmedia/types.h
git-checkout/pjmedia/include/pjmedia/vid_codec.h
git-checkout/pjmedia/include/pjmedia/vid_codec_util.h
git-checkout/pjmedia/include/pjmedia/vid_conf.h
git-checkout/pjmedia/include/pjmedia/vid_port.h
git-checkout/pjmedia/include/pjmedia/vid_stream.h
git-checkout/pjmedia/include/pjmedia/vid_tee.h
git-checkout/pjmedia/include/pjmedia/videodev.h
git-checkout/pjmedia/include/pjmedia/wav_playlist.h
git-checkout/pjmedia/include/pjmedia/wav_port.h
git-checkout/pjmedia/include/pjmedia/wave.h
git-checkout/pjmedia/include/pjmedia/wsola.h
git-checkout/pjmedia/include/pjmedia-audiodev/
git-checkout/pjmedia/include/pjmedia-audiodev/audiodev.h
git-checkout/pjmedia/include/pjmedia-audiodev/audiodev_imp.h
git-checkout/pjmedia/include/pjmedia-audiodev/audiotest.h
git-checkout/pjmedia/include/pjmedia-audiodev/config.h
git-checkout/pjmedia/include/pjmedia-audiodev/errno.h
git-checkout/pjmedia/include/pjmedia-codec/
git-checkout/pjmedia/include/pjmedia-codec/amr_helper.h
git-checkout/pjmedia/include/pjmedia-codec/amr_sdp_match.h
git-checkout/pjmedia/include/pjmedia-codec/audio_codecs.h
git-checkout/pjmedia/include/pjmedia-codec/bcg729.h
git-checkout/pjmedia/include/pjmedia-codec/config.h
git-checkout/pjmedia/include/pjmedia-codec/config_auto.h.in
git-checkout/pjmedia/include/pjmedia-codec/ffmpeg_vid_codecs.h
git-checkout/pjmedia/include/pjmedia-codec/g722.h
git-checkout/pjmedia/include/pjmedia-codec/g7221.h
git-checkout/pjmedia/include/pjmedia-codec/g7221_sdp_match.h
git-checkout/pjmedia/include/pjmedia-codec/gsm.h
git-checkout/pjmedia/include/pjmedia-codec/h263_packetizer.h
git-checkout/pjmedia/include/pjmedia-codec/h264_packetizer.h
git-checkout/pjmedia/include/pjmedia-codec/ilbc.h
git-checkout/pjmedia/include/pjmedia-codec/ipp_codecs.h
git-checkout/pjmedia/include/pjmedia-codec/l16.h
git-checkout/pjmedia/include/pjmedia-codec/opencore_amr.h
git-checkout/pjmedia/include/pjmedia-codec/openh264.h
git-checkout/pjmedia/include/pjmedia-codec/opus.h
git-checkout/pjmedia/include/pjmedia-codec/passthrough.h
git-checkout/pjmedia/include/pjmedia-codec/silk.h
git-checkout/pjmedia/include/pjmedia-codec/speex.h
git-checkout/pjmedia/include/pjmedia-codec/types.h
git-checkout/pjmedia/include/pjmedia-codec/vid_toolbox.h
git-checkout/pjmedia/include/pjmedia-codec.h
git-checkout/pjmedia/include/pjmedia-videodev/
git-checkout/pjmedia/include/pjmedia-videodev/avi_dev.h
git-checkout/pjmedia/include/pjmedia-videodev/config.h
git-checkout/pjmedia/include/pjmedia-videodev/errno.h
git-checkout/pjmedia/include/pjmedia-videodev/opengl_dev.h
git-checkout/pjmedia/include/pjmedia-videodev/videodev.h
git-checkout/pjmedia/include/pjmedia-videodev/videodev_imp.h
git-checkout/pjmedia/include/pjmedia.h
git-checkout/pjmedia/include/pjmedia_audiodev.h
git-checkout/pjmedia/include/pjmedia_videodev.h
git-checkout/pjmedia/src/
git-checkout/pjmedia/src/pjmedia/
git-checkout/pjmedia/src/pjmedia/alaw_ulaw.c
git-checkout/pjmedia/src/pjmedia/alaw_ulaw_table.c
git-checkout/pjmedia/src/pjmedia/audiodev.c
git-checkout/pjmedia/src/pjmedia/avi_player.c
git-checkout/pjmedia/src/pjmedia/bidirectional.c
git-checkout/pjmedia/src/pjmedia/clock_thread.c
git-checkout/pjmedia/src/pjmedia/codec.c
git-checkout/pjmedia/src/pjmedia/conf_switch.c
git-checkout/pjmedia/src/pjmedia/conference.c
git-checkout/pjmedia/src/pjmedia/converter.c
git-checkout/pjmedia/src/pjmedia/converter_libswscale.c
git-checkout/pjmedia/src/pjmedia/converter_libyuv.c
git-checkout/pjmedia/src/pjmedia/delaybuf.c
git-checkout/pjmedia/src/pjmedia/dummy.c
git-checkout/pjmedia/src/pjmedia/echo_common.c
git-checkout/pjmedia/src/pjmedia/echo_internal.h
git-checkout/pjmedia/src/pjmedia/echo_port.c
git-checkout/pjmedia/src/pjmedia/echo_speex.c
git-checkout/pjmedia/src/pjmedia/echo_suppress.c
git-checkout/pjmedia/src/pjmedia/echo_webrtc.c
git-checkout/pjmedia/src/pjmedia/endpoint.c
git-checkout/pjmedia/src/pjmedia/errno.c
git-checkout/pjmedia/src/pjmedia/event.c
git-checkout/pjmedia/src/pjmedia/ffmpeg_util.c
git-checkout/pjmedia/src/pjmedia/ffmpeg_util.h
git-checkout/pjmedia/src/pjmedia/format.c
git-checkout/pjmedia/src/pjmedia/g711.c
git-checkout/pjmedia/src/pjmedia/jbuf.c
git-checkout/pjmedia/src/pjmedia/master_port.c
git-checkout/pjmedia/src/pjmedia/mem_capture.c
git-checkout/pjmedia/src/pjmedia/mem_player.c
git-checkout/pjmedia/src/pjmedia/null_port.c
git-checkout/pjmedia/src/pjmedia/plc_common.c
git-checkout/pjmedia/src/pjmedia/port.c
git-checkout/pjmedia/src/pjmedia/resample_libsamplerate.c
git-checkout/pjmedia/src/pjmedia/resample_port.c
git-checkout/pjmedia/src/pjmedia/resample_resample.c
git-checkout/pjmedia/src/pjmedia/resample_speex.c
git-checkout/pjmedia/src/pjmedia/rtcp.c
git-checkout/pjmedia/src/pjmedia/rtcp_fb.c
git-checkout/pjmedia/src/pjmedia/rtcp_xr.c
git-checkout/pjmedia/src/pjmedia/rtp.c
git-checkout/pjmedia/src/pjmedia/sdp.c
git-checkout/pjmedia/src/pjmedia/sdp_cmp.c
git-checkout/pjmedia/src/pjmedia/sdp_neg.c
git-checkout/pjmedia/src/pjmedia/sdp_wrap.cpp
git-checkout/pjmedia/src/pjmedia/session.c
git-checkout/pjmedia/src/pjmedia/silencedet.c
git-checkout/pjmedia/src/pjmedia/sound_legacy.c
git-checkout/pjmedia/src/pjmedia/sound_port.c
git-checkout/pjmedia/src/pjmedia/splitcomb.c
git-checkout/pjmedia/src/pjmedia/stereo_port.c
git-checkout/pjmedia/src/pjmedia/stream.c
git-checkout/pjmedia/src/pjmedia/stream_common.c
git-checkout/pjmedia/src/pjmedia/stream_info.c
git-checkout/pjmedia/src/pjmedia/tonegen.c
git-checkout/pjmedia/src/pjmedia/transport_adapter_sample.c
git-checkout/pjmedia/src/pjmedia/transport_ice.c
git-checkout/pjmedia/src/pjmedia/transport_loop.c
git-checkout/pjmedia/src/pjmedia/transport_srtp.c
git-checkout/pjmedia/src/pjmedia/transport_srtp_dtls.c
git-checkout/pjmedia/src/pjmedia/transport_srtp_sdes.c
git-checkout/pjmedia/src/pjmedia/transport_udp.c
git-checkout/pjmedia/src/pjmedia/types.c
git-checkout/pjmedia/src/pjmedia/vid_codec.c
git-checkout/pjmedia/src/pjmedia/vid_codec_util.c
git-checkout/pjmedia/src/pjmedia/vid_conf.c
git-checkout/pjmedia/src/pjmedia/vid_port.c
git-checkout/pjmedia/src/pjmedia/vid_stream.c
git-checkout/pjmedia/src/pjmedia/vid_stream_info.c
git-checkout/pjmedia/src/pjmedia/vid_tee.c
git-checkout/pjmedia/src/pjmedia/videodev.c
git-checkout/pjmedia/src/pjmedia/wav_player.c
git-checkout/pjmedia/src/pjmedia/wav_playlist.c
git-checkout/pjmedia/src/pjmedia/wav_writer.c
git-checkout/pjmedia/src/pjmedia/wave.c
git-checkout/pjmedia/src/pjmedia/wsola.c
git-checkout/pjmedia/src/pjmedia-audiodev/
git-checkout/pjmedia/src/pjmedia-audiodev/alsa_dev.c
git-checkout/pjmedia/src/pjmedia-audiodev/android_jni_dev.c
git-checkout/pjmedia/src/pjmedia-audiodev/audiodev.c
git-checkout/pjmedia/src/pjmedia-audiodev/audiotest.c
git-checkout/pjmedia/src/pjmedia-audiodev/bb10_dev.c
git-checkout/pjmedia/src/pjmedia-audiodev/bdimad_dev.c
git-checkout/pjmedia/src/pjmedia-audiodev/coreaudio_dev.m
git-checkout/pjmedia/src/pjmedia-audiodev/errno.c
git-checkout/pjmedia/src/pjmedia-audiodev/legacy_dev.c
git-checkout/pjmedia/src/pjmedia-audiodev/null_dev.c
git-checkout/pjmedia/src/pjmedia-audiodev/opensl_dev.c
git-checkout/pjmedia/src/pjmedia-audiodev/pa_dev.c
git-checkout/pjmedia/src/pjmedia-audiodev/s60_g729_bitstream.h
git-checkout/pjmedia/src/pjmedia-audiodev/symb_aps_dev.cpp
git-checkout/pjmedia/src/pjmedia-audiodev/symb_mda_dev.cpp
git-checkout/pjmedia/src/pjmedia-audiodev/symb_vas_dev.cpp
git-checkout/pjmedia/src/pjmedia-audiodev/wasapi_dev.cpp
git-checkout/pjmedia/src/pjmedia-audiodev/wmme_dev.c
git-checkout/pjmedia/src/pjmedia-codec/
git-checkout/pjmedia/src/pjmedia-codec/amr_sdp_match.c
git-checkout/pjmedia/src/pjmedia-codec/audio_codecs.c
git-checkout/pjmedia/src/pjmedia-codec/bcg729.c
git-checkout/pjmedia/src/pjmedia-codec/ffmpeg_vid_codecs.c
git-checkout/pjmedia/src/pjmedia-codec/g722/
git-checkout/pjmedia/src/pjmedia-codec/g722/g722_dec.c
git-checkout/pjmedia/src/pjmedia-codec/g722/g722_dec.h
git-checkout/pjmedia/src/pjmedia-codec/g722/g722_enc.c
git-checkout/pjmedia/src/pjmedia-codec/g722/g722_enc.h
git-checkout/pjmedia/src/pjmedia-codec/g722.c
git-checkout/pjmedia/src/pjmedia-codec/g7221.c
git-checkout/pjmedia/src/pjmedia-codec/g7221_sdp_match.c
git-checkout/pjmedia/src/pjmedia-codec/gsm.c
git-checkout/pjmedia/src/pjmedia-codec/h263_packetizer.c
git-checkout/pjmedia/src/pjmedia-codec/h264_packetizer.c
git-checkout/pjmedia/src/pjmedia-codec/ilbc.c
git-checkout/pjmedia/src/pjmedia-codec/ipp_codecs.c
git-checkout/pjmedia/src/pjmedia-codec/l16.c
git-checkout/pjmedia/src/pjmedia-codec/opencore_amr.c
git-checkout/pjmedia/src/pjmedia-codec/openh264.cpp
git-checkout/pjmedia/src/pjmedia-codec/opus.c
git-checkout/pjmedia/src/pjmedia-codec/passthrough.c
git-checkout/pjmedia/src/pjmedia-codec/silk.c
git-checkout/pjmedia/src/pjmedia-codec/speex_codec.c
git-checkout/pjmedia/src/pjmedia-codec/vid_toolbox.m
git-checkout/pjmedia/src/pjmedia-videodev/
git-checkout/pjmedia/src/pjmedia-videodev/android/
git-checkout/pjmedia/src/pjmedia-videodev/android/PjCamera.java
git-checkout/pjmedia/src/pjmedia-videodev/android/PjCameraInfo.java
git-checkout/pjmedia/src/pjmedia-videodev/android_dev.c
git-checkout/pjmedia/src/pjmedia-videodev/android_opengl.c
git-checkout/pjmedia/src/pjmedia-videodev/avi_dev.c
git-checkout/pjmedia/src/pjmedia-videodev/colorbar_dev.c
git-checkout/pjmedia/src/pjmedia-videodev/darwin_dev.m
git-checkout/pjmedia/src/pjmedia-videodev/dshow_dev.c
git-checkout/pjmedia/src/pjmedia-videodev/dshowclasses.cpp
git-checkout/pjmedia/src/pjmedia-videodev/errno.c
git-checkout/pjmedia/src/pjmedia-videodev/ffmpeg_dev.c
git-checkout/pjmedia/src/pjmedia-videodev/ios_opengl_dev.m
git-checkout/pjmedia/src/pjmedia-videodev/opengl_dev.c
git-checkout/pjmedia/src/pjmedia-videodev/qt_dev.m
git-checkout/pjmedia/src/pjmedia-videodev/sdl_dev.c
git-checkout/pjmedia/src/pjmedia-videodev/sdl_dev_m.m
git-checkout/pjmedia/src/pjmedia-videodev/util.c
git-checkout/pjmedia/src/pjmedia-videodev/util.h
git-checkout/pjmedia/src/pjmedia-videodev/v4l2_dev.c
git-checkout/pjmedia/src/pjmedia-videodev/videodev.c
git-checkout/pjmedia/src/test/
git-checkout/pjmedia/src/test/audio_tool.c
git-checkout/pjmedia/src/test/codec_vectors.c
git-checkout/pjmedia/src/test/jbuf_test.c
git-checkout/pjmedia/src/test/main.c
git-checkout/pjmedia/src/test/mips_test.c
git-checkout/pjmedia/src/test/rtp_test.c
git-checkout/pjmedia/src/test/sdp_neg_test.c
git-checkout/pjmedia/src/test/sdptest.c
git-checkout/pjmedia/src/test/session_test.c
git-checkout/pjmedia/src/test/test.c
git-checkout/pjmedia/src/test/test.h
git-checkout/pjmedia/src/test/vectors/
git-checkout/pjmedia/src/test/vectors/g722_1_dec_in_24000_fe.itu
git-checkout/pjmedia/src/test/vectors/g722_1_dec_in_32000_fe.itu
git-checkout/pjmedia/src/test/vectors/g722_1_dec_out_24000.pcm
git-checkout/pjmedia/src/test/vectors/g722_1_dec_out_24000_fe.pcm
git-checkout/pjmedia/src/test/vectors/g722_1_dec_out_32000.pcm
git-checkout/pjmedia/src/test/vectors/g722_1_dec_out_32000_fe.pcm
git-checkout/pjmedia/src/test/vectors/g722_1_enc_in.wav
git-checkout/pjmedia/src/test/vectors/g722_1_enc_out_24000_be.pak
git-checkout/pjmedia/src/test/vectors/g722_1_enc_out_32000_be.pak
git-checkout/pjmedia/src/test/vectors/swapendian.c
git-checkout/pjmedia/src/test/vid_codec_test.c
git-checkout/pjmedia/src/test/vid_dev_test.c
git-checkout/pjmedia/src/test/vid_port_test.c
git-checkout/pjmedia/src/test/wince_main.c
git-checkout/pjmedia/src/test/wsola_test.c
git-checkout/pjnath/
git-checkout/pjnath/build/
git-checkout/pjnath/build/Makefile
git-checkout/pjnath/build/pjnath.vcproj
git-checkout/pjnath/build/pjnath.vcxproj
git-checkout/pjnath/build/pjnath.vcxproj.filters
git-checkout/pjnath/build/pjnath_test.vcproj
git-checkout/pjnath/build/pjnath_test.vcxproj
git-checkout/pjnath/build/pjnath_test.vcxproj.filters
git-checkout/pjnath/build/pjstun_srv_test.vcproj
git-checkout/pjnath/build/pjturn_client.vcproj
git-checkout/pjnath/build/wince-evc4/
git-checkout/pjnath/build/wince-evc4/pjnath_test_wince.vcp
git-checkout/pjnath/build/wince-evc4/pjnath_wince.vcp
git-checkout/pjnath/build/wince-evc4/pjnath_wince.vcw
git-checkout/pjnath/docs/
git-checkout/pjnath/docs/UML-class-diagram.dia
git-checkout/pjnath/docs/UML-class-diagram.png
git-checkout/pjnath/docs/doc_ice.h
git-checkout/pjnath/docs/doc_mainpage.h
git-checkout/pjnath/docs/doc_nat.h
git-checkout/pjnath/docs/doc_samples.h
git-checkout/pjnath/docs/doc_stun.h
git-checkout/pjnath/docs/doc_turn.h
git-checkout/pjnath/docs/doxygen.cfg
git-checkout/pjnath/docs/doxygen.css
git-checkout/pjnath/docs/footer.html
git-checkout/pjnath/docs/header.html
git-checkout/pjnath/docs/ice-arch.jpg
git-checkout/pjnath/docs/ice_demo.jpg
git-checkout/pjnath/docs/pjturn_client.jpg
git-checkout/pjnath/docs/stun-arch.jpg
git-checkout/pjnath/include/
git-checkout/pjnath/include/pjnath/
git-checkout/pjnath/include/pjnath/config.h
git-checkout/pjnath/include/pjnath/errno.h
git-checkout/pjnath/include/pjnath/ice_session.h
git-checkout/pjnath/include/pjnath/ice_strans.h
git-checkout/pjnath/include/pjnath/nat_detect.h
git-checkout/pjnath/include/pjnath/stun_auth.h
git-checkout/pjnath/include/pjnath/stun_config.h
git-checkout/pjnath/include/pjnath/stun_msg.h
git-checkout/pjnath/include/pjnath/stun_session.h
git-checkout/pjnath/include/pjnath/stun_sock.h
git-checkout/pjnath/include/pjnath/stun_transaction.h
git-checkout/pjnath/include/pjnath/turn_session.h
git-checkout/pjnath/include/pjnath/turn_sock.h
git-checkout/pjnath/include/pjnath/types.h
git-checkout/pjnath/include/pjnath.h
git-checkout/pjnath/src/
git-checkout/pjnath/src/pjnath/
git-checkout/pjnath/src/pjnath/errno.c
git-checkout/pjnath/src/pjnath/ice_session.c
git-checkout/pjnath/src/pjnath/ice_strans.c
git-checkout/pjnath/src/pjnath/nat_detect.c
git-checkout/pjnath/src/pjnath/stun_auth.c
git-checkout/pjnath/src/pjnath/stun_msg.c
git-checkout/pjnath/src/pjnath/stun_msg_dump.c
git-checkout/pjnath/src/pjnath/stun_session.c
git-checkout/pjnath/src/pjnath/stun_sock.c
git-checkout/pjnath/src/pjnath/stun_transaction.c
git-checkout/pjnath/src/pjnath/turn_session.c
git-checkout/pjnath/src/pjnath/turn_sock.c
git-checkout/pjnath/src/pjnath-test/
git-checkout/pjnath/src/pjnath-test/concur_test.c
git-checkout/pjnath/src/pjnath-test/ice_test.c
git-checkout/pjnath/src/pjnath-test/main.c
git-checkout/pjnath/src/pjnath-test/main_win32.c
git-checkout/pjnath/src/pjnath-test/server.c
git-checkout/pjnath/src/pjnath-test/server.h
git-checkout/pjnath/src/pjnath-test/sess_auth.c
git-checkout/pjnath/src/pjnath-test/stun.c
git-checkout/pjnath/src/pjnath-test/stun_sock_test.c
git-checkout/pjnath/src/pjnath-test/test.c
git-checkout/pjnath/src/pjnath-test/test.h
git-checkout/pjnath/src/pjnath-test/turn_sock_test.c
git-checkout/pjnath/src/pjturn-client/
git-checkout/pjnath/src/pjturn-client/client_main.c
git-checkout/pjnath/src/pjturn-srv/
git-checkout/pjnath/src/pjturn-srv/allocation.c
git-checkout/pjnath/src/pjturn-srv/auth.c
git-checkout/pjnath/src/pjturn-srv/auth.h
git-checkout/pjnath/src/pjturn-srv/listener_tcp.c
git-checkout/pjnath/src/pjturn-srv/listener_udp.c
git-checkout/pjnath/src/pjturn-srv/main.c
git-checkout/pjnath/src/pjturn-srv/server.c
git-checkout/pjnath/src/pjturn-srv/turn.h
git-checkout/pjproject-vs14.sln
git-checkout/pjproject-vs8.sln
git-checkout/pjsip/
git-checkout/pjsip/build/
git-checkout/pjsip/build/Makefile
git-checkout/pjsip/build/os-auto.mak.in
git-checkout/pjsip/build/os-rtems.mak
git-checkout/pjsip/build/pjsip_core.vcproj
git-checkout/pjsip/build/pjsip_core.vcxproj
git-checkout/pjsip/build/pjsip_core.vcxproj.filters
git-checkout/pjsip/build/pjsip_simple.vcproj
git-checkout/pjsip/build/pjsip_simple.vcxproj
git-checkout/pjsip/build/pjsip_simple.vcxproj.filters
git-checkout/pjsip/build/pjsip_test.vcproj
git-checkout/pjsip/build/pjsip_test.vcxproj
git-checkout/pjsip/build/pjsip_test.vcxproj.filters
git-checkout/pjsip/build/pjsip_ua.vcproj
git-checkout/pjsip/build/pjsip_ua.vcxproj
git-checkout/pjsip/build/pjsip_ua.vcxproj.filters
git-checkout/pjsip/build/pjsua2_lib.vcproj
git-checkout/pjsip/build/pjsua2_lib.vcxproj
git-checkout/pjsip/build/pjsua2_lib.vcxproj.filters
git-checkout/pjsip/build/pjsua_lib.vcproj
git-checkout/pjsip/build/pjsua_lib.vcxproj
git-checkout/pjsip/build/pjsua_lib.vcxproj.filters
git-checkout/pjsip/build/wince-evc4/
git-checkout/pjsip/build/wince-evc4/pjsip_core_wince.vcp
git-checkout/pjsip/build/wince-evc4/pjsip_simple_wince.vcp
git-checkout/pjsip/build/wince-evc4/pjsip_ua_wince.vcp
git-checkout/pjsip/build/wince-evc4/pjsip_wince.vcw
git-checkout/pjsip/build/wince-evc4/pjsua_lib_wince.vcp
git-checkout/pjsip/build/wince-evc4/test_pjsip_wince.vcp
git-checkout/pjsip/docs/
git-checkout/pjsip/docs/PJSUA-TESTING.txt
git-checkout/pjsip/docs/TRANSPORT-PROBLEMS.TXT
git-checkout/pjsip/docs/doxygen.cfg
git-checkout/pjsip/docs/doxygen.h
git-checkout/pjsip/docs/footer.html
git-checkout/pjsip/docs/header.html
git-checkout/pjsip/docs/pjsip-arch.jpg
git-checkout/pjsip/docs/pjsip-perf.jpg
git-checkout/pjsip/docs/pjsua.jpg
git-checkout/pjsip/docs/siprtp.jpg
git-checkout/pjsip/include/
git-checkout/pjsip/include/pjsip/
git-checkout/pjsip/include/pjsip/print_util.h
git-checkout/pjsip/include/pjsip/sip_auth.h
git-checkout/pjsip/include/pjsip/sip_auth_aka.h
git-checkout/pjsip/include/pjsip/sip_auth_msg.h
git-checkout/pjsip/include/pjsip/sip_auth_parser.h
git-checkout/pjsip/include/pjsip/sip_autoconf.h.in
git-checkout/pjsip/include/pjsip/sip_config.h
git-checkout/pjsip/include/pjsip/sip_dialog.h
git-checkout/pjsip/include/pjsip/sip_endpoint.h
git-checkout/pjsip/include/pjsip/sip_errno.h
git-checkout/pjsip/include/pjsip/sip_event.h
git-checkout/pjsip/include/pjsip/sip_module.h
git-checkout/pjsip/include/pjsip/sip_msg.h
git-checkout/pjsip/include/pjsip/sip_multipart.h
git-checkout/pjsip/include/pjsip/sip_parser.h
git-checkout/pjsip/include/pjsip/sip_private.h
git-checkout/pjsip/include/pjsip/sip_resolve.h
git-checkout/pjsip/include/pjsip/sip_tel_uri.h
git-checkout/pjsip/include/pjsip/sip_transaction.h
git-checkout/pjsip/include/pjsip/sip_transport.h
git-checkout/pjsip/include/pjsip/sip_transport_loop.h
git-checkout/pjsip/include/pjsip/sip_transport_tcp.h
git-checkout/pjsip/include/pjsip/sip_transport_tls.h
git-checkout/pjsip/include/pjsip/sip_transport_udp.h
git-checkout/pjsip/include/pjsip/sip_types.h
git-checkout/pjsip/include/pjsip/sip_ua_layer.h
git-checkout/pjsip/include/pjsip/sip_uri.h
git-checkout/pjsip/include/pjsip/sip_util.h
git-checkout/pjsip/include/pjsip-simple/
git-checkout/pjsip/include/pjsip-simple/errno.h
git-checkout/pjsip/include/pjsip-simple/evsub.h
git-checkout/pjsip/include/pjsip-simple/evsub_msg.h
git-checkout/pjsip/include/pjsip-simple/iscomposing.h
git-checkout/pjsip/include/pjsip-simple/mwi.h
git-checkout/pjsip/include/pjsip-simple/pidf.h
git-checkout/pjsip/include/pjsip-simple/presence.h
git-checkout/pjsip/include/pjsip-simple/publish.h
git-checkout/pjsip/include/pjsip-simple/rpid.h
git-checkout/pjsip/include/pjsip-simple/types.h
git-checkout/pjsip/include/pjsip-simple/xpidf.h
git-checkout/pjsip/include/pjsip-ua/
git-checkout/pjsip/include/pjsip-ua/sip_100rel.h
git-checkout/pjsip/include/pjsip-ua/sip_inv.h
git-checkout/pjsip/include/pjsip-ua/sip_regc.h
git-checkout/pjsip/include/pjsip-ua/sip_replaces.h
git-checkout/pjsip/include/pjsip-ua/sip_timer.h
git-checkout/pjsip/include/pjsip-ua/sip_xfer.h
git-checkout/pjsip/include/pjsip.h
git-checkout/pjsip/include/pjsip_auth.h
git-checkout/pjsip/include/pjsip_simple.h
git-checkout/pjsip/include/pjsip_ua.h
git-checkout/pjsip/include/pjsua-lib/
git-checkout/pjsip/include/pjsua-lib/pjsua.h
git-checkout/pjsip/include/pjsua-lib/pjsua_internal.h
git-checkout/pjsip/include/pjsua.h
git-checkout/pjsip/include/pjsua2/
git-checkout/pjsip/include/pjsua2/account.hpp
git-checkout/pjsip/include/pjsua2/call.hpp
git-checkout/pjsip/include/pjsua2/config.hpp
git-checkout/pjsip/include/pjsua2/doxygen.hpp
git-checkout/pjsip/include/pjsua2/endpoint.hpp
git-checkout/pjsip/include/pjsua2/json.hpp
git-checkout/pjsip/include/pjsua2/media.hpp
git-checkout/pjsip/include/pjsua2/persistent.hpp
git-checkout/pjsip/include/pjsua2/presence.hpp
git-checkout/pjsip/include/pjsua2/siptypes.hpp
git-checkout/pjsip/include/pjsua2/types.hpp
git-checkout/pjsip/include/pjsua2.hpp
git-checkout/pjsip/src/
git-checkout/pjsip/src/pjsip/
git-checkout/pjsip/src/pjsip/sip_auth_aka.c
git-checkout/pjsip/src/pjsip/sip_auth_client.c
git-checkout/pjsip/src/pjsip/sip_auth_msg.c
git-checkout/pjsip/src/pjsip/sip_auth_parser.c
git-checkout/pjsip/src/pjsip/sip_auth_parser_wrap.cpp
git-checkout/pjsip/src/pjsip/sip_auth_server.c
git-checkout/pjsip/src/pjsip/sip_config.c
git-checkout/pjsip/src/pjsip/sip_dialog.c
git-checkout/pjsip/src/pjsip/sip_dialog_wrap.cpp
git-checkout/pjsip/src/pjsip/sip_endpoint.c
git-checkout/pjsip/src/pjsip/sip_endpoint_wrap.cpp
git-checkout/pjsip/src/pjsip/sip_errno.c
git-checkout/pjsip/src/pjsip/sip_msg.c
git-checkout/pjsip/src/pjsip/sip_multipart.c
git-checkout/pjsip/src/pjsip/sip_parser.c
git-checkout/pjsip/src/pjsip/sip_parser_wrap.cpp
git-checkout/pjsip/src/pjsip/sip_resolve.c
git-checkout/pjsip/src/pjsip/sip_tel_uri.c
git-checkout/pjsip/src/pjsip/sip_tel_uri_wrap.cpp
git-checkout/pjsip/src/pjsip/sip_transaction.c
git-checkout/pjsip/src/pjsip/sip_transport.c
git-checkout/pjsip/src/pjsip/sip_transport_loop.c
git-checkout/pjsip/src/pjsip/sip_transport_tcp.c
git-checkout/pjsip/src/pjsip/sip_transport_tls.c
git-checkout/pjsip/src/pjsip/sip_transport_udp.c
git-checkout/pjsip/src/pjsip/sip_transport_wrap.cpp
git-checkout/pjsip/src/pjsip/sip_ua_layer.c
git-checkout/pjsip/src/pjsip/sip_uri.c
git-checkout/pjsip/src/pjsip/sip_util.c
git-checkout/pjsip/src/pjsip/sip_util_proxy.c
git-checkout/pjsip/src/pjsip/sip_util_proxy_wrap.cpp
git-checkout/pjsip/src/pjsip/sip_util_statefull.c
git-checkout/pjsip/src/pjsip/sip_util_wrap.cpp
git-checkout/pjsip/src/pjsip-simple/
git-checkout/pjsip/src/pjsip-simple/errno.c
git-checkout/pjsip/src/pjsip-simple/evsub.c
git-checkout/pjsip/src/pjsip-simple/evsub_msg.c
git-checkout/pjsip/src/pjsip-simple/iscomposing.c
git-checkout/pjsip/src/pjsip-simple/mwi.c
git-checkout/pjsip/src/pjsip-simple/pidf.c
git-checkout/pjsip/src/pjsip-simple/presence.c
git-checkout/pjsip/src/pjsip-simple/presence_body.c
git-checkout/pjsip/src/pjsip-simple/publishc.c
git-checkout/pjsip/src/pjsip-simple/rpid.c
git-checkout/pjsip/src/pjsip-simple/xpidf.c
git-checkout/pjsip/src/pjsip-ua/
git-checkout/pjsip/src/pjsip-ua/sip_100rel.c
git-checkout/pjsip/src/pjsip-ua/sip_inv.c
git-checkout/pjsip/src/pjsip-ua/sip_reg.c
git-checkout/pjsip/src/pjsip-ua/sip_replaces.c
git-checkout/pjsip/src/pjsip-ua/sip_timer.c
git-checkout/pjsip/src/pjsip-ua/sip_xfer.c
git-checkout/pjsip/src/pjsua-lib/
git-checkout/pjsip/src/pjsua-lib/pjsua_acc.c
git-checkout/pjsip/src/pjsua-lib/pjsua_aud.c
git-checkout/pjsip/src/pjsua-lib/pjsua_call.c
git-checkout/pjsip/src/pjsua-lib/pjsua_core.c
git-checkout/pjsip/src/pjsua-lib/pjsua_dump.c
git-checkout/pjsip/src/pjsua-lib/pjsua_im.c
git-checkout/pjsip/src/pjsua-lib/pjsua_media.c
git-checkout/pjsip/src/pjsua-lib/pjsua_pres.c
git-checkout/pjsip/src/pjsua-lib/pjsua_vid.c
git-checkout/pjsip/src/pjsua2/
git-checkout/pjsip/src/pjsua2/account.cpp
git-checkout/pjsip/src/pjsua2/call.cpp
git-checkout/pjsip/src/pjsua2/endpoint.cpp
git-checkout/pjsip/src/pjsua2/json.cpp
git-checkout/pjsip/src/pjsua2/media.cpp
git-checkout/pjsip/src/pjsua2/persistent.cpp
git-checkout/pjsip/src/pjsua2/presence.cpp
git-checkout/pjsip/src/pjsua2/siptypes.cpp
git-checkout/pjsip/src/pjsua2/types.cpp
git-checkout/pjsip/src/pjsua2/util.hpp
git-checkout/pjsip/src/pjsua2-test/
git-checkout/pjsip/src/pjsua2-test/main.cpp
git-checkout/pjsip/src/test/
git-checkout/pjsip/src/test/dlg_core_test.c
git-checkout/pjsip/src/test/dns_test.c
git-checkout/pjsip/src/test/inv_offer_answer_test.c
git-checkout/pjsip/src/test/main.c
git-checkout/pjsip/src/test/main_rtems.c
git-checkout/pjsip/src/test/main_win32.c
git-checkout/pjsip/src/test/msg_err_test.c
git-checkout/pjsip/src/test/msg_logger.c
git-checkout/pjsip/src/test/msg_test.c
git-checkout/pjsip/src/test/multipart_test.c
git-checkout/pjsip/src/test/regc_test.c
git-checkout/pjsip/src/test/test.c
git-checkout/pjsip/src/test/test.h
git-checkout/pjsip/src/test/transport_loop_test.c
git-checkout/pjsip/src/test/transport_tcp_test.c
git-checkout/pjsip/src/test/transport_test.c
git-checkout/pjsip/src/test/transport_udp_test.c
git-checkout/pjsip/src/test/tsx_basic_test.c
git-checkout/pjsip/src/test/tsx_bench.c
git-checkout/pjsip/src/test/tsx_uac_test.c
git-checkout/pjsip/src/test/tsx_uas_test.c
git-checkout/pjsip/src/test/txdata_test.c
git-checkout/pjsip/src/test/uri_test.c
git-checkout/pjsip-apps/
git-checkout/pjsip-apps/build/
git-checkout/pjsip-apps/build/Footprint.mak
git-checkout/pjsip-apps/build/Makefile
git-checkout/pjsip-apps/build/Samples-vc.mak
git-checkout/pjsip-apps/build/Samples.mak
git-checkout/pjsip-apps/build/dummy.c
git-checkout/pjsip-apps/build/get-footprint.py
git-checkout/pjsip-apps/build/libpjproject.vcproj
git-checkout/pjsip-apps/build/libpjproject.vcxproj
git-checkout/pjsip-apps/build/os-win32.mak
git-checkout/pjsip-apps/build/pjsua.vcproj
git-checkout/pjsip-apps/build/pjsua.vcxproj
git-checkout/pjsip-apps/build/pjsua.vcxproj.filters
git-checkout/pjsip-apps/build/pjsystest.vcproj
git-checkout/pjsip-apps/build/pjsystest.vcxproj
git-checkout/pjsip-apps/build/pjsystest.vcxproj.filters
git-checkout/pjsip-apps/build/py_pjsua.vcproj
git-checkout/pjsip-apps/build/python_pjsua.vcproj
git-checkout/pjsip-apps/build/python_pjsua.vcxproj
git-checkout/pjsip-apps/build/python_pjsua.vcxproj.filters
git-checkout/pjsip-apps/build/sample_debug.vcproj
git-checkout/pjsip-apps/build/sample_debug.vcxproj
git-checkout/pjsip-apps/build/sample_debug.vcxproj.filters
git-checkout/pjsip-apps/build/samples.vcproj
git-checkout/pjsip-apps/build/samples.vcxproj
git-checkout/pjsip-apps/build/samples.vcxproj.filters
git-checkout/pjsip-apps/build/swig_java_pjsua2.vcproj
git-checkout/pjsip-apps/build/swig_java_pjsua2.vcxproj
git-checkout/pjsip-apps/build/swig_java_pjsua2.vcxproj.filters
git-checkout/pjsip-apps/build/vidgui.vcproj
git-checkout/pjsip-apps/build/wince-evc4/
git-checkout/pjsip-apps/build/wince-evc4/wince_demos.vcw
git-checkout/pjsip-apps/src/
git-checkout/pjsip-apps/src/3rdparty_media_sample/
git-checkout/pjsip-apps/src/3rdparty_media_sample/Makefile
git-checkout/pjsip-apps/src/3rdparty_media_sample/alt_pjsua_aud.c
git-checkout/pjsip-apps/src/3rdparty_media_sample/alt_pjsua_vid.c
git-checkout/pjsip-apps/src/3rdparty_media_sample/config_site.h
git-checkout/pjsip-apps/src/confbot/
git-checkout/pjsip-apps/src/confbot/confbot.py
git-checkout/pjsip-apps/src/confbot/config.py
git-checkout/pjsip-apps/src/ipjsystest/
git-checkout/pjsip-apps/src/ipjsystest/Classes/
git-checkout/pjsip-apps/src/ipjsystest/Classes/RootViewController.h
git-checkout/pjsip-apps/src/ipjsystest/Classes/RootViewController.m
git-checkout/pjsip-apps/src/ipjsystest/Classes/TestViewController.h
git-checkout/pjsip-apps/src/ipjsystest/Classes/TestViewController.m
git-checkout/pjsip-apps/src/ipjsystest/Classes/ipjsystestAppDelegate.h
git-checkout/pjsip-apps/src/ipjsystest/Classes/ipjsystestAppDelegate.m
git-checkout/pjsip-apps/src/ipjsystest/MainWindow.xib
git-checkout/pjsip-apps/src/ipjsystest/RootViewController.xib
git-checkout/pjsip-apps/src/ipjsystest/TestViewController.xib
git-checkout/pjsip-apps/src/ipjsystest/ipjsystest-Info.plist
git-checkout/pjsip-apps/src/ipjsystest/ipjsystest.xcodeproj/
git-checkout/pjsip-apps/src/ipjsystest/ipjsystest.xcodeproj/project.pbxproj
git-checkout/pjsip-apps/src/ipjsystest/ipjsystest_Prefix.pch
git-checkout/pjsip-apps/src/ipjsystest/main.m
git-checkout/pjsip-apps/src/pjsua/
git-checkout/pjsip-apps/src/pjsua/android/
git-checkout/pjsip-apps/src/pjsua/android/app/
git-checkout/pjsip-apps/src/pjsua/android/app/build.gradle
git-checkout/pjsip-apps/src/pjsua/android/app/src/
git-checkout/pjsip-apps/src/pjsua/android/app/src/main/
git-checkout/pjsip-apps/src/pjsua/android/app/src/main/AndroidManifest.xml
git-checkout/pjsip-apps/src/pjsua/android/app/src/main/java/
git-checkout/pjsip-apps/src/pjsua/android/app/src/main/java/MainActivity.java
git-checkout/pjsip-apps/src/pjsua/android/app/src/main/res/
git-checkout/pjsip-apps/src/pjsua/android/app/src/main/res/drawable-hdpi/
git-checkout/pjsip-apps/src/pjsua/android/app/src/main/res/drawable-hdpi/main_image.png
git-checkout/pjsip-apps/src/pjsua/android/app/src/main/res/drawable-ldpi/
git-checkout/pjsip-apps/src/pjsua/android/app/src/main/res/drawable-ldpi/main_image.png
git-checkout/pjsip-apps/src/pjsua/android/app/src/main/res/drawable-mdpi/
git-checkout/pjsip-apps/src/pjsua/android/app/src/main/res/drawable-mdpi/main_image.png
git-checkout/pjsip-apps/src/pjsua/android/app/src/main/res/drawable-xhdpi/
git-checkout/pjsip-apps/src/pjsua/android/app/src/main/res/drawable-xhdpi/main_image.png
git-checkout/pjsip-apps/src/pjsua/android/app/src/main/res/layout/
git-checkout/pjsip-apps/src/pjsua/android/app/src/main/res/layout/activity_main.xml
git-checkout/pjsip-apps/src/pjsua/android/app/src/main/res/values/
git-checkout/pjsip-apps/src/pjsua/android/app/src/main/res/values/strings.xml
git-checkout/pjsip-apps/src/pjsua/android/app/src/main/res/values/styles.xml
git-checkout/pjsip-apps/src/pjsua/android/app/src/main/res/values-v11/
git-checkout/pjsip-apps/src/pjsua/android/app/src/main/res/values-v11/styles.xml
git-checkout/pjsip-apps/src/pjsua/android/app/src/main/res/values-v14/
git-checkout/pjsip-apps/src/pjsua/android/app/src/main/res/values-v14/styles.xml
git-checkout/pjsip-apps/src/pjsua/android/build.gradle
git-checkout/pjsip-apps/src/pjsua/android/gradle/
git-checkout/pjsip-apps/src/pjsua/android/gradle/wrapper/
git-checkout/pjsip-apps/src/pjsua/android/gradle/wrapper/gradle-wrapper.jar
git-checkout/pjsip-apps/src/pjsua/android/gradle/wrapper/gradle-wrapper.properties
git-checkout/pjsip-apps/src/pjsua/android/gradlew
git-checkout/pjsip-apps/src/pjsua/android/gradlew.bat
git-checkout/pjsip-apps/src/pjsua/android/jni/
git-checkout/pjsip-apps/src/pjsua/android/jni/Makefile
git-checkout/pjsip-apps/src/pjsua/android/jni/pjsua.i
git-checkout/pjsip-apps/src/pjsua/android/jni/pjsua_app_callback.cpp
git-checkout/pjsip-apps/src/pjsua/android/jni/pjsua_app_callback.h
git-checkout/pjsip-apps/src/pjsua/android/settings.gradle
git-checkout/pjsip-apps/src/pjsua/bb10/
git-checkout/pjsip-apps/src/pjsua/bb10/.cproject
git-checkout/pjsip-apps/src/pjsua/bb10/.project
git-checkout/pjsip-apps/src/pjsua/bb10/Makefile
git-checkout/pjsip-apps/src/pjsua/bb10/PjsuaBB.pro
git-checkout/pjsip-apps/src/pjsua/bb10/assets/
git-checkout/pjsip-apps/src/pjsua/bb10/assets/.assets.index
git-checkout/pjsip-apps/src/pjsua/bb10/assets/images/
git-checkout/pjsip-apps/src/pjsua/bb10/assets/images/teluu-logo.png
git-checkout/pjsip-apps/src/pjsua/bb10/assets/main.qml
git-checkout/pjsip-apps/src/pjsua/bb10/bar-descriptor.xml
git-checkout/pjsip-apps/src/pjsua/bb10/config.pri
git-checkout/pjsip-apps/src/pjsua/bb10/icon.png
git-checkout/pjsip-apps/src/pjsua/bb10/precompiled.h
git-checkout/pjsip-apps/src/pjsua/bb10/src/
git-checkout/pjsip-apps/src/pjsua/bb10/src/applicationui.cpp
git-checkout/pjsip-apps/src/pjsua/bb10/src/applicationui.h
git-checkout/pjsip-apps/src/pjsua/bb10/src/main.cpp
git-checkout/pjsip-apps/src/pjsua/bb10/translations/
git-checkout/pjsip-apps/src/pjsua/bb10/translations/Makefile
git-checkout/pjsip-apps/src/pjsua/bb10/translations/PjsuaBB.pro
git-checkout/pjsip-apps/src/pjsua/bb10/translations/PjsuaBB.ts
git-checkout/pjsip-apps/src/pjsua/gui.h
git-checkout/pjsip-apps/src/pjsua/ios/
git-checkout/pjsip-apps/src/pjsua/ios/ipjsua/
git-checkout/pjsip-apps/src/pjsua/ios/ipjsua/Default-568h@2x.png
git-checkout/pjsip-apps/src/pjsua/ios/ipjsua/Default.png
git-checkout/pjsip-apps/src/pjsua/ios/ipjsua/Default@2x.png
git-checkout/pjsip-apps/src/pjsua/ios/ipjsua/Reachability.h
git-checkout/pjsip-apps/src/pjsua/ios/ipjsua/Reachability.m
git-checkout/pjsip-apps/src/pjsua/ios/ipjsua/en.lproj/
git-checkout/pjsip-apps/src/pjsua/ios/ipjsua/en.lproj/InfoPlist.strings
git-checkout/pjsip-apps/src/pjsua/ios/ipjsua/en.lproj/ipjsuaViewController_iPad.xib
git-checkout/pjsip-apps/src/pjsua/ios/ipjsua/en.lproj/ipjsuaViewController_iPhone.xib
git-checkout/pjsip-apps/src/pjsua/ios/ipjsua/ipjsua-Info.plist
git-checkout/pjsip-apps/src/pjsua/ios/ipjsua/ipjsua-Prefix.pch
git-checkout/pjsip-apps/src/pjsua/ios/ipjsua/ipjsuaAppDelegate.h
git-checkout/pjsip-apps/src/pjsua/ios/ipjsua/ipjsuaAppDelegate.m
git-checkout/pjsip-apps/src/pjsua/ios/ipjsua/ipjsuaViewController.h
git-checkout/pjsip-apps/src/pjsua/ios/ipjsua/ipjsuaViewController.m
git-checkout/pjsip-apps/src/pjsua/ios/ipjsua/main.m
git-checkout/pjsip-apps/src/pjsua/ios/ipjsua/pjsua.png
git-checkout/pjsip-apps/src/pjsua/ios/ipjsua.xcodeproj/
git-checkout/pjsip-apps/src/pjsua/ios/ipjsua.xcodeproj/project.pbxproj
git-checkout/pjsip-apps/src/pjsua/ios/ipjsua.xcodeproj/xcshareddata/
git-checkout/pjsip-apps/src/pjsua/ios/ipjsua.xcodeproj/xcshareddata/xcschemes/
git-checkout/pjsip-apps/src/pjsua/ios/ipjsua.xcodeproj/xcshareddata/xcschemes/ipjsua.xcscheme
git-checkout/pjsip-apps/src/pjsua/ios/ipjsua.xcworkspace/
git-checkout/pjsip-apps/src/pjsua/ios/ipjsua.xcworkspace/contents.xcworkspacedata
git-checkout/pjsip-apps/src/pjsua/ios/ipjsua.xcworkspace/xcshareddata/
git-checkout/pjsip-apps/src/pjsua/ios/ipjsua.xcworkspace/xcshareddata/ipjsua.xccheckout
git-checkout/pjsip-apps/src/pjsua/main.c
git-checkout/pjsip-apps/src/pjsua/main_rtems.c
git-checkout/pjsip-apps/src/pjsua/pjsua_app.c
git-checkout/pjsip-apps/src/pjsua/pjsua_app.h
git-checkout/pjsip-apps/src/pjsua/pjsua_app_cli.c
git-checkout/pjsip-apps/src/pjsua/pjsua_app_common.c
git-checkout/pjsip-apps/src/pjsua/pjsua_app_common.h
git-checkout/pjsip-apps/src/pjsua/pjsua_app_config.c
git-checkout/pjsip-apps/src/pjsua/pjsua_app_config.h
git-checkout/pjsip-apps/src/pjsua/pjsua_app_legacy.c
git-checkout/pjsip-apps/src/pjsua/symbian/
git-checkout/pjsip-apps/src/pjsua/symbian/application.uidesign
git-checkout/pjsip-apps/src/pjsua/symbian/data/
git-checkout/pjsip-apps/src/pjsua/symbian/data/pjsua.l01
git-checkout/pjsip-apps/src/pjsua/symbian/data/pjsua.loc
git-checkout/pjsip-apps/src/pjsua/symbian/data/pjsua.rss
git-checkout/pjsip-apps/src/pjsua/symbian/data/pjsuaContainer.l01
git-checkout/pjsip-apps/src/pjsua/symbian/data/pjsuaContainer.loc
git-checkout/pjsip-apps/src/pjsua/symbian/data/pjsuaContainer.rssi
git-checkout/pjsip-apps/src/pjsua/symbian/data/pjsua_reg.loc
git-checkout/pjsip-apps/src/pjsua/symbian/data/pjsua_reg.rss
git-checkout/pjsip-apps/src/pjsua/symbian/gfx/
git-checkout/pjsip-apps/src/pjsua/symbian/gfx/list_icon.bmp
git-checkout/pjsip-apps/src/pjsua/symbian/gfx/list_icon_mask.bmp
git-checkout/pjsip-apps/src/pjsua/symbian/gfx/mark_icon.bmp
git-checkout/pjsip-apps/src/pjsua/symbian/gfx/mark_icon_mask.bmp
git-checkout/pjsip-apps/src/pjsua/symbian/gfx/pjsua.bmp
git-checkout/pjsip-apps/src/pjsua/symbian/gfx/qgn_menu_pjsua.svg
git-checkout/pjsip-apps/src/pjsua/symbian/group/
git-checkout/pjsip-apps/src/pjsua/symbian/group/ABLD.BAT
git-checkout/pjsip-apps/src/pjsua/symbian/group/bld.inf
git-checkout/pjsip-apps/src/pjsua/symbian/group/pjsua.mmp
git-checkout/pjsip-apps/src/pjsua/symbian/group/pjsua_icons.mk
git-checkout/pjsip-apps/src/pjsua/symbian/inc/
git-checkout/pjsip-apps/src/pjsua/symbian/inc/PjsuaContainerView.h
git-checkout/pjsip-apps/src/pjsua/symbian/inc/pjsua.hrh
git-checkout/pjsip-apps/src/pjsua/symbian/inc/pjsua.pan
git-checkout/pjsip-apps/src/pjsua/symbian/inc/pjsuaAppUi.h
git-checkout/pjsip-apps/src/pjsua/symbian/inc/pjsuaApplication.h
git-checkout/pjsip-apps/src/pjsua/symbian/inc/pjsuaContainer.h
git-checkout/pjsip-apps/src/pjsua/symbian/inc/pjsuaDocument.h
git-checkout/pjsip-apps/src/pjsua/symbian/pjsuaContainer.uidesign
git-checkout/pjsip-apps/src/pjsua/symbian/sis/
git-checkout/pjsip-apps/src/pjsua/symbian/sis/backup_registration.xml
git-checkout/pjsip-apps/src/pjsua/symbian/sis/pjsua.pkg
git-checkout/pjsip-apps/src/pjsua/symbian/src/
git-checkout/pjsip-apps/src/pjsua/symbian/src/PjsuaContainerView.cpp
git-checkout/pjsip-apps/src/pjsua/symbian/src/pjsuaAppUi.cpp
git-checkout/pjsip-apps/src/pjsua/symbian/src/pjsuaApplication.cpp
git-checkout/pjsip-apps/src/pjsua/symbian/src/pjsuaContainer.cpp
git-checkout/pjsip-apps/src/pjsua/symbian/src/pjsuaDocument.cpp
git-checkout/pjsip-apps/src/pjsua/winrt/
git-checkout/pjsip-apps/src/pjsua/winrt/cli/
git-checkout/pjsip-apps/src/pjsua/winrt/cli/comp/
git-checkout/pjsip-apps/src/pjsua/winrt/cli/comp/pjsua_cli_shared_comp.vcxitems
git-checkout/pjsip-apps/src/pjsua/winrt/cli/comp/pjsua_cli_shared_comp.vcxitems.filters
git-checkout/pjsip-apps/src/pjsua/winrt/cli/comp/pjsua_cli_uwp_comp.vcxproj
git-checkout/pjsip-apps/src/pjsua/winrt/cli/comp/pjsua_cli_uwp_comp.vcxproj.filters
git-checkout/pjsip-apps/src/pjsua/winrt/cli/comp/pjsua_cli_wp8_comp.vcxproj
git-checkout/pjsip-apps/src/pjsua/winrt/cli/comp/pjsua_cli_wp8_comp.vcxproj.filters
git-checkout/pjsip-apps/src/pjsua/winrt/cli/comp/src/
git-checkout/pjsip-apps/src/pjsua/winrt/cli/comp/src/Globals.cpp
git-checkout/pjsip-apps/src/pjsua/winrt/cli/comp/src/Globals.h
git-checkout/pjsip-apps/src/pjsua/winrt/cli/comp/src/IPjsuaCallback.h
git-checkout/pjsip-apps/src/pjsua/winrt/cli/comp/src/PjsuaCallback.cpp
git-checkout/pjsip-apps/src/pjsua/winrt/cli/comp/src/PjsuaCallback.h
git-checkout/pjsip-apps/src/pjsua/winrt/cli/uwp/
git-checkout/pjsip-apps/src/pjsua/winrt/cli/uwp/App.xaml
git-checkout/pjsip-apps/src/pjsua/winrt/cli/uwp/App.xaml.cs
git-checkout/pjsip-apps/src/pjsua/winrt/cli/uwp/ApplicationInsights.config
git-checkout/pjsip-apps/src/pjsua/winrt/cli/uwp/Assets/
git-checkout/pjsip-apps/src/pjsua/winrt/cli/uwp/Assets/LockScreenLogo.scale-200.png
git-checkout/pjsip-apps/src/pjsua/winrt/cli/uwp/Assets/SplashScreen.scale-200.png
git-checkout/pjsip-apps/src/pjsua/winrt/cli/uwp/Assets/Square150x150Logo.scale-200.png
git-checkout/pjsip-apps/src/pjsua/winrt/cli/uwp/Assets/Square44x44Logo.scale-200.png
git-checkout/pjsip-apps/src/pjsua/winrt/cli/uwp/Assets/Square44x44Logo.targetsize-24_altform-unplated.png
git-checkout/pjsip-apps/src/pjsua/winrt/cli/uwp/Assets/StoreLogo.png
git-checkout/pjsip-apps/src/pjsua/winrt/cli/uwp/Assets/Wide310x150Logo.scale-200.png
git-checkout/pjsip-apps/src/pjsua/winrt/cli/uwp/Assets/teluu-logo.png
git-checkout/pjsip-apps/src/pjsua/winrt/cli/uwp/MainPage.xaml
git-checkout/pjsip-apps/src/pjsua/winrt/cli/uwp/MainPage.xaml.cs
git-checkout/pjsip-apps/src/pjsua/winrt/cli/uwp/Package.appxmanifest
git-checkout/pjsip-apps/src/pjsua/winrt/cli/uwp/Properties/
git-checkout/pjsip-apps/src/pjsua/winrt/cli/uwp/Properties/AssemblyInfo.cs
git-checkout/pjsip-apps/src/pjsua/winrt/cli/uwp/Properties/Default.rd.xml
git-checkout/pjsip-apps/src/pjsua/winrt/cli/uwp/pjsua_cli_uwp.csproj
git-checkout/pjsip-apps/src/pjsua/winrt/cli/uwp/project.json
git-checkout/pjsip-apps/src/pjsua/winrt/cli/uwp/project.lock.json
git-checkout/pjsip-apps/src/pjsua/winrt/cli/wp8/
git-checkout/pjsip-apps/src/pjsua/winrt/cli/wp8/App.xaml
git-checkout/pjsip-apps/src/pjsua/winrt/cli/wp8/App.xaml.cs
git-checkout/pjsip-apps/src/pjsua/winrt/cli/wp8/Assets/
git-checkout/pjsip-apps/src/pjsua/winrt/cli/wp8/Assets/teluu-logo.png
git-checkout/pjsip-apps/src/pjsua/winrt/cli/wp8/MainPage.xaml
git-checkout/pjsip-apps/src/pjsua/winrt/cli/wp8/MainPage.xaml.cs
git-checkout/pjsip-apps/src/pjsua/winrt/cli/wp8/Properties/
git-checkout/pjsip-apps/src/pjsua/winrt/cli/wp8/Properties/AppManifest.xml
git-checkout/pjsip-apps/src/pjsua/winrt/cli/wp8/Properties/AssemblyInfo.cs
git-checkout/pjsip-apps/src/pjsua/winrt/cli/wp8/Properties/WMAppManifest.xml
git-checkout/pjsip-apps/src/pjsua/winrt/cli/wp8/pjsua_cli_wp8.csproj
git-checkout/pjsip-apps/src/pjsua/winrt/gui/
git-checkout/pjsip-apps/src/pjsua/winrt/gui/uwp/
git-checkout/pjsip-apps/src/pjsua/winrt/gui/uwp/Voip/
git-checkout/pjsip-apps/src/pjsua/winrt/gui/uwp/Voip/App.xaml
git-checkout/pjsip-apps/src/pjsua/winrt/gui/uwp/Voip/App.xaml.cs
git-checkout/pjsip-apps/src/pjsua/winrt/gui/uwp/Voip/ApplicationInsights.config
git-checkout/pjsip-apps/src/pjsua/winrt/gui/uwp/Voip/Assets/
git-checkout/pjsip-apps/src/pjsua/winrt/gui/uwp/Voip/Assets/LockScreenLogo.scale-200.png
git-checkout/pjsip-apps/src/pjsua/winrt/gui/uwp/Voip/Assets/SplashScreen.scale-200.png
git-checkout/pjsip-apps/src/pjsua/winrt/gui/uwp/Voip/Assets/Square150x150Logo.scale-200.png
git-checkout/pjsip-apps/src/pjsua/winrt/gui/uwp/Voip/Assets/Square44x44Logo.scale-200.png
git-checkout/pjsip-apps/src/pjsua/winrt/gui/uwp/Voip/Assets/Square44x44Logo.targetsize-24_altform-unplated.png
git-checkout/pjsip-apps/src/pjsua/winrt/gui/uwp/Voip/Assets/StoreLogo.png
git-checkout/pjsip-apps/src/pjsua/winrt/gui/uwp/Voip/Assets/Wide310x150Logo.scale-200.png
git-checkout/pjsip-apps/src/pjsua/winrt/gui/uwp/Voip/Helpers/
git-checkout/pjsip-apps/src/pjsua/winrt/gui/uwp/Voip/Helpers/AppServiceHelper.cs
git-checkout/pjsip-apps/src/pjsua/winrt/gui/uwp/Voip/Helpers/EndpointHelper.cs
git-checkout/pjsip-apps/src/pjsua/winrt/gui/uwp/Voip/Helpers/VoipCallHelper.cs
git-checkout/pjsip-apps/src/pjsua/winrt/gui/uwp/Voip/MainPage.xaml
git-checkout/pjsip-apps/src/pjsua/winrt/gui/uwp/Voip/MainPage.xaml.cs
git-checkout/pjsip-apps/src/pjsua/winrt/gui/uwp/Voip/Properties/
git-checkout/pjsip-apps/src/pjsua/winrt/gui/uwp/Voip/Properties/AssemblyInfo.cs
git-checkout/pjsip-apps/src/pjsua/winrt/gui/uwp/Voip/Properties/Default.rd.xml
git-checkout/pjsip-apps/src/pjsua/winrt/gui/uwp/Voip/Voip.csproj
git-checkout/pjsip-apps/src/pjsua/winrt/gui/uwp/Voip/Voip_TemporaryKey.pfx
git-checkout/pjsip-apps/src/pjsua/winrt/gui/uwp/Voip/package.appxmanifest
git-checkout/pjsip-apps/src/pjsua/winrt/gui/uwp/Voip/project.json
git-checkout/pjsip-apps/src/pjsua/winrt/gui/uwp/Voip/project.lock.json
git-checkout/pjsip-apps/src/pjsua/winrt/gui/uwp/Voip.sln
git-checkout/pjsip-apps/src/pjsua/winrt/gui/uwp/VoipBackEnd/
git-checkout/pjsip-apps/src/pjsua/winrt/gui/uwp/VoipBackEnd/ApiLock.cpp
git-checkout/pjsip-apps/src/pjsua/winrt/gui/uwp/VoipBackEnd/ApiLock.h
git-checkout/pjsip-apps/src/pjsua/winrt/gui/uwp/VoipBackEnd/MyApp.cpp
git-checkout/pjsip-apps/src/pjsua/winrt/gui/uwp/VoipBackEnd/MyApp.h
git-checkout/pjsip-apps/src/pjsua/winrt/gui/uwp/VoipBackEnd/VoipBackEnd.vcxproj
git-checkout/pjsip-apps/src/pjsua/winrt/gui/uwp/VoipBackEnd/VoipBackEnd.vcxproj.filters
git-checkout/pjsip-apps/src/pjsua/winrt/gui/uwp/VoipBackEnd/pch.cpp
git-checkout/pjsip-apps/src/pjsua/winrt/gui/uwp/VoipBackEnd/pch.h
git-checkout/pjsip-apps/src/pjsua/winrt/gui/uwp/VoipHost/
git-checkout/pjsip-apps/src/pjsua/winrt/gui/uwp/VoipHost/VoipHost.cpp
git-checkout/pjsip-apps/src/pjsua/winrt/gui/uwp/VoipHost/VoipHost.vcxproj
git-checkout/pjsip-apps/src/pjsua/winrt/gui/uwp/VoipHost/VoipHost.vcxproj.filters
git-checkout/pjsip-apps/src/pjsua/winrt/gui/uwp/VoipTasks/
git-checkout/pjsip-apps/src/pjsua/winrt/gui/uwp/VoipTasks/AppService.cs
git-checkout/pjsip-apps/src/pjsua/winrt/gui/uwp/VoipTasks/BackgroundOperations/
git-checkout/pjsip-apps/src/pjsua/winrt/gui/uwp/VoipTasks/BackgroundOperations/BackgroundOperations.cs
git-checkout/pjsip-apps/src/pjsua/winrt/gui/uwp/VoipTasks/CallRtcTask.cs
git-checkout/pjsip-apps/src/pjsua/winrt/gui/uwp/VoipTasks/Helpers/
git-checkout/pjsip-apps/src/pjsua/winrt/gui/uwp/VoipTasks/Helpers/Current.cs
git-checkout/pjsip-apps/src/pjsua/winrt/gui/uwp/VoipTasks/Helpers/EndpointHelper.cs
git-checkout/pjsip-apps/src/pjsua/winrt/gui/uwp/VoipTasks/Helpers/VccCallHelper.cs
git-checkout/pjsip-apps/src/pjsua/winrt/gui/uwp/VoipTasks/Properties/
git-checkout/pjsip-apps/src/pjsua/winrt/gui/uwp/VoipTasks/Properties/AssemblyInfo.cs
git-checkout/pjsip-apps/src/pjsua/winrt/gui/uwp/VoipTasks/VoipTasks.csproj
git-checkout/pjsip-apps/src/pjsua/winrt/gui/uwp/VoipTasks/project.json
git-checkout/pjsip-apps/src/pjsua/winrt/gui/uwp/VoipTasks/project.lock.json
git-checkout/pjsip-apps/src/pjsua/wm/
git-checkout/pjsip-apps/src/pjsua/wm/main_wm.c
git-checkout/pjsip-apps/src/pjsua/wm/pjsua.bmp
git-checkout/pjsip-apps/src/pjsystest/
git-checkout/pjsip-apps/src/pjsystest/gui.h
git-checkout/pjsip-apps/src/pjsystest/main_console.c
git-checkout/pjsip-apps/src/pjsystest/main_wm.c
git-checkout/pjsip-apps/src/pjsystest/pjsystest_wince.rc
git-checkout/pjsip-apps/src/pjsystest/pjsystest_wince.rc2
git-checkout/pjsip-apps/src/pjsystest/resource.h
git-checkout/pjsip-apps/src/pjsystest/systest.c
git-checkout/pjsip-apps/src/pjsystest/systest.h
git-checkout/pjsip-apps/src/py_pjsua/
git-checkout/pjsip-apps/src/py_pjsua/DEPRECATED.txt
git-checkout/pjsip-apps/src/py_pjsua/Makefile
git-checkout/pjsip-apps/src/py_pjsua/helper.mak
git-checkout/pjsip-apps/src/py_pjsua/pjsua.py
git-checkout/pjsip-apps/src/py_pjsua/pjsua_app.py
git-checkout/pjsip-apps/src/py_pjsua/py_pjsua.c
git-checkout/pjsip-apps/src/py_pjsua/py_pjsua.def
git-checkout/pjsip-apps/src/py_pjsua/py_pjsua.h
git-checkout/pjsip-apps/src/py_pjsua/setup.py
git-checkout/pjsip-apps/src/pygui/
git-checkout/pjsip-apps/src/pygui/account.py
git-checkout/pjsip-apps/src/pygui/accountsetting.py
git-checkout/pjsip-apps/src/pygui/application.py
git-checkout/pjsip-apps/src/pygui/buddy.py
git-checkout/pjsip-apps/src/pygui/call.py
git-checkout/pjsip-apps/src/pygui/chat.py
git-checkout/pjsip-apps/src/pygui/chatgui.py
git-checkout/pjsip-apps/src/pygui/endpoint.py
git-checkout/pjsip-apps/src/pygui/log.py
git-checkout/pjsip-apps/src/pygui/settings.py
git-checkout/pjsip-apps/src/python/
git-checkout/pjsip-apps/src/python/Makefile
git-checkout/pjsip-apps/src/python/_pjsua.c
git-checkout/pjsip-apps/src/python/_pjsua.def
git-checkout/pjsip-apps/src/python/_pjsua.h
git-checkout/pjsip-apps/src/python/helper.mak
git-checkout/pjsip-apps/src/python/pjsua.py
git-checkout/pjsip-apps/src/python/samples/
git-checkout/pjsip-apps/src/python/samples/call.py
git-checkout/pjsip-apps/src/python/samples/presence.py
git-checkout/pjsip-apps/src/python/samples/registration.py
git-checkout/pjsip-apps/src/python/samples/simplecall.py
git-checkout/pjsip-apps/src/python/setup-vc.py
git-checkout/pjsip-apps/src/python/setup.py
git-checkout/pjsip-apps/src/samples/
git-checkout/pjsip-apps/src/samples/aectest.c
git-checkout/pjsip-apps/src/samples/android_sample/
git-checkout/pjsip-apps/src/samples/android_sample/jni/
git-checkout/pjsip-apps/src/samples/android_sample/jni/Android.mk
git-checkout/pjsip-apps/src/samples/android_sample/jni/Application.mk
git-checkout/pjsip-apps/src/samples/android_sample/jni/dummy.c
git-checkout/pjsip-apps/src/samples/auddemo.c
git-checkout/pjsip-apps/src/samples/aviplay.c
git-checkout/pjsip-apps/src/samples/clidemo.c
git-checkout/pjsip-apps/src/samples/confbench.c
git-checkout/pjsip-apps/src/samples/confsample.c
git-checkout/pjsip-apps/src/samples/debug.cpp
git-checkout/pjsip-apps/src/samples/encdec.c
git-checkout/pjsip-apps/src/samples/footprint.c
git-checkout/pjsip-apps/src/samples/httpdemo.c
git-checkout/pjsip-apps/src/samples/icedemo.c
git-checkout/pjsip-apps/src/samples/invtester.c
git-checkout/pjsip-apps/src/samples/jbsim.c
git-checkout/pjsip-apps/src/samples/latency.c
git-checkout/pjsip-apps/src/samples/level.c
git-checkout/pjsip-apps/src/samples/main_rtems.c
git-checkout/pjsip-apps/src/samples/mix.c
git-checkout/pjsip-apps/src/samples/pcaputil.c
git-checkout/pjsip-apps/src/samples/pjsip-perf.c
git-checkout/pjsip-apps/src/samples/pjsua2_demo.cpp
git-checkout/pjsip-apps/src/samples/playfile.c
git-checkout/pjsip-apps/src/samples/playsine.c
git-checkout/pjsip-apps/src/samples/proxy.h
git-checkout/pjsip-apps/src/samples/recfile.c
git-checkout/pjsip-apps/src/samples/resampleplay.c
git-checkout/pjsip-apps/src/samples/simple_pjsua.c
git-checkout/pjsip-apps/src/samples/simpleua.c
git-checkout/pjsip-apps/src/samples/sipecho.c
git-checkout/pjsip-apps/src/samples/siprtp.c
git-checkout/pjsip-apps/src/samples/siprtp_report.c
git-checkout/pjsip-apps/src/samples/sipstateless.c
git-checkout/pjsip-apps/src/samples/stateful_proxy.c
git-checkout/pjsip-apps/src/samples/stateless_proxy.c
git-checkout/pjsip-apps/src/samples/stereotest.c
git-checkout/pjsip-apps/src/samples/streamutil.c
git-checkout/pjsip-apps/src/samples/strerror.c
git-checkout/pjsip-apps/src/samples/tonegen.c
git-checkout/pjsip-apps/src/samples/util.h
git-checkout/pjsip-apps/src/samples/vid_codec_test.c
git-checkout/pjsip-apps/src/samples/vid_streamutil.c
git-checkout/pjsip-apps/src/swig/
git-checkout/pjsip-apps/src/swig/Makefile
git-checkout/pjsip-apps/src/swig/csharp/
git-checkout/pjsip-apps/src/swig/csharp/Makefile
git-checkout/pjsip-apps/src/swig/csharp/sample.cs
git-checkout/pjsip-apps/src/swig/importsym.py
git-checkout/pjsip-apps/src/swig/java/
git-checkout/pjsip-apps/src/swig/java/Makefile
git-checkout/pjsip-apps/src/swig/java/android/
git-checkout/pjsip-apps/src/swig/java/android/app/
git-checkout/pjsip-apps/src/swig/java/android/app/build.gradle
git-checkout/pjsip-apps/src/swig/java/android/app/src/
git-checkout/pjsip-apps/src/swig/java/android/app/src/main/
git-checkout/pjsip-apps/src/swig/java/android/app/src/main/AndroidManifest.xml
git-checkout/pjsip-apps/src/swig/java/android/app/src/main/java/
git-checkout/pjsip-apps/src/swig/java/android/app/src/main/java/org/
git-checkout/pjsip-apps/src/swig/java/android/app/src/main/java/org/pjsip/
git-checkout/pjsip-apps/src/swig/java/android/app/src/main/java/org/pjsip/pjsua2/
git-checkout/pjsip-apps/src/swig/java/android/app/src/main/java/org/pjsip/pjsua2/app/
git-checkout/pjsip-apps/src/swig/java/android/app/src/main/java/org/pjsip/pjsua2/app/CallActivity.java
git-checkout/pjsip-apps/src/swig/java/android/app/src/main/java/org/pjsip/pjsua2/app/MainActivity.java
git-checkout/pjsip-apps/src/swig/java/android/app/src/main/java/org/pjsip/pjsua2/app/MyApp.java
git-checkout/pjsip-apps/src/swig/java/android/app/src/main/res/
git-checkout/pjsip-apps/src/swig/java/android/app/src/main/res/drawable/
git-checkout/pjsip-apps/src/swig/java/android/app/src/main/res/drawable/bkg.xml
git-checkout/pjsip-apps/src/swig/java/android/app/src/main/res/drawable-hdpi/
git-checkout/pjsip-apps/src/swig/java/android/app/src/main/res/drawable-hdpi/ic_launcher.png
git-checkout/pjsip-apps/src/swig/java/android/app/src/main/res/drawable-mdpi/
git-checkout/pjsip-apps/src/swig/java/android/app/src/main/res/drawable-mdpi/ic_launcher.png
git-checkout/pjsip-apps/src/swig/java/android/app/src/main/res/drawable-xhdpi/
git-checkout/pjsip-apps/src/swig/java/android/app/src/main/res/drawable-xhdpi/ic_launcher.png
git-checkout/pjsip-apps/src/swig/java/android/app/src/main/res/drawable-xxhdpi/
git-checkout/pjsip-apps/src/swig/java/android/app/src/main/res/drawable-xxhdpi/ic_launcher.png
git-checkout/pjsip-apps/src/swig/java/android/app/src/main/res/layout/
git-checkout/pjsip-apps/src/swig/java/android/app/src/main/res/layout/activity_call.xml
git-checkout/pjsip-apps/src/swig/java/android/app/src/main/res/layout/activity_main.xml
git-checkout/pjsip-apps/src/swig/java/android/app/src/main/res/layout/dlg_account_config.xml
git-checkout/pjsip-apps/src/swig/java/android/app/src/main/res/layout/dlg_add_buddy.xml
git-checkout/pjsip-apps/src/swig/java/android/app/src/main/res/menu/
git-checkout/pjsip-apps/src/swig/java/android/app/src/main/res/menu/call.xml
git-checkout/pjsip-apps/src/swig/java/android/app/src/main/res/menu/main.xml
git-checkout/pjsip-apps/src/swig/java/android/app/src/main/res/values/
git-checkout/pjsip-apps/src/swig/java/android/app/src/main/res/values/colors.xml
git-checkout/pjsip-apps/src/swig/java/android/app/src/main/res/values/dimens.xml
git-checkout/pjsip-apps/src/swig/java/android/app/src/main/res/values/strings.xml
git-checkout/pjsip-apps/src/swig/java/android/app/src/main/res/values/styles.xml
git-checkout/pjsip-apps/src/swig/java/android/app/src/main/res/values-sw600dp/
git-checkout/pjsip-apps/src/swig/java/android/app/src/main/res/values-sw600dp/dimens.xml
git-checkout/pjsip-apps/src/swig/java/android/app/src/main/res/values-sw720dp-land/
git-checkout/pjsip-apps/src/swig/java/android/app/src/main/res/values-sw720dp-land/dimens.xml
git-checkout/pjsip-apps/src/swig/java/android/app/src/main/res/values-v11/
git-checkout/pjsip-apps/src/swig/java/android/app/src/main/res/values-v11/styles.xml
git-checkout/pjsip-apps/src/swig/java/android/app/src/main/res/values-v14/
git-checkout/pjsip-apps/src/swig/java/android/app/src/main/res/values-v14/styles.xml
git-checkout/pjsip-apps/src/swig/java/android/build.gradle
git-checkout/pjsip-apps/src/swig/java/android/gradle/
git-checkout/pjsip-apps/src/swig/java/android/gradle/wrapper/
git-checkout/pjsip-apps/src/swig/java/android/gradle/wrapper/gradle-wrapper.jar
git-checkout/pjsip-apps/src/swig/java/android/gradle/wrapper/gradle-wrapper.properties
git-checkout/pjsip-apps/src/swig/java/android/gradlew
git-checkout/pjsip-apps/src/swig/java/android/gradlew.bat
git-checkout/pjsip-apps/src/swig/java/android/settings.gradle
git-checkout/pjsip-apps/src/swig/java/sample.java
git-checkout/pjsip-apps/src/swig/java/sample2.java
git-checkout/pjsip-apps/src/swig/java/test.java
git-checkout/pjsip-apps/src/swig/pjsua2.i
git-checkout/pjsip-apps/src/swig/python/
git-checkout/pjsip-apps/src/swig/python/Makefile
git-checkout/pjsip-apps/src/swig/python/cc_mingw.c
git-checkout/pjsip-apps/src/swig/python/helper.mak
git-checkout/pjsip-apps/src/swig/python/setup.py
git-checkout/pjsip-apps/src/swig/python/test.py
git-checkout/pjsip-apps/src/swig/symbols.i
git-checkout/pjsip-apps/src/swig/symbols.lst
git-checkout/pjsip-apps/src/symsndtest/
git-checkout/pjsip-apps/src/symsndtest/app_main.cpp
git-checkout/pjsip-apps/src/symsndtest/main_symbian.cpp
git-checkout/pjsip-apps/src/symsndtest/symsndtest_reg.rss
git-checkout/pjsip-apps/src/vidgui/
git-checkout/pjsip-apps/src/vidgui/INSTALL.TXT
git-checkout/pjsip-apps/src/vidgui/pj-pkgconfig.mak
git-checkout/pjsip-apps/src/vidgui/vidgui.cpp
git-checkout/pjsip-apps/src/vidgui/vidgui.h
git-checkout/pjsip-apps/src/vidgui/vidgui.pro
git-checkout/pjsip-apps/src/vidgui/vidwin.cpp
git-checkout/pjsip-apps/src/vidgui/vidwin.h
git-checkout/pkgconfig.py
git-checkout/self-test.mak
git-checkout/svn_add
git-checkout/svn_add.bat
git-checkout/svn_pset
git-checkout/svn_pset.bat
git-checkout/tests/
git-checkout/tests/automated/
git-checkout/tests/automated/README.txt
git-checkout/tests/automated/android.xml.template
git-checkout/tests/automated/android64-ipv6.xml.template
git-checkout/tests/automated/android64.xml.template
git-checkout/tests/automated/configure.py
git-checkout/tests/automated/gnu-ipp.xml.template
git-checkout/tests/automated/gnu-video.xml.template
git-checkout/tests/automated/gnu.xml.template
git-checkout/tests/automated/iphone.xml.template
git-checkout/tests/automated/iphone64-ipv6.xml.template
git-checkout/tests/automated/iphone64.xml.template
git-checkout/tests/automated/msvc.xml.template
git-checkout/tests/automated/prepare.xml.template
git-checkout/tests/automated/run_continuous.py
git-checkout/tests/automated/run_scenario.py
git-checkout/tests/automated/symbian-aps.xml.template
git-checkout/tests/automated/symbian-vas.xml.template
git-checkout/tests/automated/symbian.xml.template
git-checkout/tests/automated/testvars.template
git-checkout/tests/cdash/
git-checkout/tests/cdash/README.TXT
git-checkout/tests/cdash/builder.py
git-checkout/tests/cdash/cfg_gnu.py
git-checkout/tests/cdash/cfg_msvc.py
git-checkout/tests/cdash/cfg_site_sample.py
git-checkout/tests/cdash/cfg_symbian.py
git-checkout/tests/cdash/inc_test.py
git-checkout/tests/cdash/main.py
git-checkout/tests/cdash/starttest_sample.bat
git-checkout/tests/pjsua/
git-checkout/tests/pjsua/README.TXT
git-checkout/tests/pjsua/config_site.py
git-checkout/tests/pjsua/inc_cfg.py
git-checkout/tests/pjsua/inc_const.py
git-checkout/tests/pjsua/inc_sdp.py
git-checkout/tests/pjsua/inc_sip.py
git-checkout/tests/pjsua/mod_call.py
git-checkout/tests/pjsua/mod_media_playrec.py
git-checkout/tests/pjsua/mod_pesq.py
git-checkout/tests/pjsua/mod_pres.py
git-checkout/tests/pjsua/mod_recvfrom.py
git-checkout/tests/pjsua/mod_run.py
git-checkout/tests/pjsua/mod_sendto.py
git-checkout/tests/pjsua/mod_sipp.py
git-checkout/tests/pjsua/run.py
git-checkout/tests/pjsua/runall.py
git-checkout/tests/pjsua/scripts-call/
git-checkout/tests/pjsua/scripts-call/100_simplecall.py
git-checkout/tests/pjsua/scripts-call/150_srtp_0_1.py
git-checkout/tests/pjsua/scripts-call/150_srtp_0_3.py
git-checkout/tests/pjsua/scripts-call/150_srtp_1_0.py
git-checkout/tests/pjsua/scripts-call/150_srtp_1_1.py
git-checkout/tests/pjsua/scripts-call/150_srtp_1_2.py
git-checkout/tests/pjsua/scripts-call/150_srtp_1_3.py
git-checkout/tests/pjsua/scripts-call/150_srtp_2_1.py
git-checkout/tests/pjsua/scripts-call/150_srtp_2_2.py
git-checkout/tests/pjsua/scripts-call/150_srtp_2_3.py
git-checkout/tests/pjsua/scripts-call/150_srtp_3_0.py
git-checkout/tests/pjsua/scripts-call/150_srtp_3_1.py
git-checkout/tests/pjsua/scripts-call/150_srtp_3_2.py
git-checkout/tests/pjsua/scripts-call/150_srtp_3_3.py
git-checkout/tests/pjsua/scripts-call/200_tcp.py
git-checkout/tests/pjsua/scripts-call/300_ice_0_1.py
git-checkout/tests/pjsua/scripts-call/300_ice_1_0.py
git-checkout/tests/pjsua/scripts-call/300_ice_1_1.py
git-checkout/tests/pjsua/scripts-call/301_ice_public_a.py
git-checkout/tests/pjsua/scripts-call/301_ice_public_b.py
git-checkout/tests/pjsua/scripts-call/305_ice_comp_1_2.py
git-checkout/tests/pjsua/scripts-call/305_ice_comp_2_1.py
git-checkout/tests/pjsua/scripts-call/350_prack_a.py
git-checkout/tests/pjsua/scripts-call/350_prack_b.py
git-checkout/tests/pjsua/scripts-call/400_tel_uri.py
git-checkout/tests/pjsua/scripts-media-playrec/
git-checkout/tests/pjsua/scripts-media-playrec/100_resample_lf_11_16.py
git-checkout/tests/pjsua/scripts-media-playrec/100_resample_lf_11_22.py
git-checkout/tests/pjsua/scripts-media-playrec/100_resample_lf_11_32.py
git-checkout/tests/pjsua/scripts-media-playrec/100_resample_lf_11_44.py
git-checkout/tests/pjsua/scripts-media-playrec/100_resample_lf_11_48.py
git-checkout/tests/pjsua/scripts-media-playrec/100_resample_lf_11_8.py
git-checkout/tests/pjsua/scripts-media-playrec/100_resample_lf_8_11.py
git-checkout/tests/pjsua/scripts-media-playrec/100_resample_lf_8_16.py
git-checkout/tests/pjsua/scripts-media-playrec/100_resample_lf_8_22.py
git-checkout/tests/pjsua/scripts-media-playrec/100_resample_lf_8_32.py
git-checkout/tests/pjsua/scripts-media-playrec/100_resample_lf_8_44.py
git-checkout/tests/pjsua/scripts-media-playrec/100_resample_lf_8_48.py
git-checkout/tests/pjsua/scripts-pesq/
git-checkout/tests/pjsua/scripts-pesq/100_defaults.py
git-checkout/tests/pjsua/scripts-pesq/101_defaults.py
git-checkout/tests/pjsua/scripts-pesq/200_codec_g711a.py
git-checkout/tests/pjsua/scripts-pesq/200_codec_g711u.py
git-checkout/tests/pjsua/scripts-pesq/200_codec_g722.py
git-checkout/tests/pjsua/scripts-pesq/200_codec_gsm.py
git-checkout/tests/pjsua/scripts-pesq/200_codec_ilbc.py
git-checkout/tests/pjsua/scripts-pesq/200_codec_l16_16000.py
git-checkout/tests/pjsua/scripts-pesq/200_codec_l16_16000_stereo.py
git-checkout/tests/pjsua/scripts-pesq/200_codec_l16_8000.py
git-checkout/tests/pjsua/scripts-pesq/200_codec_l16_8000_stereo.py
git-checkout/tests/pjsua/scripts-pesq/200_codec_speex_16000.py
git-checkout/tests/pjsua/scripts-pesq/200_codec_speex_8000.py
git-checkout/tests/pjsua/scripts-pesq/201_codec_g711a.py
git-checkout/tests/pjsua/scripts-pesq/201_codec_g711u.py
git-checkout/tests/pjsua/scripts-pesq/201_codec_g722.py
git-checkout/tests/pjsua/scripts-pesq/201_codec_gsm.py
git-checkout/tests/pjsua/scripts-pesq/201_codec_ilbc.py
git-checkout/tests/pjsua/scripts-pesq/201_codec_l16_16000.py
git-checkout/tests/pjsua/scripts-pesq/201_codec_l16_16000_stereo.py
git-checkout/tests/pjsua/scripts-pesq/201_codec_l16_8000.py
git-checkout/tests/pjsua/scripts-pesq/201_codec_l16_8000_stereo.py
git-checkout/tests/pjsua/scripts-pesq/201_codec_speex_16000.py
git-checkout/tests/pjsua/scripts-pesq/201_codec_speex_8000.py
git-checkout/tests/pjsua/scripts-pres/
git-checkout/tests/pjsua/scripts-pres/100_peertopeer.py
git-checkout/tests/pjsua/scripts-pres/200_publish.py
git-checkout/tests/pjsua/scripts-recvfrom/
git-checkout/tests/pjsua/scripts-recvfrom/100_simple.py
git-checkout/tests/pjsua/scripts-recvfrom/200_reg_good_enocredentiall.py
git-checkout/tests/pjsua/scripts-recvfrom/201_reg_good_ok.py
git-checkout/tests/pjsua/scripts-recvfrom/202_reg_good_ok_wildcard.py
git-checkout/tests/pjsua/scripts-recvfrom/203_reg_good_empty_realm.py
git-checkout/tests/pjsua/scripts-recvfrom/205_reg_good_no_realm.py
git-checkout/tests/pjsua/scripts-recvfrom/206_reg_good_efailedcredential.py
git-checkout/tests/pjsua/scripts-recvfrom/208_reg_good_retry_nonce_ok.py
git-checkout/tests/pjsua/scripts-recvfrom/209a_reg_handle_423_ok.py
git-checkout/tests/pjsua/scripts-recvfrom/209b_reg_handle_423_bad_min_expires1.py
git-checkout/tests/pjsua/scripts-recvfrom/209c_reg_handle_423_bad_min_expires2.py
git-checkout/tests/pjsua/scripts-recvfrom/215_reg_good_multi_ok.py
git-checkout/tests/pjsua/scripts-recvfrom/220_reg_good_ims_ok.py
git-checkout/tests/pjsua/scripts-recvfrom/230_reg_bad_fail_stale_true.py
git-checkout/tests/pjsua/scripts-recvfrom/231_reg_bad_fail_stale_false_nonce_changed.py
git-checkout/tests/pjsua/scripts-recvfrom/234_reg_bad_stale_ok.py
git-checkout/tests/pjsua/scripts-recvfrom/235_reg_good_tel_uri_enocredential.py
git-checkout/tests/pjsua/scripts-recvfrom/240_publish_scenarios.py
git-checkout/tests/pjsua/scripts-recvfrom/300_timer_good.py
git-checkout/tests/pjsua/scripts-recvfrom/301_timer_good_retry_after_422.py
git-checkout/tests/pjsua/scripts-recvfrom/400_inv_answered_with_less_media.py
git-checkout/tests/pjsua/scripts-run/
git-checkout/tests/pjsua/scripts-run/100_simple.py
git-checkout/tests/pjsua/scripts-run/200_register.py
git-checkout/tests/pjsua/scripts-sendto/
git-checkout/tests/pjsua/scripts-sendto/001_torture_4475_3_1_1_1.py
git-checkout/tests/pjsua/scripts-sendto/001_torture_4475_3_1_1_2.py
git-checkout/tests/pjsua/scripts-sendto/001_torture_4475_3_1_1_3.py
git-checkout/tests/pjsua/scripts-sendto/001_torture_4475_3_1_1_4.py
git-checkout/tests/pjsua/scripts-sendto/001_torture_4475_3_1_1_5.py
git-checkout/tests/pjsua/scripts-sendto/100_simplecall.py
git-checkout/tests/pjsua/scripts-sendto/110_tel_uri.py
git-checkout/tests/pjsua/scripts-sendto/120_sdp_with_video_dynamic_1.py
git-checkout/tests/pjsua/scripts-sendto/120_sdp_with_video_dynamic_2.py
git-checkout/tests/pjsua/scripts-sendto/121_sdp_with_video_static_1.py
git-checkout/tests/pjsua/scripts-sendto/121_sdp_with_video_static_2.py
git-checkout/tests/pjsua/scripts-sendto/122_sdp_with_unknown_dynamic_1.py
git-checkout/tests/pjsua/scripts-sendto/122_sdp_with_unknown_dynamic_2.py
git-checkout/tests/pjsua/scripts-sendto/123_sdp_with_unknown_static_1.py
git-checkout/tests/pjsua/scripts-sendto/123_sdp_with_unknown_static_2.py
git-checkout/tests/pjsua/scripts-sendto/124_sdp_with_unknown_static_unknown_transport.py
git-checkout/tests/pjsua/scripts-sendto/125_sdp_with_multi_audio_0.py
git-checkout/tests/pjsua/scripts-sendto/125_sdp_with_multi_audio_1.py
git-checkout/tests/pjsua/scripts-sendto/125_sdp_with_multi_audio_2.py
git-checkout/tests/pjsua/scripts-sendto/125_sdp_with_multi_audio_3.py
git-checkout/tests/pjsua/scripts-sendto/125_sdp_with_multi_audio_4.py
git-checkout/tests/pjsua/scripts-sendto/126_sdp_with_port_0_and_no_rtpmap_for_dynamic_pt.py
git-checkout/tests/pjsua/scripts-sendto/140_sdp_with_direction_attr_in_session_1.py
git-checkout/tests/pjsua/scripts-sendto/140_sdp_with_direction_attr_in_session_2.py
git-checkout/tests/pjsua/scripts-sendto/150_err_extension.py
git-checkout/tests/pjsua/scripts-sendto/151_err_sdp_video.py
git-checkout/tests/pjsua/scripts-sendto/152_err_sdp_no_media.py
git-checkout/tests/pjsua/scripts-sendto/153_err_sdp_unsupported_codec.py
git-checkout/tests/pjsua/scripts-sendto/155_err_sdp_bad_syntax.py
git-checkout/tests/pjsua/scripts-sendto/156_err_sdp_bad_net_type.py
git-checkout/tests/pjsua/scripts-sendto/157_err_sdp_bad_addr_type.py
git-checkout/tests/pjsua/scripts-sendto/158_err_sdp_bad_transport_type.py
git-checkout/tests/pjsua/scripts-sendto/159_no_rport.py
git-checkout/tests/pjsua/scripts-sendto/159_no_rport_nit.py
git-checkout/tests/pjsua/scripts-sendto/160_err_duplicate_replaces.py
git-checkout/tests/pjsua/scripts-sendto/161_err_replaces_dlg_not_found.py
git-checkout/tests/pjsua/scripts-sendto/170_timer_required.py
git-checkout/tests/pjsua/scripts-sendto/171_timer_initiated_by_uas.py
git-checkout/tests/pjsua/scripts-sendto/172_timer_supported_but_not_used.py
git-checkout/tests/pjsua/scripts-sendto/173_timer_offer_no_refresher.py
git-checkout/tests/pjsua/scripts-sendto/173_timer_offer_refresher_uac.py
git-checkout/tests/pjsua/scripts-sendto/173_timer_offer_refresher_uas.py
git-checkout/tests/pjsua/scripts-sendto/174_timer_se_too_small.py
git-checkout/tests/pjsua/scripts-sendto/200_ice_no_ice.py
git-checkout/tests/pjsua/scripts-sendto/200_ice_success_1.py
git-checkout/tests/pjsua/scripts-sendto/200_ice_success_2.py
git-checkout/tests/pjsua/scripts-sendto/200_ice_success_3.py
git-checkout/tests/pjsua/scripts-sendto/200_ice_success_4.py
git-checkout/tests/pjsua/scripts-sendto/201_ice_mismatch_1.py
git-checkout/tests/pjsua/scripts-sendto/201_ice_mismatch_2.py
git-checkout/tests/pjsua/scripts-sendto/201_ice_mismatch_3.py
git-checkout/tests/pjsua/scripts-sendto/251_multipart_ok_simple.py
git-checkout/tests/pjsua/scripts-sendto/252_multipart_ok_clutter.py
git-checkout/tests/pjsua/scripts-sendto/260_multipart_err_no_sdp.py
git-checkout/tests/pjsua/scripts-sendto/300_srtp_crypto_case_insensitive.py
git-checkout/tests/pjsua/scripts-sendto/300_srtp_duplicated_crypto_tag.py
git-checkout/tests/pjsua/scripts-sendto/300_srtp_invalid_crypto_tag_non_numeric.py
git-checkout/tests/pjsua/scripts-sendto/300_srtp_receive_crypto_tag_zero.py
git-checkout/tests/pjsua/scripts-sendto/300_srtp_receive_no_key_1.py
git-checkout/tests/pjsua/scripts-sendto/300_srtp_receive_no_key_2.py
git-checkout/tests/pjsua/scripts-sendto/300_srtp_receive_no_key_3.py
git-checkout/tests/pjsua/scripts-sendto/301_srtp0_recv_avp.py
git-checkout/tests/pjsua/scripts-sendto/301_srtp0_recv_savp.py
git-checkout/tests/pjsua/scripts-sendto/310_srtp1_no_crypto.py
git-checkout/tests/pjsua/scripts-sendto/311_srtp1_recv_avp.py
git-checkout/tests/pjsua/scripts-sendto/312_srtp1_recv_savp.py
git-checkout/tests/pjsua/scripts-sendto/313_srtp1_unsupported_crypto.py
git-checkout/tests/pjsua/scripts-sendto/320_srtp2_no_crypto.py
git-checkout/tests/pjsua/scripts-sendto/320_srtp_with_unknown_media_1.py
git-checkout/tests/pjsua/scripts-sendto/320_srtp_with_unknown_media_2.py
git-checkout/tests/pjsua/scripts-sendto/320_srtp_with_unknown_transport_1.py
git-checkout/tests/pjsua/scripts-sendto/320_srtp_with_unknown_transport_2.py
git-checkout/tests/pjsua/scripts-sendto/321_srtp2_recv_avp.py
git-checkout/tests/pjsua/scripts-sendto/322_srtp2_recv_savp.py
git-checkout/tests/pjsua/scripts-sendto/323_srtp2_receive_too_long_key.py
git-checkout/tests/pjsua/scripts-sendto/323_srtp2_unsupported_crypto.py
git-checkout/tests/pjsua/scripts-sendto/330_srtp_prefer_rtp_savp.py
git-checkout/tests/pjsua/scripts-sendto/331_srtp_prefer_rtp_avp.py
git-checkout/tests/pjsua/scripts-sendto/360_non_sip_uri.py
git-checkout/tests/pjsua/scripts-sendto/361_non_sip_uri.py
git-checkout/tests/pjsua/scripts-sendto/362_non_sip_uri.py
git-checkout/tests/pjsua/scripts-sendto/363_non_sip_uri_subscribe.py
git-checkout/tests/pjsua/scripts-sendto/364_non_sip_uri_subscribe.py
git-checkout/tests/pjsua/scripts-sendto/400_fmtp_g7221_with_bitrate.py
git-checkout/tests/pjsua/scripts-sendto/401_fmtp_g7221_with_bitrate_24000.py
git-checkout/tests/pjsua/scripts-sendto/401_fmtp_g7221_with_bitrate_32000.py
git-checkout/tests/pjsua/scripts-sendto/410_fmtp_amrnb_offer_octet_align.py
git-checkout/tests/pjsua/scripts-sendto/411_fmtp_amrnb_offer_band_eff.py
git-checkout/tests/pjsua/scripts-sendto/412_fmtp_amrnb_offer_band_eff2.py
git-checkout/tests/pjsua/scripts-sendto/500_pres_subscribe_with_bad_event.py
git-checkout/tests/pjsua/scripts-sendto/999_asterisk_err.py
git-checkout/tests/pjsua/scripts-sendto/999_message_no_body.py
git-checkout/tests/pjsua/scripts-sipp/
git-checkout/tests/pjsua/scripts-sipp/strict-route.py
git-checkout/tests/pjsua/scripts-sipp/strict-route.xml
git-checkout/tests/pjsua/scripts-sipp/transfer-attended.py
git-checkout/tests/pjsua/scripts-sipp/transfer-attended.xml
git-checkout/tests/pjsua/scripts-sipp/transfer-unattended.py
git-checkout/tests/pjsua/scripts-sipp/transfer-unattended.xml
git-checkout/tests/pjsua/scripts-sipp/uac-bad-ack.xml
git-checkout/tests/pjsua/scripts-sipp/uac-inv-and-ack-without-sdp.xml
git-checkout/tests/pjsua/scripts-sipp/uac-inv-multiple-require.xml
git-checkout/tests/pjsua/scripts-sipp/uac-inv-two-media-but-one-disabled-no-rtpmap.py
git-checkout/tests/pjsua/scripts-sipp/uac-inv-two-media-but-one-disabled-no-rtpmap.xml
git-checkout/tests/pjsua/scripts-sipp/uac-inv-without-sdp.py
git-checkout/tests/pjsua/scripts-sipp/uac-inv-without-sdp.xml
git-checkout/tests/pjsua/scripts-sipp/uac-message-no-body.xml
git-checkout/tests/pjsua/scripts-sipp/uac-options.xml
git-checkout/tests/pjsua/scripts-sipp/uac-reinvite-bad-via-branch.xml
git-checkout/tests/pjsua/scripts-sipp/uac-reinvite-port-0-bad-sdp.xml
git-checkout/tests/pjsua/scripts-sipp/uac-srtp-dtls-reinv-sdes.py
git-checkout/tests/pjsua/scripts-sipp/uac-srtp-dtls-reinv-sdes.xml
git-checkout/tests/pjsua/scripts-sipp/uac-srtp-dtls.py
git-checkout/tests/pjsua/scripts-sipp/uac-srtp-dtls.xml
git-checkout/tests/pjsua/scripts-sipp/uac-srtp-sdes-reinv-dtls.py
git-checkout/tests/pjsua/scripts-sipp/uac-srtp-sdes-reinv-dtls.xml
git-checkout/tests/pjsua/scripts-sipp/uac-srtp-sdes.py
git-checkout/tests/pjsua/scripts-sipp/uac-srtp-sdes.xml
git-checkout/tests/pjsua/scripts-sipp/uac-subscribe.xml
git-checkout/tests/pjsua/scripts-sipp/uac-ticket-1148.py
git-checkout/tests/pjsua/scripts-sipp/uac-ticket-1148.xml
git-checkout/tests/pjsua/scripts-sipp/uac-ticket-1864-scenario1.py
git-checkout/tests/pjsua/scripts-sipp/uac-ticket-1864-scenario1.xml
git-checkout/tests/pjsua/scripts-sipp/uac-ticket-1864-scenario2.py
git-checkout/tests/pjsua/scripts-sipp/uac-ticket-1864-scenario2.xml
git-checkout/tests/pjsua/scripts-sipp/uac-ticket-1866-reinv-after-failed-nego.py
git-checkout/tests/pjsua/scripts-sipp/uac-ticket-1866-reinv-after-failed-nego.xml
git-checkout/tests/pjsua/scripts-sipp/uas-422-then-200-bad-se.xml
git-checkout/tests/pjsua/scripts-sipp/uas-answer-180-multiple-fmts-support-update.xml
git-checkout/tests/pjsua/scripts-sipp/uas-answer-180-multiple-fmts.xml
git-checkout/tests/pjsua/scripts-sipp/uas-answer-183-without-to-tag.py
git-checkout/tests/pjsua/scripts-sipp/uas-answer-183-without-to-tag.xml
git-checkout/tests/pjsua/scripts-sipp/uas-answer-200-inv-without-sdp.xml
git-checkout/tests/pjsua/scripts-sipp/uas-answer-200-multiple-fmts-support-update.xml
git-checkout/tests/pjsua/scripts-sipp/uas-answer-200-multiple-fmts.xml
git-checkout/tests/pjsua/scripts-sipp/uas-answer-200-reinvite-without-sdp.py
git-checkout/tests/pjsua/scripts-sipp/uas-answer-200-reinvite-without-sdp.xml
git-checkout/tests/pjsua/scripts-sipp/uas-answer-200-update-without-sdp.py
git-checkout/tests/pjsua/scripts-sipp/uas-answer-200-update-without-sdp.xml
git-checkout/tests/pjsua/scripts-sipp/uas-auth.py
git-checkout/tests/pjsua/scripts-sipp/uas-auth.xml
git-checkout/tests/pjsua/scripts-sipp/uas-cancel-no-final.py
git-checkout/tests/pjsua/scripts-sipp/uas-cancel-no-final.xml
git-checkout/tests/pjsua/scripts-sipp/uas-early-bye.xml
git-checkout/tests/pjsua/scripts-sipp/uas-forked-100rel.xml
git-checkout/tests/pjsua/scripts-sipp/uas-forked-200.xml
git-checkout/tests/pjsua/scripts-sipp/uas-inv-answered-with-srtp.xml
git-checkout/tests/pjsua/scripts-sipp/uas-inv_401_retry_after_100.xml
git-checkout/tests/pjsua/scripts-sipp/uas-mwi-0.py
git-checkout/tests/pjsua/scripts-sipp/uas-mwi-0.xml
git-checkout/tests/pjsua/scripts-sipp/uas-mwi.py
git-checkout/tests/pjsua/scripts-sipp/uas-mwi.xml
git-checkout/tests/pjsua/scripts-sipp/uas-prack_fork.xml
git-checkout/tests/pjsua/scripts-sipp/uas-register-ip-change-port-only.xml
git-checkout/tests/pjsua/scripts-sipp/uas-register-ip-change.xml
git-checkout/tests/pjsua/scripts-sipp/uas-reinv-and-ack-same-branch-without-sdp.xml
git-checkout/tests/pjsua/scripts-sipp/uas-reinv-and-ack-without-sdp.xml
git-checkout/tests/pjsua/scripts-sipp/uas-reinv-glare.py
git-checkout/tests/pjsua/scripts-sipp/uas-reinv-glare.xml
git-checkout/tests/pjsua/scripts-sipp/uas-reinv-no-media.xml
git-checkout/tests/pjsua/scripts-sipp/uas-reinv-with-less-media.py
git-checkout/tests/pjsua/scripts-sipp/uas-reinv-with-less-media.xml
git-checkout/tests/pjsua/scripts-sipp/uas-subscribe-late-notify.py
git-checkout/tests/pjsua/scripts-sipp/uas-subscribe-late-notify.xml
git-checkout/tests/pjsua/scripts-sipp/uas-subscribe-multipart-notify.py
git-checkout/tests/pjsua/scripts-sipp/uas-subscribe-multipart-notify.xml
git-checkout/tests/pjsua/scripts-sipp/uas-subscribe-notify-terminate.py
git-checkout/tests/pjsua/scripts-sipp/uas-subscribe-notify-terminate.xml
git-checkout/tests/pjsua/scripts-sipp/uas-subscribe-refresh-481.py
git-checkout/tests/pjsua/scripts-sipp/uas-subscribe-refresh-481.xml
git-checkout/tests/pjsua/scripts-sipp/uas-subscribe-terminated-retry.py
git-checkout/tests/pjsua/scripts-sipp/uas-subscribe-terminated-retry.xml
git-checkout/tests/pjsua/scripts-sipp/uas-template.xml
git-checkout/tests/pjsua/scripts-sipp/uas-timer-reinvite.xml
git-checkout/tests/pjsua/scripts-sipp/uas-timer-update.xml
git-checkout/tests/pjsua/tools/
git-checkout/tests/pjsua/tools/Makefile
git-checkout/tests/pjsua/tools/cmp_wav.c
git-checkout/tests/pjsua/tools/cmp_wav.exe
git-checkout/tests/pjsua/wavs/
git-checkout/tests/pjsua/wavs/input.11.wav
git-checkout/tests/pjsua/wavs/input.16.wav
git-checkout/tests/pjsua/wavs/input.2.16.wav
git-checkout/tests/pjsua/wavs/input.2.8.wav
git-checkout/tests/pjsua/wavs/input.22.wav
git-checkout/tests/pjsua/wavs/input.32.wav
git-checkout/tests/pjsua/wavs/input.44.wav
git-checkout/tests/pjsua/wavs/input.48.wav
git-checkout/tests/pjsua/wavs/input.8.wav
git-checkout/tests/pjsua/wavs/tock8.wav
git-checkout/third_party/
git-checkout/third_party/README.txt
git-checkout/third_party/build/
git-checkout/third_party/build/Makefile
git-checkout/third_party/build/os-auto.mak.in
git-checkout/third_party/build/os-darwinos.mak
git-checkout/third_party/build/os-linux.mak
git-checkout/third_party/build/os-win32.mak
git-checkout/user.mak.sample
git-checkout/version.mak
phase `unpack' succeeded after 1.2 seconds
starting phase `apply-patches'
ring-project/daemon/contrib/src/pjproject/sip_config.patch
ring-project/daemon/contrib/src/pjproject/ice_config.patch
ring-project/daemon/contrib/src/pjproject/fix_first_packet_turn_tcp.patch
ring-project/daemon/contrib/src/pjproject/disable_local_resolution.patch
ring-project/daemon/contrib/src/pjproject/fix_ioqueue_ipv6_sendto.patch
ring-project/daemon/contrib/src/pjproject/rules.mak
ring-project/daemon/contrib/src/pjproject/rfc2466.patch
ring-project/daemon/contrib/src/pjproject/pj_ice_sess.patch
ring-project/daemon/contrib/src/pjproject/SHA512SUMS
ring-project/daemon/contrib/src/pjproject/fix_turn_connection_failure.patch
ring-project/daemon/contrib/src/pjproject/multiple_listeners.patch
ring-project/daemon/contrib/src/pjproject/rfc6544.patch
ring-project/daemon/contrib/src/pjproject/ignore_ipv6_on_transport_check.patch
ring-project/daemon/contrib/src/pjproject/uwp_vs.patch
ring-project/daemon/contrib/src/pjproject/win_vs2017_props.patch
ring-project/daemon/contrib/src/pjproject/ipv6.patch
ring-project/daemon/contrib/src/pjproject/win32_vs_gnutls.patch
ring-project/daemon/contrib/src/pjproject/fetch_and_patch.bat
ring-project/daemon/contrib/src/pjproject/add_dtls_transport.patch
ring-project/daemon/contrib/src/pjproject/android.patch
ring-project/daemon/contrib/src/pjproject/fix_turn_alloc_failure.patch
ring-project/daemon/contrib/src/pjproject/fix_turn_fallback.patch
ring-project/daemon/contrib/src/pjproject/fix_ebusy_turn.patch
ring-project/daemon/contrib/src/pjproject/win_config.patch
File pjsip/src/pjsip/sip_transport.c is read-only; trying to patch anyway
patching file pjsip/src/pjsip/sip_transport.c
File pjsip/include/pjsip/sip_types.h is read-only; trying to patch anyway
patching file pjsip/include/pjsip/sip_types.h
File pjlib/include/pj/config.h is read-only; trying to patch anyway
patching file pjlib/include/pj/config.h
Hunk #1 succeeded at 311 (offset 18 lines).
File aconfigure is read-only; trying to patch anyway
patching file aconfigure
Hunk #1 succeeded at 5950 (offset 141 lines).
File aconfigure.ac is read-only; trying to patch anyway
patching file aconfigure.ac
Hunk #1 succeeded at 491 (offset 34 lines).
File pjlib/src/pj/os_timestamp_posix.c is read-only; trying to patch anyway
patching file pjlib/src/pj/os_timestamp_posix.c
patch unexpectedly ends in middle of line
Hunk #1 succeeded at 205 (offset 42 lines).
File pjlib/include/pj/config.h is read-only; trying to patch anyway
patching file pjlib/include/pj/config.h
Hunk #1 succeeded at 1018 (offset 15 lines).
File pjnath/include/pjnath/turn_session.h is read-only; trying to patch anyway
patching file pjnath/include/pjnath/turn_session.h
File pjnath/include/pjnath/turn_sock.h is read-only; trying to patch anyway
patching file pjnath/include/pjnath/turn_sock.h
File pjnath/src/pjnath/ice_strans.c is read-only; trying to patch anyway
patching file pjnath/src/pjnath/ice_strans.c
Hunk #1 succeeded at 366 (offset -25 lines).
Hunk #2 FAILED at 1655.
Hunk #3 FAILED at 1861.
2 out of 3 hunks FAILED -- saving rejects to file pjnath/src/pjnath/ice_strans.c.rej
File pjnath/src/pjnath/turn_session.c is read-only; trying to patch anyway
patching file pjnath/src/pjnath/turn_session.c
Hunk #1 succeeded at 974 (offset -1 lines).
Hunk #2 succeeded at 1022 (offset -1 lines).
Hunk #3 succeeded at 1050 (offset -1 lines).
Hunk #4 succeeded at 1090 (offset -1 lines).
File pjnath/src/pjnath/turn_sock.c is read-only; trying to patch anyway
patching file pjnath/src/pjnath/turn_sock.c
command "patch" "--force" "-p1" "-i" "Savoir-faire Linux patches/fix_ebusy_turn.patch" failed with status 1

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

* Re: Maintaining GNU Jami package for Guix
  2019-11-01 12:29 ` Jan Wielkiewicz
@ 2019-11-01 19:01   ` Pierre Neidhardt
  2019-11-01 23:16     ` Jan Wielkiewicz
  2019-11-03 17:07   ` Marius Bakke
  2019-11-03 18:12   ` Marius Bakke
  2 siblings, 1 reply; 40+ messages in thread
From: Pierre Neidhardt @ 2019-11-01 19:01 UTC (permalink / raw)
  To: Jan Wielkiewicz, guix-devel

[-- Attachment #1: Type: text/plain, Size: 593 bytes --]

Jan Wielkiewicz <tona_kosmicznego_smiecia@interia.pl> writes:

> Why "pjnath/src/pjnath/turn_session.c is read-only; trying to patch
> anyway"? Why is it read-only. I don't get it, are we missing some
> permissions? Somehow this wasn't a problem before - the previous
> version of pjproject-jami didn't have this problem. Is it a bug in Guix?

Git preserves permissions, so if upstream made it read-only (probably a
mistake), then it will be read-only in the checkout.  No problem, you
can make it writable with
`make-file-writable'.

-- 
Pierre Neidhardt
https://ambrevar.xyz/

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 487 bytes --]

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

* Re: Maintaining GNU Jami package for Guix
  2019-11-01 12:01     ` Jan Wielkiewicz
@ 2019-11-01 19:02       ` Pierre Neidhardt
  2019-11-01 20:42         ` Jan Wielkiewicz
  2019-11-03 16:37       ` Marius Bakke
  1 sibling, 1 reply; 40+ messages in thread
From: Pierre Neidhardt @ 2019-11-01 19:02 UTC (permalink / raw)
  To: Jan Wielkiewicz, Marius Bakke; +Cc: guix-devel

[-- Attachment #1: Type: text/plain, Size: 378 bytes --]

Jan Wielkiewicz <tona_kosmicznego_smiecia@interia.pl> writes:

> Why can't we just keep paralell version for a package? Like 
> gnutls @ 3.6.7, gnutls @ 3.6.9 etc?   

Because gnutls with Jami patches should not be called gnutls: it's a
non-vanilla version of GnuTLS.  And I doubt it would be useful to anyone
but Jami.


-- 
Pierre Neidhardt
https://ambrevar.xyz/

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 487 bytes --]

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

* Re: Maintaining GNU Jami package for Guix
  2019-11-01 19:02       ` Pierre Neidhardt
@ 2019-11-01 20:42         ` Jan Wielkiewicz
  2019-11-02  9:38           ` Pierre Neidhardt
  0 siblings, 1 reply; 40+ messages in thread
From: Jan Wielkiewicz @ 2019-11-01 20:42 UTC (permalink / raw)
  To: Pierre Neidhardt; +Cc: guix-devel

Dnia 2019-11-01, o godz. 20:02:22
Pierre Neidhardt <mail@ambrevar.xyz> napisał(a):

> Because gnutls with Jami patches should not be called gnutls: it's a
> non-vanilla version of GnuTLS.  And I doubt it would be useful to
> anyone but Jami.

Actually gnutls is without patches, just an older version. What has
patches is pjproject.


Jan Wielkiewicz

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

* Re: Maintaining GNU Jami package for Guix
  2019-11-01 19:01   ` Pierre Neidhardt
@ 2019-11-01 23:16     ` Jan Wielkiewicz
  2019-11-03 10:15       ` Pierre Neidhardt
  0 siblings, 1 reply; 40+ messages in thread
From: Jan Wielkiewicz @ 2019-11-01 23:16 UTC (permalink / raw)
  To: Pierre Neidhardt; +Cc: guix-devel

Dnia 2019-11-01, o godz. 20:01:26
Pierre Neidhardt <mail@ambrevar.xyz> napisał(a):

> Git preserves permissions, so if upstream made it read-only (probably
> a mistake), then it will be read-only in the checkout.  No problem,
> you can make it writable with
> `make-file-writable'.
> 

Don't know why, but it doesn't work...
It still tells me files are read-only.
I do something like this:

(modify-phases %standard-phases
	 (add-after 'unpack 'make-git-checkout-writable
	   (lambda _
             (for-each make-file-writable (find-files "."))
             #t))
         (add-after 'unpack 'apply-patches
           (lambda* (#:key inputs #:allow-other-keys)
             (let ((savoir-faire-linux-patches-directory "Savoir-faire
Linux patches") ;; Comes from
                   ;;
"ring-project/daemon/contrib/src/pjproject/rules.mak". ;; WARNING:
These amount for huge changes in pjproject. ;; Particularly, they add
support for GnuTLS. (savoir-faire-linux-patches
                    '("add_dtls_transport"
		      "android"
		      "disable_local_resolution"
....................


Jan Wielkiewicz

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

* Re: Maintaining GNU Jami package for Guix
  2019-11-01 20:42         ` Jan Wielkiewicz
@ 2019-11-02  9:38           ` Pierre Neidhardt
  0 siblings, 0 replies; 40+ messages in thread
From: Pierre Neidhardt @ 2019-11-02  9:38 UTC (permalink / raw)
  To: Jan Wielkiewicz; +Cc: guix-devel

[-- Attachment #1: Type: text/plain, Size: 263 bytes --]

Jan Wielkiewicz <tona_kosmicznego_smiecia@interia.pl> writes:

> Actually gnutls is without patches, just an older version. What has
> patches is pjproject.

Oh, got it, then yeah, you can define gnutls-x.y.z

-- 
Pierre Neidhardt
https://ambrevar.xyz/

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 487 bytes --]

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

* Re: Maintaining GNU Jami package for Guix
  2019-11-01 23:16     ` Jan Wielkiewicz
@ 2019-11-03 10:15       ` Pierre Neidhardt
  2019-11-03 10:54         ` Jan Wielkiewicz
  2019-11-03 10:59         ` Jan Wielkiewicz
  0 siblings, 2 replies; 40+ messages in thread
From: Pierre Neidhardt @ 2019-11-03 10:15 UTC (permalink / raw)
  To: Jan Wielkiewicz; +Cc: guix-devel

[-- Attachment #1: Type: text/plain, Size: 84 bytes --]

Can you share the complete recipe?

-- 
Pierre Neidhardt
https://ambrevar.xyz/

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 487 bytes --]

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

* Re: Maintaining GNU Jami package for Guix
  2019-11-03 10:15       ` Pierre Neidhardt
@ 2019-11-03 10:54         ` Jan Wielkiewicz
  2019-11-04 10:02           ` Gábor Boskovits
  2019-11-03 10:59         ` Jan Wielkiewicz
  1 sibling, 1 reply; 40+ messages in thread
From: Jan Wielkiewicz @ 2019-11-03 10:54 UTC (permalink / raw)
  To: Pierre Neidhardt; +Cc: guix-devel

[-- Attachment #1: Type: text/plain, Size: 379 bytes --]

Dnia 2019-11-03, o godz. 11:15:56
Pierre Neidhardt <mail@ambrevar.xyz> napisał(a):

> Can you share the complete recipe?
> 

Yes. I guess you want a patch of my entire work so far, because
pjproject-jami is meaningless without changes in jami, so I'm attaching
the whole patch. Also the commit messages are messy, any advice how
should they look?


Jan Wielkiewicz

[-- Attachment #2: jami-wip.patch --]
[-- Type: text/x-patch, Size: 468 bytes --]

0001-change-the-fetch-method-of-pjproject-to-git-fetch-th.patch
0002-add-libresample-needed-for-Jami.patch
0003-adding-resample-as-a-pjproject-dependency.patch
0004-bump-jami-version-to-20191025.1.074a237.patch
0005-bump-jami-to-20191029.2.32830e6.patch
0006-bump-gnutls-to-3.6.10-the-version-Jami-is-going-to-u.patch
0007-bump-Jami-to-20191031.3.40360d8.patch
0008-bump-jami-to-20191101.3.67671e7.patch
0009-make-files-in-pjproject-writeable-improve-formatting.patch

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

* Re: Maintaining GNU Jami package for Guix
  2019-11-03 10:15       ` Pierre Neidhardt
  2019-11-03 10:54         ` Jan Wielkiewicz
@ 2019-11-03 10:59         ` Jan Wielkiewicz
  1 sibling, 0 replies; 40+ messages in thread
From: Jan Wielkiewicz @ 2019-11-03 10:59 UTC (permalink / raw)
  To: Pierre Neidhardt; +Cc: guix-devel

[-- Attachment #1: Type: text/plain, Size: 55 bytes --]

Sorry, wrong command, sending the patch again...


Jan

[-- Attachment #2: jami-wip.patch --]
[-- Type: text/x-patch, Size: 12000 bytes --]

From 2f67e4c77ffb675bed3019b4289b3135db140015 Mon Sep 17 00:00:00 2001
From: Jan Wielkiewicz <tona_kosmicznego_smiecia@interia.pl>
Date: Sun, 27 Oct 2019 01:16:52 +0200
Subject: [PATCH 1/9] change the fetch method of pjproject to git; fetch the
 exact commit needed for Jami; do not remove folders, which are not present in
 the checkout

---
 gnu/packages/telephony.scm | 14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)

diff --git a/gnu/packages/telephony.scm b/gnu/packages/telephony.scm
index 127a856cc3cc65ccc29b99d4e5d83143400b741e..d17124ed4b22139f87a1efa3010153e97dfd5bb2 100644
--- a/gnu/packages/telephony.scm
+++ b/gnu/packages/telephony.scm
@@ -555,10 +555,10 @@ calls and messages")
     (version "2.9")
     (source
      (origin
-       (method url-fetch)
-       (uri (string-append
-             "http://www.pjsip.org/release/" ;
-             version "/" name "-" version ".tar.bz2"))
+       (method git-fetch)
+       (uri (git-reference
+	     (url "https://github.com/pjsip/pjproject.git")
+	     (commit "5dfa75be7d69047387f9b0436dd9492bbbf03fe4")))
        (modules '((guix build utils)))
        (snippet
         '(begin
@@ -566,9 +566,9 @@ calls and messages")
 		  ;; Things we don't need:
 		  ;; BaseClasses - contains libraries from Windows SDK
 		  ;; we don't need it, at least not now.
-                  (list "BaseClasses" "bin" "g7221" "ilbc" "milenage"
+                  (list "BaseClasses" "g7221" "ilbc" "milenage"
 			"speex" "threademulation" "yuv" "bdsound"
-			"gsm" "lib" "mp3" "resample" "srtp" "webrtc"
+			"gsm" "mp3" "resample" "srtp" "webrtc"
                         ;; Keep only resample, build and README.txt.
                         "build/baseclasses" "build/g7221" "build/gsm"
 			"build/ilbc" "build/milenage" "build/resample"
@@ -591,7 +591,7 @@ calls and messages")
 	)
        (sha256
         (base32
-	 "0dm6l8fypkimmzvld35zyykbg957cm5zb4ny3lchgv68amwfz1fi"))))
+	 "1ayj6n7zd5wvd1nzj2k9s57fb4ckc2fv92k5sjvhd87yg69k3393"))))
     (build-system gnu-build-system)
     (inputs
      `(("portaudio" ,portaudio)))
-- 
2.23.0


From a25f5ad984f01f41400a54a2dde07b6aee6e9e6c Mon Sep 17 00:00:00 2001
From: Jan Wielkiewicz <tona_kosmicznego_smiecia@interia.pl>
Date: Sun, 27 Oct 2019 14:26:08 +0100
Subject: [PATCH 2/9] add libresample needed for Jami

---
 gnu/packages/audio.scm | 23 +++++++++++++++++++++++
 1 file changed, 23 insertions(+)

diff --git a/gnu/packages/audio.scm b/gnu/packages/audio.scm
index 110903e2fe6b094f8021e4fb29eff3720fcf6511..63dbb1fd0ef20853d5d13e5ae70c4b54b3879c8b 100644
--- a/gnu/packages/audio.scm
+++ b/gnu/packages/audio.scm
@@ -2299,6 +2299,29 @@ aimed at audio/musical applications.")
                  (base32
                   "04fajrass3ymr72flx5js5vxc601ccrmx8ny8scp0rw7j0igyjdr")))))))
 
+(define-public resample
+  (package
+   (name "resample")
+   (version "1.8.1")
+   (source (origin
+	    (method url-fetch)
+	    (uri (string-append "https://ccrma.stanford.edu/~jos/gz/resample-" version
+				".tar.gz"))
+	    (sha256 (base32
+		     "074zj8ydp05yy1hjcglfv3hkvj4cm50f9nralka1992pm6yf8yvy"))))
+   (build-system gnu-build-system)
+   ;; (inputs)
+   ;; (propagated-inputs)
+   (native-inputs
+    `(("autoconf" ,autoconf)
+       ("automake" ,automake)
+       ("pkg-config" ,pkg-config)
+       ("libtool" ,libtool)))
+   (synopsis "")
+   (description "")
+   (license license:lgpl2.1+)
+   (home-page "https://ccrma.stanford.edu/~jos/resample/Free_Resampling_Software.html")))
+
 (define-public rubberband
   (package
     (name "rubberband")
-- 
2.23.0


From bf8d0a15b289f7cb80f7f6d1b640163130a4fa27 Mon Sep 17 00:00:00 2001
From: Jan Wielkiewicz <tona_kosmicznego_smiecia@interia.pl>
Date: Sun, 27 Oct 2019 14:33:17 +0100
Subject: [PATCH 3/9] adding resample as a pjproject dependency

---
 gnu/packages/telephony.scm | 1 +
 1 file changed, 1 insertion(+)

diff --git a/gnu/packages/telephony.scm b/gnu/packages/telephony.scm
index d17124ed4b22139f87a1efa3010153e97dfd5bb2..2dc3ccfe596dd0e66e5e0e02f1eb6bd3e991b472 100644
--- a/gnu/packages/telephony.scm
+++ b/gnu/packages/telephony.scm
@@ -601,6 +601,7 @@ calls and messages")
      `(("speex" ,speex)
        ("libsrtp" ,libsrtp)
        ("gnutls" ,gnutls)
+       ("resample", resample)
        ("util-linux" ,util-linux)))
     (native-inputs
      `(("autoconf" ,autoconf)
-- 
2.23.0


From c7e4ff2c7eec7671efd0886c229dde82358e38f1 Mon Sep 17 00:00:00 2001
From: Jan Wielkiewicz <tona_kosmicznego_smiecia@interia.pl>
Date: Sun, 27 Oct 2019 14:38:51 +0100
Subject: [PATCH 4/9] bump jami version to 20191025.1.074a237

---
 gnu/packages/telephony.scm | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/telephony.scm b/gnu/packages/telephony.scm
index 2dc3ccfe596dd0e66e5e0e02f1eb6bd3e991b472..1bd508accc778f107244e37701189951906837e6 100644
--- a/gnu/packages/telephony.scm
+++ b/gnu/packages/telephony.scm
@@ -635,7 +635,7 @@ calls and messages")
 Initiation Protocol (SIP) and a multimedia framework.")
     (license license:gpl2+)))
 
-(define %jami-version "20191022.1.f180b15")
+(define %jami-version "20191025.1.074a237")
 
 (define* (jami-source #:key without-daemon)
   (origin
@@ -651,7 +651,7 @@ Initiation Protocol (SIP) and a multimedia framework.")
        #f))
     (sha256
      (base32
-      "006ssrip7zhg544292p62rrvk1rwk339g5rgj1lbji7b4vhspr4s"))))
+      "10w2rsvin8jrrjgwr1n5rxc5w1j53cag0mh31c7c49md17z2wzm3"))))
 
 (define-public pjproject-jami
   (package
-- 
2.23.0


From 1ec979f8407bb0c1af40524885d3f14e4ffdc776 Mon Sep 17 00:00:00 2001
From: Jan Wielkiewicz <tona_kosmicznego_smiecia@interia.pl>
Date: Wed, 30 Oct 2019 23:26:49 +0100
Subject: [PATCH 5/9] bump jami to 20191029.2.32830e6

---
 gnu/packages/telephony.scm | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/telephony.scm b/gnu/packages/telephony.scm
index 1bd508accc778f107244e37701189951906837e6..ae91052372db97ca96e7fba1a71d0b71dc59e98d 100644
--- a/gnu/packages/telephony.scm
+++ b/gnu/packages/telephony.scm
@@ -635,7 +635,7 @@ calls and messages")
 Initiation Protocol (SIP) and a multimedia framework.")
     (license license:gpl2+)))
 
-(define %jami-version "20191025.1.074a237")
+(define %jami-version "20191029.2.32830e6")
 
 (define* (jami-source #:key without-daemon)
   (origin
@@ -651,7 +651,7 @@ Initiation Protocol (SIP) and a multimedia framework.")
        #f))
     (sha256
      (base32
-      "10w2rsvin8jrrjgwr1n5rxc5w1j53cag0mh31c7c49md17z2wzm3"))))
+      "1hw7bzapfygjxc52bagzgv4g8dd1d0gr4c7s051idflhaydc6wf6"))))
 
 (define-public pjproject-jami
   (package
-- 
2.23.0


From 202b08374d575550866aff84bb499abc2975b377 Mon Sep 17 00:00:00 2001
From: Jan Wielkiewicz <tona_kosmicznego_smiecia@interia.pl>
Date: Thu, 31 Oct 2019 20:01:40 +0100
Subject: [PATCH 6/9] bump gnutls to 3.6.10, the version Jami is going to use
 soon

---
 gnu/packages/tls.scm | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/tls.scm b/gnu/packages/tls.scm
index 73bd0ded23c1ab647316c4f91b22a3db717bc85e..b6c7289be679b2ddc01f8d54862ae68a07d90b6b 100644
--- a/gnu/packages/tls.scm
+++ b/gnu/packages/tls.scm
@@ -162,7 +162,7 @@ living in the same process.")
 (define-public gnutls
   (package
     (name "gnutls")
-    (version "3.6.9")
+    (version "3.6.10")
     (source (origin
              (method url-fetch)
              (uri
@@ -174,7 +174,7 @@ living in the same process.")
              (patches (search-patches "gnutls-skip-trust-store-test.patch"))
              (sha256
               (base32
-               "1jqz5s3lv8sa53348cfi9nr5pw5l55n8m40b8msdvv0pb2jzqca3"))))
+               "14r2h73yfj66cm14k9mnb3kgzq5a7qjg5b31m53bf19vcxkwmwxi"))))
     (build-system gnu-build-system)
     (arguments
      `(; Ensure we don't keep a reference to this buggy software.
-- 
2.23.0


From 08c86a33046bda83d6000dda58854ebab743d5b6 Mon Sep 17 00:00:00 2001
From: Jan Wielkiewicz <tona_kosmicznego_smiecia@interia.pl>
Date: Fri, 1 Nov 2019 00:59:38 +0100
Subject: [PATCH 7/9] bump Jami to 20191031.3.40360d8

---
 gnu/packages/telephony.scm | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/telephony.scm b/gnu/packages/telephony.scm
index ae91052372db97ca96e7fba1a71d0b71dc59e98d..00bf26d252e1769ea0328cfb1bfe09f43e96c62c 100644
--- a/gnu/packages/telephony.scm
+++ b/gnu/packages/telephony.scm
@@ -635,7 +635,7 @@ calls and messages")
 Initiation Protocol (SIP) and a multimedia framework.")
     (license license:gpl2+)))
 
-(define %jami-version "20191029.2.32830e6")
+(define %jami-version "20191031.3.40360d8")
 
 (define* (jami-source #:key without-daemon)
   (origin
@@ -651,7 +651,7 @@ Initiation Protocol (SIP) and a multimedia framework.")
        #f))
     (sha256
      (base32
-      "1hw7bzapfygjxc52bagzgv4g8dd1d0gr4c7s051idflhaydc6wf6"))))
+      "1169m52wi4qsy4fqfd49m6x3b6hhg706angr9n3wc2dskrm9jz30"))))
 
 (define-public pjproject-jami
   (package
-- 
2.23.0


From b7b7f6470f15eb770d799777063b14297454c7ed Mon Sep 17 00:00:00 2001
From: Jan Wielkiewicz <tona_kosmicznego_smiecia@interia.pl>
Date: Sat, 2 Nov 2019 01:16:43 +0100
Subject: [PATCH 8/9] bump jami to 20191101.3.67671e7

---
 gnu/packages/telephony.scm | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/telephony.scm b/gnu/packages/telephony.scm
index 00bf26d252e1769ea0328cfb1bfe09f43e96c62c..1c56d2308f15822d11f60a1a9e80e603aadfbc5b 100644
--- a/gnu/packages/telephony.scm
+++ b/gnu/packages/telephony.scm
@@ -635,7 +635,7 @@ calls and messages")
 Initiation Protocol (SIP) and a multimedia framework.")
     (license license:gpl2+)))
 
-(define %jami-version "20191031.3.40360d8")
+(define %jami-version "20191101.3.67671e7")
 
 (define* (jami-source #:key without-daemon)
   (origin
@@ -651,7 +651,7 @@ Initiation Protocol (SIP) and a multimedia framework.")
        #f))
     (sha256
      (base32
-      "1169m52wi4qsy4fqfd49m6x3b6hhg706angr9n3wc2dskrm9jz30"))))
+      "0kw172w2ccyz438kf5xqw14nhfm4xk6a2libnzib9j2wvhlpf4q0"))))
 
 (define-public pjproject-jami
   (package
-- 
2.23.0


From ee164ce65a59119689b9997122ddad65fad959fe Mon Sep 17 00:00:00 2001
From: Jan Wielkiewicz <tona_kosmicznego_smiecia@interia.pl>
Date: Sun, 3 Nov 2019 11:48:05 +0100
Subject: [PATCH 9/9] make files in pjproject writeable; improve formatting

---
 gnu/packages/telephony.scm | 10 +++++++---
 1 file changed, 7 insertions(+), 3 deletions(-)

diff --git a/gnu/packages/telephony.scm b/gnu/packages/telephony.scm
index 1c56d2308f15822d11f60a1a9e80e603aadfbc5b..dfd360e7d28a2b4eca4fa35c4f00e5ef6f83d00b 100644
--- a/gnu/packages/telephony.scm
+++ b/gnu/packages/telephony.scm
@@ -692,6 +692,10 @@ Initiation Protocol (SIP) and a multimedia framework.")
              "--with-external-srtp")
        #:phases
        (modify-phases %standard-phases
+	 (add-after 'unpack 'make-git-checkout-writable
+           (lambda _
+             (for-each make-file-writable (find-files "."))
+             #t))
          (add-after 'unpack 'apply-patches
            (lambda* (#:key inputs #:allow-other-keys)
              (let ((savoir-faire-linux-patches-directory "Savoir-faire Linux patches")
@@ -703,19 +707,19 @@ Initiation Protocol (SIP) and a multimedia framework.")
                     '("add_dtls_transport"
 		      "android"
 		      "disable_local_resolution"
-		      "fix_ebusy_turn" ; fails
+		      "fix_ebusy_turn"            ; fails
 		      "fix_first_packet_turn_tcp" ; fails
 		      "fix_ioqueue_ipv6_sendto"
 		      "fix_turn_alloc_failure"
 		      "fix_turn_connection_failure" ; fails
 		      "fix_turn_fallback"
-		      "ice_config" ; fails
+		      "ice_config"      ; fails
 		      "ignore_ipv6_on_transport_check"
 		      "ipv6"
 		      "multiple_listeners" ; fails
 		      "pj_ice_sess"
 		      "rfc2466"
-		      "rfc6544" ; fails
+		      "rfc6544"         ; fails
 		      "sip_config"
 		      "uwp_vs"
 		      "win32_vs_gnutls"
-- 
2.23.0


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

* Re: Maintaining GNU Jami package for Guix
  2019-11-01 12:01     ` Jan Wielkiewicz
  2019-11-01 19:02       ` Pierre Neidhardt
@ 2019-11-03 16:37       ` Marius Bakke
  2019-11-03 17:43         ` Jan
  1 sibling, 1 reply; 40+ messages in thread
From: Marius Bakke @ 2019-11-03 16:37 UTC (permalink / raw)
  To: Jan Wielkiewicz; +Cc: guix-devel

[-- Attachment #1: Type: text/plain, Size: 1824 bytes --]

Jan Wielkiewicz <tona_kosmicznego_smiecia@interia.pl> writes:

> Dnia 2019-10-31, o godz. 23:26:39
> Marius Bakke <mbakke@fastmail.com> napisał(a):
>
>> Do you have a link to the patches that Jami/pjproject needs?
> You can find patches in the ring-project/daemon/contrib/src/pjproject
> directory from the latest source tarball here:
> https://dl.jami.net/ring-release/tarballs/

I did not find any cURL or GnuTLS patches there.  Maybe I misunderstood
something?

>> It would be great if we could use system versions of GnuTLS and cURL,
>> because otherwise Jami risks not getting security updates.
> A bit unlikely, they update dependencies quickly, but they're slower
> than upstream. Keeping a separate version and updating it paralelly
> will prevent breaking the build process of the modified pjproject
> version. 
>
>> If they really need special patched versions of some libraries, you
>> can do something along these lines to create a
>> cusctm variant:
>> 
>> (define-public gnutls/jami
>>   (hidden-package
>>    (package/inherit
>>     gnutls
>>     (source (origin
>>               (inherit (package-source gnutls))
>>               (patches (append (origin-patches gnutls)
>>                                (search-patches
>> "gnutls-jami.patch"))))))))
> Why can't we just keep paralell version for a package? Like 
> gnutls @ 3.6.7, gnutls @ 3.6.9 etc?   

Both GnuTLS and cURL have stable ABIs.  That means, a package linked
against cURL 7.63 will almost certainly work with cURL 7.66 without
changes (even without recompilation).

There are many reasons not to include multiple versions of a package,
but for cURL and GnuTLS in particular, the main reason is that there are
security fixes in nearly every new version.  Thus, we can only support
the latest one.

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 487 bytes --]

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

* Re: Maintaining GNU Jami package for Guix
  2019-11-01 12:29 ` Jan Wielkiewicz
  2019-11-01 19:01   ` Pierre Neidhardt
@ 2019-11-03 17:07   ` Marius Bakke
  2019-11-03 17:47     ` Jan
  2019-11-03 18:12   ` Marius Bakke
  2 siblings, 1 reply; 40+ messages in thread
From: Marius Bakke @ 2019-11-03 17:07 UTC (permalink / raw)
  To: Jan Wielkiewicz, guix-devel

[-- Attachment #1: Type: text/plain, Size: 636 bytes --]

Jan Wielkiewicz <tona_kosmicznego_smiecia@interia.pl> writes:

> Why "pjnath/src/pjnath/turn_session.c is read-only; trying to patch
> anyway"? Why is it read-only. I don't get it, are we missing some
> permissions? Somehow this wasn't a problem before - the previous
> version of pjproject-jami didn't have this problem. Is it a bug in Guix?

Git checkouts are read-only because they are copied to the store, which
strips write permissions.  It could be mitigated by having 'git-fetch'
return a tarball instead of a directory, but in practice read-only
checkouts rarely causes problems (there is 'make-file-writable' in case
it does).

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 487 bytes --]

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

* Re: Maintaining GNU Jami package for Guix
  2019-11-03 16:37       ` Marius Bakke
@ 2019-11-03 17:43         ` Jan
  2019-11-03 18:06           ` Marius Bakke
  0 siblings, 1 reply; 40+ messages in thread
From: Jan @ 2019-11-03 17:43 UTC (permalink / raw)
  To: Marius Bakke; +Cc: guix-devel

On Sun, 03 Nov 2019 17:37:10 +0100
Marius Bakke <mbakke@fastmail.com> wrote:

> I did not find any cURL or GnuTLS patches there.  Maybe I
> misunderstood something?

Gnutls is a dependency of Jami, curl is probably a dependency of a
dependency of Jami, but that's all - what is important here is that
Jami uses a modified version of pjproject, which adds support for
gnutls - that's why patching fails. What happened with curl is a
mystery for me, the only thing I know is that building curl had failed
before building pjproject-jami, so I thought the patching process
succeeded. But since it works now, it doesn't matter (at least for me).

> Both GnuTLS and cURL have stable ABIs.  That means, a package linked
> against cURL 7.63 will almost certainly work with cURL 7.66 without
> changes (even without recompilation).

Don't know why, but Jami seems to use a specific version of gnutls, but
if what you say is true, then it doesn't matter. I started looking for
outdated dependencies, because I thought they could be the source of
the problem.

> There are many reasons not to include multiple versions of a package,
> but for cURL and GnuTLS in particular, the main reason is that there
> are security fixes in nearly every new version.  Thus, we can only
> support the latest one.

Okay, I'll try using the latest packages for Jami then.


Jan Wielkiewicz

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

* Re: Maintaining GNU Jami package for Guix
  2019-11-03 17:07   ` Marius Bakke
@ 2019-11-03 17:47     ` Jan
  0 siblings, 0 replies; 40+ messages in thread
From: Jan @ 2019-11-03 17:47 UTC (permalink / raw)
  To: Marius Bakke; +Cc: guix-devel

On Sun, 03 Nov 2019 18:07:24 +0100
Marius Bakke <mbakke@fastmail.com> wrote:

> Git checkouts are read-only because they are copied to the store,
> which strips write permissions.  It could be mitigated by having
> 'git-fetch' return a tarball instead of a directory, but in practice
> read-only checkouts rarely causes problems (there is
> 'make-file-writable' in case it does).

I've tried it already, but it somehow doesn't work, check my previous
mails. Seems I'm missing something important. 


Jan Wielkiewicz

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

* Re: Maintaining GNU Jami package for Guix
  2019-11-03 17:43         ` Jan
@ 2019-11-03 18:06           ` Marius Bakke
  0 siblings, 0 replies; 40+ messages in thread
From: Marius Bakke @ 2019-11-03 18:06 UTC (permalink / raw)
  To: Jan; +Cc: guix-devel

[-- Attachment #1: Type: text/plain, Size: 1138 bytes --]

Jan <tona_kosmicznego_smiecia@interia.pl> writes:

> On Sun, 03 Nov 2019 17:37:10 +0100
> Marius Bakke <mbakke@fastmail.com> wrote:
>
>> I did not find any cURL or GnuTLS patches there.  Maybe I
>> misunderstood something?
>
> Gnutls is a dependency of Jami, curl is probably a dependency of a
> dependency of Jami, but that's all - what is important here is that
> Jami uses a modified version of pjproject, which adds support for
> gnutls - that's why patching fails. What happened with curl is a
> mystery for me, the only thing I know is that building curl had failed
> before building pjproject-jami, so I thought the patching process
> succeeded. But since it works now, it doesn't matter (at least for me).

OK, thanks for the explanation.

>> There are many reasons not to include multiple versions of a package,
>> but for cURL and GnuTLS in particular, the main reason is that there
>> are security fixes in nearly every new version.  Thus, we can only
>> support the latest one.
>
> Okay, I'll try using the latest packages for Jami then.

Excellent, good luck and don't hesitate to come back if you have other
questions!  :-)

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 487 bytes --]

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

* Re: Maintaining GNU Jami package for Guix
  2019-11-01 12:29 ` Jan Wielkiewicz
  2019-11-01 19:01   ` Pierre Neidhardt
  2019-11-03 17:07   ` Marius Bakke
@ 2019-11-03 18:12   ` Marius Bakke
  2019-11-03 18:27     ` Jan
  2 siblings, 1 reply; 40+ messages in thread
From: Marius Bakke @ 2019-11-03 18:12 UTC (permalink / raw)
  To: Jan Wielkiewicz, guix-devel

[-- Attachment #1: Type: text/plain, Size: 1755 bytes --]

Jan Wielkiewicz <tona_kosmicznego_smiecia@interia.pl> writes:

> I have good and bad news.
> The good news is I fixed curl by using the most recent Jami source
> tarball - 20191031.3.40360d8.
> The bad news is that pjproject-jami didn't really build, because the
> patches failed to get applied again - the curl problem had occured
> *before* the problem with pjproject-jami, so I thought it had been
> fixed.
>
> I don't know what's the problem - the versions of pjproject and gnutls
> seem to be correct, I can check other dependencies of pjproject, but
> it'll take some time. I'll also ask the devs if I'm using the right
> versions now, but something seems to be broken for me, see this fail:
>
> patching file pjnath/src/pjnath/ice_strans.c
> Hunk #1 succeeded at 366 (offset -25 lines).
> Hunk #2 FAILED at 1655.
> Hunk #3 FAILED at 1861.
> 2 out of 3 hunks FAILED -- saving rejects to file
> pjnath/src/pjnath/ice_strans.c.rej File
> pjnath/src/pjnath/turn_session.c is read-only; trying to patch anyway
> patching file pjnath/src/pjnath/turn_session.c Hunk #1 succeeded at 974
> (offset -1 lines). Hunk #2 succeeded at 1022 (offset -1 lines).
> Hunk #3 succeeded at 1050 (offset -1 lines).
> Hunk #4 succeeded at 1090 (offset -1 lines).
> File pjnath/src/pjnath/turn_sock.c is read-only; trying to patch anyway
> patching file pjnath/src/pjnath/turn_sock.c
> command "patch" "--force" "-p1" "-i" "Savoir-faire Linux
> patches/fix_ebusy_turn.patch" failed with status 1

You can safely ignore the 'read only' messages, they are actually just
warnings.  The problem is that 2/3 hunks in the patch for
pjnath/src/pjnath/ice_strans.c failed -- I would guess Jami needs a
different version of pjproject, or the patches are applied in the wrong
order?

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 487 bytes --]

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

* Re: Maintaining GNU Jami package for Guix
  2019-11-03 18:12   ` Marius Bakke
@ 2019-11-03 18:27     ` Jan
  2019-11-03 18:52       ` Marius Bakke
  0 siblings, 1 reply; 40+ messages in thread
From: Jan @ 2019-11-03 18:27 UTC (permalink / raw)
  To: Marius Bakke; +Cc: guix-devel

On Sun, 03 Nov 2019 19:12:03 +0100
Marius Bakke <mbakke@fastmail.com> wrote:

> You can safely ignore the 'read only' messages, they are actually just
> warnings.

Good to know, so they get applied anyway, no matter if read-only?

> The problem is that 2/3 hunks in the patch for
> pjnath/src/pjnath/ice_strans.c failed -- I would guess Jami needs a
> different version of pjproject, or the patches are applied in the
> wrong order?

Already using the proper version of pjproject, so the order seems
to be the problem, thanks a lot! I'll ask the developers about the
order.



Jan Wielkiewicz

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

* Re: Maintaining GNU Jami package for Guix
  2019-11-03 18:27     ` Jan
@ 2019-11-03 18:52       ` Marius Bakke
  0 siblings, 0 replies; 40+ messages in thread
From: Marius Bakke @ 2019-11-03 18:52 UTC (permalink / raw)
  To: Jan; +Cc: guix-devel

[-- Attachment #1: Type: text/plain, Size: 375 bytes --]

Jan <tona_kosmicznego_smiecia@interia.pl> writes:

> On Sun, 03 Nov 2019 19:12:03 +0100
> Marius Bakke <mbakke@fastmail.com> wrote:
>
>> You can safely ignore the 'read only' messages, they are actually just
>> warnings.
>
> Good to know, so they get applied anyway, no matter if read-only?

Correct, at least as long as you use the '--force' flag to the patch
command.  :-)

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 487 bytes --]

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

* Re: Maintaining GNU Jami package for Guix
  2019-11-03 10:54         ` Jan Wielkiewicz
@ 2019-11-04 10:02           ` Gábor Boskovits
  0 siblings, 0 replies; 40+ messages in thread
From: Gábor Boskovits @ 2019-11-04 10:02 UTC (permalink / raw)
  To: Jan Wielkiewicz; +Cc: Guix-devel

[-- Attachment #1: Type: text/plain, Size: 1759 bytes --]

Hello Jan,

Jan Wielkiewicz <tona_kosmicznego_smiecia@interia.pl> ezt írta (időpont:
2019. nov. 3., V, 22:20):

> Dnia 2019-11-03, o godz. 11:15:56
> Pierre Neidhardt <mail@ambrevar.xyz> napisał(a):
>
> > Can you share the complete recipe?
> >
>
> Yes. I guess you want a patch of my entire work so far, because
> pjproject-jami is meaningless without changes in jami, so I'm attaching
> the whole patch. Also the commit messages are messy, any advice how
> should they look?
>
>
Thanks for working on this. I can share some recommendations on the commit
messages and structuring
changes. While developing, feel free to do however it is convenient for you.
Then before sumitting:
If I see it correctly, then three packages are involved, so this should be
three commits.
When adding a new package make that a separate commit.
Make it one commit, the final version. (You can squash commits together to
make it one.)
The commit message there should be in the form:
gnu: Add <package>.
 When updating a package, you can make that a single commit.
Commit message should be:
gnu: <package>: Update to <version>.

If anything else is done besides updating the version, mention that in the
commit message.
You can find examples in the git log of guix, like for commit:
af561664b8191e2a34570176422f4d500d5fd4fb

One further thing: If you order the patches, then the earlier patches can
make it to upstream before the rest of the series.
For example libresample could be incorporated eariler, reducing the amount
of code on the branch.

Thanks so much for working on Jami, and happy hacking!


> Jan Wielkiewicz
>

Best regards,
g_bor
-- 
OpenPGP Key Fingerprint: 7988:3B9F:7D6A:4DBF:3719:0367:2506:A96C:CF63:0B21

[-- Attachment #2: Type: text/html, Size: 2668 bytes --]

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

end of thread, other threads:[~2019-11-04 10:03 UTC | newest]

Thread overview: 40+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-10-18 18:56 Maintaining GNU Jami package for Guix Jan
2019-10-18 19:28 ` Marius Bakke
2019-10-19  9:02   ` Pierre Neidhardt
2019-10-19 20:38     ` Jan Wielkiewicz
2019-10-19 20:52       ` Ricardo Wurmus
2019-10-19 22:37         ` Jan
2019-10-20 11:14           ` Ricardo Wurmus
2019-10-20 11:51           ` Pierre Neidhardt
2019-10-20 11:48       ` Pierre Neidhardt
2019-10-25 15:03         ` Pierre Neidhardt
2019-10-25 19:44           ` Jan Wielkiewicz
2019-10-26 10:12             ` Pierre Neidhardt
2019-10-26 23:24               ` Jan Wielkiewicz
2019-10-28  7:53                 ` Pierre Neidhardt
2019-10-27 18:13 ` Jan Wielkiewicz
2019-10-27 18:18   ` Pierre Neidhardt
2019-10-27 19:23     ` Jan Wielkiewicz
2019-10-27 21:52 ` Jan Wielkiewicz
2019-10-31 20:19 ` Jan Wielkiewicz
2019-10-31 21:37   ` Pierre Neidhardt
2019-10-31 22:26   ` Marius Bakke
2019-11-01 12:01     ` Jan Wielkiewicz
2019-11-01 19:02       ` Pierre Neidhardt
2019-11-01 20:42         ` Jan Wielkiewicz
2019-11-02  9:38           ` Pierre Neidhardt
2019-11-03 16:37       ` Marius Bakke
2019-11-03 17:43         ` Jan
2019-11-03 18:06           ` Marius Bakke
2019-11-01 12:29 ` Jan Wielkiewicz
2019-11-01 19:01   ` Pierre Neidhardt
2019-11-01 23:16     ` Jan Wielkiewicz
2019-11-03 10:15       ` Pierre Neidhardt
2019-11-03 10:54         ` Jan Wielkiewicz
2019-11-04 10:02           ` Gábor Boskovits
2019-11-03 10:59         ` Jan Wielkiewicz
2019-11-03 17:07   ` Marius Bakke
2019-11-03 17:47     ` Jan
2019-11-03 18:12   ` Marius Bakke
2019-11-03 18:27     ` Jan
2019-11-03 18:52       ` Marius Bakke

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

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).