Showing preview only (1,013K chars total). Download the full file or copy to clipboard to get everything.
Repository: strophe/libstrophe
Branch: master
Commit: 89922116f8d4
Files: 117
Total size: 972.4 KB
Directory structure:
gitextract_57zn470u/
├── .git-blame-ignore-revs
├── .github/
│ ├── ISSUE_TEMPLATE/
│ │ └── 01-bug_report.md
│ └── workflows/
│ └── main.yml
├── .gitignore
├── AUTHORS
├── COPYING
├── ChangeLog
├── Doxyfile
├── GPL-LICENSE.txt
├── LICENSE.txt
├── MIT-LICENSE.txt
├── Makefile.am
├── NEWS
├── README.markdown
├── TODO
├── _clang-format
├── bootstrap.sh
├── build-android.sh
├── configure.ac
├── docs/
│ └── .keep
├── examples/
│ ├── README.md
│ ├── active.c
│ ├── basic.c
│ ├── bot.c
│ ├── complex.c
│ ├── component.c
│ ├── perf.c
│ ├── register.c
│ ├── roster.c
│ ├── uuid.c
│ └── vcard.c
├── jni/
│ ├── Android.mk
│ └── Application.mk
├── libstrophe.pc.in
├── m4/
│ ├── ac_try_compile2.m4
│ └── ax_valgrind_check.m4
├── src/
│ ├── auth.c
│ ├── common.h
│ ├── compression.c
│ ├── compression_dummy.c
│ ├── conn.c
│ ├── crypto.c
│ ├── ctx.c
│ ├── deprecated.c
│ ├── event.c
│ ├── handler.c
│ ├── hash.c
│ ├── hash.h
│ ├── jid.c
│ ├── md5.c
│ ├── md5.h
│ ├── ostypes.h
│ ├── parser.h
│ ├── parser_expat.c
│ ├── parser_libxml2.c
│ ├── rand.c
│ ├── resolver.c
│ ├── resolver.h
│ ├── sasl.c
│ ├── sasl.h
│ ├── scram.c
│ ├── scram.h
│ ├── sha.h
│ ├── sha1.c
│ ├── sha1.h
│ ├── sha256.c
│ ├── sha256.h
│ ├── sha512.c
│ ├── sha512.h
│ ├── snprintf.c
│ ├── snprintf.h
│ ├── sock.c
│ ├── sock.h
│ ├── stanza.c
│ ├── tls.c
│ ├── tls.h
│ ├── tls_dummy.c
│ ├── tls_gnutls.c
│ ├── tls_openssl.c
│ ├── tls_schannel.c
│ ├── util.c
│ ├── util.h
│ └── uuid.c
├── strophe.h
├── testbuild.sh
├── tests/
│ ├── cert.emptypass.pfx
│ ├── cert.nopass.pfx
│ ├── cert.pem
│ ├── cert.pfx
│ ├── check_parser.c
│ ├── key.pem
│ ├── key_encrypted.pem
│ ├── res_query_dump.c
│ ├── test.c
│ ├── test.h
│ ├── test_base64.c
│ ├── test_ctx.c
│ ├── test_fuzz_parser.c
│ ├── test_fuzz_resolver.c
│ ├── test_hash.c
│ ├── test_jid.c
│ ├── test_md5.c
│ ├── test_rand.c
│ ├── test_resolver.c
│ ├── test_sasl.c
│ ├── test_scram.c
│ ├── test_send_queue.c
│ ├── test_serialize_sm.c
│ ├── test_sha1.c
│ ├── test_sha256.c
│ ├── test_sha512.c
│ ├── test_snprintf.c
│ ├── test_sock.c
│ ├── test_stanza.c
│ ├── test_string.c
│ └── test_xmppaddr.c
└── travis/
└── before_script.sh
================================================
FILE CONTENTS
================================================
================================================
FILE: .git-blame-ignore-revs
================================================
# Unify coding style with clang-format
562a06425b96450481cdbc88e8872a2bf5a7d8aa
================================================
FILE: .github/ISSUE_TEMPLATE/01-bug_report.md
================================================
---
name: Bug report
about: Create a bug report
title: ''
labels: bug
assignees: ''
---
<!--
Provide a general summary of the issue in the Title above
This is a very generic template, remove items that do not apply. For completed items, change [ ] to [x].
-->
### Prerequisites
* [ ] Checked that your issue isn't already filed: https://github.com/strophe/libstrophe/issues?q=
### Additional Information
<!--- Any additional information, configuration or data that might be necessary to reproduce the issue. -->
## Expected Behavior
<!--- If you're describing a bug, tell us what should happen -->
<!--- If you're suggesting a change/improvement, tell us how it should work -->
## Current Behavior
<!--- If describing a bug, tell us what happens instead of the expected behavior or even better, provide a functional code example reproducing your issue. -->
<!--- If suggesting a change/improvement, explain the difference from current behavior -->
## Possible Solution
<!--- Not obligatory, but suggest a fix/reason for the bug, -->
<!--- or ideas how to implement the addition or change -->
## Steps to Reproduce (for bugs)
<!--- Please either describe your issue in detail or even better, provide a functional code example reproducing your issue. -->
1.
2.
3.
4.
## Context
<!--- How has this issue affected you? What are you trying to accomplish? -->
## Environment
<!---
Please provide the version of the library you're using.
You can find the version either in the first line of the `configure.ac` file or if you're using the Git repository, please run `git describe --always --tags --dirty`.
Also, please include the compiler, the compiler version, the architecture, the OS and what version of the OS you're experiencing the issue.
-->
================================================
FILE: .github/workflows/main.yml
================================================
name: CI
on:
push:
branches:
- master
- next
pull_request:
branches: [master]
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
linux-tests:
runs-on: ubuntu-24.04
strategy:
matrix:
valgrind:
- { configure: '' , cflags: '', make: 'check' }
- { configure: '--enable-valgrind' , cflags: '-O2', make: 'check-valgrind' }
options:
- { configure: '' }
- { configure: '--without-libxml2' }
- { configure: '--with-libxml2' }
- { configure: '--with-gnutls' }
- { configure: '--disable-tls' }
- { configure: '--enable-cares' }
- { configure: '--disable-getrandom' }
- { configure: '--disable-static' }
name: Regular Tests
steps:
- uses: actions/checkout@v2
- name: install dependencies
run: |
sudo apt update
sudo apt install -y libtool pkg-config libexpat1-dev libxml2-dev libssl-dev libgnutls28-dev libc-ares-dev valgrind
- name: Build the library
run: |
./bootstrap.sh
./configure ${{ matrix.options.configure }} ${{ matrix.valgrind.configure }} CFLAGS="-Werror -g3 ${{ matrix.valgrind.cflags }}"
make -j$(nproc)
- name: Run tests
run: |
make -j$(nproc) ${{ matrix.valgrind.make }}
- name: Error logs
if: ${{ failure() }}
run: |
cat test-suite*.log || true
xssl-tests:
runs-on: ubuntu-24.04
strategy:
matrix:
xssl_versions:
- { version: "master", continue: true, libressl: true }
- { version: "OPENBSD_7_8", continue: true, libressl: true }
- { version: "v4.2.1", continue: true, libressl: true }
- { version: "OPENBSD_7_7", continue: true, libressl: true }
- { version: "v4.1.2", continue: true, libressl: true }
- { version: "OPENBSD_7_6", continue: true, libressl: true }
- { version: "OPENBSD_7_5", continue: true, libressl: true }
- { version: "OPENBSD_7_4", continue: true, libressl: true }
- { version: "OPENBSD_7_3", continue: true, libressl: true }
- { version: "OPENBSD_7_2", continue: true, libressl: true }
- { version: "OPENBSD_7_1", continue: true, libressl: true }
# https://github.com/libressl-portable/portable/issues/760
# - { version: "v3.5.2", continue: true, libressl: true }
- { version: "OPENBSD_7_0", continue: true, libressl: true }
# OPENBSD_7_0 is basically the "fixed v3.4.3"
# - { version: "v3.4.3", continue: true, libressl: true }
- { version: "v3.4.2", continue: true, libressl: true }
- { version: "OPENBSD_6_9", continue: true, libressl: true }
- { version: "v3.1.5", continue: true, libressl: true }
- { version: "v2.1.10", continue: true, libressl: true }
- { version: "openssl-3.0", continue: true, libressl: false }
- { version: "openssl-3.0.18", continue: false, libressl: false }
- { version: "openssl-3.2", continue: true, libressl: false }
- { version: "openssl-3.2.6", continue: false, libressl: false }
- { version: "openssl-3.3", continue: true, libressl: false }
- { version: "openssl-3.3.5", continue: false, libressl: false }
- { version: "openssl-3.4", continue: true, libressl: false }
- { version: "openssl-3.4.3", continue: false, libressl: false }
- { version: "openssl-3.5", continue: true, libressl: false }
- { version: "openssl-3.5.3", continue: false, libressl: false }
- { version: "openssl-3.6", continue: true, libressl: false }
- { version: "openssl-3.6.0", continue: false, libressl: false }
name: xSSL tests
continue-on-error: ${{ matrix.xssl_versions.continue }}
steps:
- uses: actions/checkout@v2
- name: install dependencies
run: |
sudo apt update
sudo apt install -y libtool pkg-config libexpat1-dev valgrind
- name: build&install the TLS stack
env:
XSSL_COMMITISH: ${{ matrix.xssl_versions.version }}
LIBRESSL: ${{ matrix.xssl_versions.libressl }}
run: |
./travis/before_script.sh
- name: Build the library
run: |
./bootstrap.sh
PKG_CONFIG_PATH="${HOME}/xssl/lib/pkgconfig" ./configure CFLAGS="-Werror -g3" --prefix="${HOME}/xssl"
make -j$(nproc)
- name: Run tests
run: |
LD_LIBRARY_PATH="${HOME}/xssl/lib" make -j$(nproc) check
- name: Build the library with Valgrind enabled
run: |
./bootstrap.sh
PKG_CONFIG_PATH="${HOME}/xssl/lib/pkgconfig" ./configure --enable-valgrind CFLAGS="-Werror -g3" --prefix="${HOME}/xssl"
make -j$(nproc)
- name: Run tests with Valgrind enabled
run: |
LD_LIBRARY_PATH="${HOME}/xssl/lib" make -j$(nproc) check-valgrind
- name: Error logs
if: ${{ failure() }}
run: |
cat test-suite*.log || true
release-test:
runs-on: ubuntu-22.04
name: Check if release would work
steps:
- uses: actions/checkout@v2
- name: install dependencies & bootstrap
run: |
sudo apt update
sudo apt install -y libtool pkg-config libexpat1-dev dash
./bootstrap.sh
- name: Check if configure works with non-bash shells
# https://github.com/actions/runner/issues/241 requires us to use this following line...
shell: 'script --return --quiet --command "bash {0}"'
run: |
[ "`CONFIG_SHELL=/bin/dash ./configure 2>&1 1>/dev/null | tee /dev/tty | wc -l`" = "0" ]
- name: Re-run configure with the default shell
run: |
./configure
- name: Try release & tests
run: |
make test-release
- name: Show logs from release build
if: ${{ !failure() }}
run: |
cat testbuild.log
- name: Error logs
if: ${{ failure() }}
run: |
cat testbuild.log || true
cat testerr.log || true
code-style:
runs-on: ubuntu-24.04
name: Check coding style
continue-on-error: true
steps:
- uses: actions/checkout@v2
- name: install dependencies
run: |
sudo apt update
sudo apt install -y libtool pkg-config libexpat1-dev libxml2-dev libssl-dev libgnutls28-dev libc-ares-dev dos2unix
- name: Configure
run: |
./bootstrap.sh
./configure
- name: Check style
run: |
make format
git diff --exit-code
================================================
FILE: .gitignore
================================================
*.swp
*.orig
Makefile
test-driver
.libs
Makefile.in
configure
libtool
ltmain.sh
config.guess
config.sub
install-sh
missing
compile
aclocal.m4
config.log
config.status
depcomp
autom4te.cache
.dirstamp
.deps
.sconsign*
src/*.gcda
src/*.gcno
src/*.o
src/*.lo
examples/*.o
*.a
*.la
*.pc
*.tar.gz
*.tar.bz2
*.tar.xz
*.zip
docs/html
TAGS
tags
examples/active
examples/basic
examples/bot
examples/complex
examples/component
examples/perf
examples/register
examples/roster
examples/uuid
examples/vcard
testbuild*.log
testerr*.log
test-release/
test_stamp
test-suite*.log
tests/*.o
tests/*.log
tests/*.trs
tests/check_parser
tests/test_base64
tests/test_ctx
tests/test_fuzz_parser
tests/test_fuzz_resolver
tests/test_hash
tests/test_jid
tests/test_md5
tests/test_rand
tests/test_resolver
tests/test_sasl
tests/test_scram
tests/test_send_queue
tests/test_serialize_sm
tests/test_sha1
tests/test_sha256
tests/test_sha512
tests/test_snprintf
tests/test_sock
tests/test_stanza
tests/test_string
tests/test_xmppaddr
m4/lt*
m4/libtool*
libstrophe.project
libs/
obj/
expat/
.settings/
.project
.cproject
coverage/
coverage.info
configure~
fuzz-*.log
build*/
================================================
FILE: AUTHORS
================================================
Current maintainer:
Steffen Jaeckel <gh@jaeckel.eu>
Previous maintainers:
Dmitry Podgorny <pasis.ua@gmail.com>
Jack Moffit <jack@metajack.im>
Other contributors can be extracted from the Git log.
================================================
FILE: COPYING
================================================
GNU GENERAL PUBLIC LICENSE
Version 3, 29 June 2007
Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/>
Everyone is permitted to copy and distribute verbatim copies
of this license document, but changing it is not allowed.
Preamble
The GNU General Public License is a free, copyleft license for
software and other kinds of works.
The licenses for most software and other practical works are designed
to take away your freedom to share and change the works. By contrast,
the GNU General Public License is intended to guarantee your freedom to
share and change all versions of a program--to make sure it remains free
software for all its users. We, the Free Software Foundation, use the
GNU General Public License for most of our software; it applies also to
any other work released this way by its authors. You can apply it to
your programs, too.
When we speak of free software, we are referring to freedom, not
price. Our General Public Licenses are designed to make sure that you
have the freedom to distribute copies of free software (and charge for
them if you wish), that you receive source code or can get it if you
want it, that you can change the software or use pieces of it in new
free programs, and that you know you can do these things.
To protect your rights, we need to prevent others from denying you
these rights or asking you to surrender the rights. Therefore, you have
certain responsibilities if you distribute copies of the software, or if
you modify it: responsibilities to respect the freedom of others.
For example, if you distribute copies of such a program, whether
gratis or for a fee, you must pass on to the recipients the same
freedoms that you received. You must make sure that they, too, receive
or can get the source code. And you must show them these terms so they
know their rights.
Developers that use the GNU GPL protect your rights with two steps:
(1) assert copyright on the software, and (2) offer you this License
giving you legal permission to copy, distribute and/or modify it.
For the developers' and authors' protection, the GPL clearly explains
that there is no warranty for this free software. For both users' and
authors' sake, the GPL requires that modified versions be marked as
changed, so that their problems will not be attributed erroneously to
authors of previous versions.
Some devices are designed to deny users access to install or run
modified versions of the software inside them, although the manufacturer
can do so. This is fundamentally incompatible with the aim of
protecting users' freedom to change the software. The systematic
pattern of such abuse occurs in the area of products for individuals to
use, which is precisely where it is most unacceptable. Therefore, we
have designed this version of the GPL to prohibit the practice for those
products. If such problems arise substantially in other domains, we
stand ready to extend this provision to those domains in future versions
of the GPL, as needed to protect the freedom of users.
Finally, every program is threatened constantly by software patents.
States should not allow patents to restrict development and use of
software on general-purpose computers, but in those that do, we wish to
avoid the special danger that patents applied to a free program could
make it effectively proprietary. To prevent this, the GPL assures that
patents cannot be used to render the program non-free.
The precise terms and conditions for copying, distribution and
modification follow.
TERMS AND CONDITIONS
0. Definitions.
"This License" refers to version 3 of the GNU General Public License.
"Copyright" also means copyright-like laws that apply to other kinds of
works, such as semiconductor masks.
"The Program" refers to any copyrightable work licensed under this
License. Each licensee is addressed as "you". "Licensees" and
"recipients" may be individuals or organizations.
To "modify" a work means to copy from or adapt all or part of the work
in a fashion requiring copyright permission, other than the making of an
exact copy. The resulting work is called a "modified version" of the
earlier work or a work "based on" the earlier work.
A "covered work" means either the unmodified Program or a work based
on the Program.
To "propagate" a work means to do anything with it that, without
permission, would make you directly or secondarily liable for
infringement under applicable copyright law, except executing it on a
computer or modifying a private copy. Propagation includes copying,
distribution (with or without modification), making available to the
public, and in some countries other activities as well.
To "convey" a work means any kind of propagation that enables other
parties to make or receive copies. Mere interaction with a user through
a computer network, with no transfer of a copy, is not conveying.
An interactive user interface displays "Appropriate Legal Notices"
to the extent that it includes a convenient and prominently visible
feature that (1) displays an appropriate copyright notice, and (2)
tells the user that there is no warranty for the work (except to the
extent that warranties are provided), that licensees may convey the
work under this License, and how to view a copy of this License. If
the interface presents a list of user commands or options, such as a
menu, a prominent item in the list meets this criterion.
1. Source Code.
The "source code" for a work means the preferred form of the work
for making modifications to it. "Object code" means any non-source
form of a work.
A "Standard Interface" means an interface that either is an official
standard defined by a recognized standards body, or, in the case of
interfaces specified for a particular programming language, one that
is widely used among developers working in that language.
The "System Libraries" of an executable work include anything, other
than the work as a whole, that (a) is included in the normal form of
packaging a Major Component, but which is not part of that Major
Component, and (b) serves only to enable use of the work with that
Major Component, or to implement a Standard Interface for which an
implementation is available to the public in source code form. A
"Major Component", in this context, means a major essential component
(kernel, window system, and so on) of the specific operating system
(if any) on which the executable work runs, or a compiler used to
produce the work, or an object code interpreter used to run it.
The "Corresponding Source" for a work in object code form means all
the source code needed to generate, install, and (for an executable
work) run the object code and to modify the work, including scripts to
control those activities. However, it does not include the work's
System Libraries, or general-purpose tools or generally available free
programs which are used unmodified in performing those activities but
which are not part of the work. For example, Corresponding Source
includes interface definition files associated with source files for
the work, and the source code for shared libraries and dynamically
linked subprograms that the work is specifically designed to require,
such as by intimate data communication or control flow between those
subprograms and other parts of the work.
The Corresponding Source need not include anything that users
can regenerate automatically from other parts of the Corresponding
Source.
The Corresponding Source for a work in source code form is that
same work.
2. Basic Permissions.
All rights granted under this License are granted for the term of
copyright on the Program, and are irrevocable provided the stated
conditions are met. This License explicitly affirms your unlimited
permission to run the unmodified Program. The output from running a
covered work is covered by this License only if the output, given its
content, constitutes a covered work. This License acknowledges your
rights of fair use or other equivalent, as provided by copyright law.
You may make, run and propagate covered works that you do not
convey, without conditions so long as your license otherwise remains
in force. You may convey covered works to others for the sole purpose
of having them make modifications exclusively for you, or provide you
with facilities for running those works, provided that you comply with
the terms of this License in conveying all material for which you do
not control copyright. Those thus making or running the covered works
for you must do so exclusively on your behalf, under your direction
and control, on terms that prohibit them from making any copies of
your copyrighted material outside their relationship with you.
Conveying under any other circumstances is permitted solely under
the conditions stated below. Sublicensing is not allowed; section 10
makes it unnecessary.
3. Protecting Users' Legal Rights From Anti-Circumvention Law.
No covered work shall be deemed part of an effective technological
measure under any applicable law fulfilling obligations under article
11 of the WIPO copyright treaty adopted on 20 December 1996, or
similar laws prohibiting or restricting circumvention of such
measures.
When you convey a covered work, you waive any legal power to forbid
circumvention of technological measures to the extent such circumvention
is effected by exercising rights under this License with respect to
the covered work, and you disclaim any intention to limit operation or
modification of the work as a means of enforcing, against the work's
users, your or third parties' legal rights to forbid circumvention of
technological measures.
4. Conveying Verbatim Copies.
You may convey verbatim copies of the Program's source code as you
receive it, in any medium, provided that you conspicuously and
appropriately publish on each copy an appropriate copyright notice;
keep intact all notices stating that this License and any
non-permissive terms added in accord with section 7 apply to the code;
keep intact all notices of the absence of any warranty; and give all
recipients a copy of this License along with the Program.
You may charge any price or no price for each copy that you convey,
and you may offer support or warranty protection for a fee.
5. Conveying Modified Source Versions.
You may convey a work based on the Program, or the modifications to
produce it from the Program, in the form of source code under the
terms of section 4, provided that you also meet all of these conditions:
a) The work must carry prominent notices stating that you modified
it, and giving a relevant date.
b) The work must carry prominent notices stating that it is
released under this License and any conditions added under section
7. This requirement modifies the requirement in section 4 to
"keep intact all notices".
c) You must license the entire work, as a whole, under this
License to anyone who comes into possession of a copy. This
License will therefore apply, along with any applicable section 7
additional terms, to the whole of the work, and all its parts,
regardless of how they are packaged. This License gives no
permission to license the work in any other way, but it does not
invalidate such permission if you have separately received it.
d) If the work has interactive user interfaces, each must display
Appropriate Legal Notices; however, if the Program has interactive
interfaces that do not display Appropriate Legal Notices, your
work need not make them do so.
A compilation of a covered work with other separate and independent
works, which are not by their nature extensions of the covered work,
and which are not combined with it such as to form a larger program,
in or on a volume of a storage or distribution medium, is called an
"aggregate" if the compilation and its resulting copyright are not
used to limit the access or legal rights of the compilation's users
beyond what the individual works permit. Inclusion of a covered work
in an aggregate does not cause this License to apply to the other
parts of the aggregate.
6. Conveying Non-Source Forms.
You may convey a covered work in object code form under the terms
of sections 4 and 5, provided that you also convey the
machine-readable Corresponding Source under the terms of this License,
in one of these ways:
a) Convey the object code in, or embodied in, a physical product
(including a physical distribution medium), accompanied by the
Corresponding Source fixed on a durable physical medium
customarily used for software interchange.
b) Convey the object code in, or embodied in, a physical product
(including a physical distribution medium), accompanied by a
written offer, valid for at least three years and valid for as
long as you offer spare parts or customer support for that product
model, to give anyone who possesses the object code either (1) a
copy of the Corresponding Source for all the software in the
product that is covered by this License, on a durable physical
medium customarily used for software interchange, for a price no
more than your reasonable cost of physically performing this
conveying of source, or (2) access to copy the
Corresponding Source from a network server at no charge.
c) Convey individual copies of the object code with a copy of the
written offer to provide the Corresponding Source. This
alternative is allowed only occasionally and noncommercially, and
only if you received the object code with such an offer, in accord
with subsection 6b.
d) Convey the object code by offering access from a designated
place (gratis or for a charge), and offer equivalent access to the
Corresponding Source in the same way through the same place at no
further charge. You need not require recipients to copy the
Corresponding Source along with the object code. If the place to
copy the object code is a network server, the Corresponding Source
may be on a different server (operated by you or a third party)
that supports equivalent copying facilities, provided you maintain
clear directions next to the object code saying where to find the
Corresponding Source. Regardless of what server hosts the
Corresponding Source, you remain obligated to ensure that it is
available for as long as needed to satisfy these requirements.
e) Convey the object code using peer-to-peer transmission, provided
you inform other peers where the object code and Corresponding
Source of the work are being offered to the general public at no
charge under subsection 6d.
A separable portion of the object code, whose source code is excluded
from the Corresponding Source as a System Library, need not be
included in conveying the object code work.
A "User Product" is either (1) a "consumer product", which means any
tangible personal property which is normally used for personal, family,
or household purposes, or (2) anything designed or sold for incorporation
into a dwelling. In determining whether a product is a consumer product,
doubtful cases shall be resolved in favor of coverage. For a particular
product received by a particular user, "normally used" refers to a
typical or common use of that class of product, regardless of the status
of the particular user or of the way in which the particular user
actually uses, or expects or is expected to use, the product. A product
is a consumer product regardless of whether the product has substantial
commercial, industrial or non-consumer uses, unless such uses represent
the only significant mode of use of the product.
"Installation Information" for a User Product means any methods,
procedures, authorization keys, or other information required to install
and execute modified versions of a covered work in that User Product from
a modified version of its Corresponding Source. The information must
suffice to ensure that the continued functioning of the modified object
code is in no case prevented or interfered with solely because
modification has been made.
If you convey an object code work under this section in, or with, or
specifically for use in, a User Product, and the conveying occurs as
part of a transaction in which the right of possession and use of the
User Product is transferred to the recipient in perpetuity or for a
fixed term (regardless of how the transaction is characterized), the
Corresponding Source conveyed under this section must be accompanied
by the Installation Information. But this requirement does not apply
if neither you nor any third party retains the ability to install
modified object code on the User Product (for example, the work has
been installed in ROM).
The requirement to provide Installation Information does not include a
requirement to continue to provide support service, warranty, or updates
for a work that has been modified or installed by the recipient, or for
the User Product in which it has been modified or installed. Access to a
network may be denied when the modification itself materially and
adversely affects the operation of the network or violates the rules and
protocols for communication across the network.
Corresponding Source conveyed, and Installation Information provided,
in accord with this section must be in a format that is publicly
documented (and with an implementation available to the public in
source code form), and must require no special password or key for
unpacking, reading or copying.
7. Additional Terms.
"Additional permissions" are terms that supplement the terms of this
License by making exceptions from one or more of its conditions.
Additional permissions that are applicable to the entire Program shall
be treated as though they were included in this License, to the extent
that they are valid under applicable law. If additional permissions
apply only to part of the Program, that part may be used separately
under those permissions, but the entire Program remains governed by
this License without regard to the additional permissions.
When you convey a copy of a covered work, you may at your option
remove any additional permissions from that copy, or from any part of
it. (Additional permissions may be written to require their own
removal in certain cases when you modify the work.) You may place
additional permissions on material, added by you to a covered work,
for which you have or can give appropriate copyright permission.
Notwithstanding any other provision of this License, for material you
add to a covered work, you may (if authorized by the copyright holders of
that material) supplement the terms of this License with terms:
a) Disclaiming warranty or limiting liability differently from the
terms of sections 15 and 16 of this License; or
b) Requiring preservation of specified reasonable legal notices or
author attributions in that material or in the Appropriate Legal
Notices displayed by works containing it; or
c) Prohibiting misrepresentation of the origin of that material, or
requiring that modified versions of such material be marked in
reasonable ways as different from the original version; or
d) Limiting the use for publicity purposes of names of licensors or
authors of the material; or
e) Declining to grant rights under trademark law for use of some
trade names, trademarks, or service marks; or
f) Requiring indemnification of licensors and authors of that
material by anyone who conveys the material (or modified versions of
it) with contractual assumptions of liability to the recipient, for
any liability that these contractual assumptions directly impose on
those licensors and authors.
All other non-permissive additional terms are considered "further
restrictions" within the meaning of section 10. If the Program as you
received it, or any part of it, contains a notice stating that it is
governed by this License along with a term that is a further
restriction, you may remove that term. If a license document contains
a further restriction but permits relicensing or conveying under this
License, you may add to a covered work material governed by the terms
of that license document, provided that the further restriction does
not survive such relicensing or conveying.
If you add terms to a covered work in accord with this section, you
must place, in the relevant source files, a statement of the
additional terms that apply to those files, or a notice indicating
where to find the applicable terms.
Additional terms, permissive or non-permissive, may be stated in the
form of a separately written license, or stated as exceptions;
the above requirements apply either way.
8. Termination.
You may not propagate or modify a covered work except as expressly
provided under this License. Any attempt otherwise to propagate or
modify it is void, and will automatically terminate your rights under
this License (including any patent licenses granted under the third
paragraph of section 11).
However, if you cease all violation of this License, then your
license from a particular copyright holder is reinstated (a)
provisionally, unless and until the copyright holder explicitly and
finally terminates your license, and (b) permanently, if the copyright
holder fails to notify you of the violation by some reasonable means
prior to 60 days after the cessation.
Moreover, your license from a particular copyright holder is
reinstated permanently if the copyright holder notifies you of the
violation by some reasonable means, this is the first time you have
received notice of violation of this License (for any work) from that
copyright holder, and you cure the violation prior to 30 days after
your receipt of the notice.
Termination of your rights under this section does not terminate the
licenses of parties who have received copies or rights from you under
this License. If your rights have been terminated and not permanently
reinstated, you do not qualify to receive new licenses for the same
material under section 10.
9. Acceptance Not Required for Having Copies.
You are not required to accept this License in order to receive or
run a copy of the Program. Ancillary propagation of a covered work
occurring solely as a consequence of using peer-to-peer transmission
to receive a copy likewise does not require acceptance. However,
nothing other than this License grants you permission to propagate or
modify any covered work. These actions infringe copyright if you do
not accept this License. Therefore, by modifying or propagating a
covered work, you indicate your acceptance of this License to do so.
10. Automatic Licensing of Downstream Recipients.
Each time you convey a covered work, the recipient automatically
receives a license from the original licensors, to run, modify and
propagate that work, subject to this License. You are not responsible
for enforcing compliance by third parties with this License.
An "entity transaction" is a transaction transferring control of an
organization, or substantially all assets of one, or subdividing an
organization, or merging organizations. If propagation of a covered
work results from an entity transaction, each party to that
transaction who receives a copy of the work also receives whatever
licenses to the work the party's predecessor in interest had or could
give under the previous paragraph, plus a right to possession of the
Corresponding Source of the work from the predecessor in interest, if
the predecessor has it or can get it with reasonable efforts.
You may not impose any further restrictions on the exercise of the
rights granted or affirmed under this License. For example, you may
not impose a license fee, royalty, or other charge for exercise of
rights granted under this License, and you may not initiate litigation
(including a cross-claim or counterclaim in a lawsuit) alleging that
any patent claim is infringed by making, using, selling, offering for
sale, or importing the Program or any portion of it.
11. Patents.
A "contributor" is a copyright holder who authorizes use under this
License of the Program or a work on which the Program is based. The
work thus licensed is called the contributor's "contributor version".
A contributor's "essential patent claims" are all patent claims
owned or controlled by the contributor, whether already acquired or
hereafter acquired, that would be infringed by some manner, permitted
by this License, of making, using, or selling its contributor version,
but do not include claims that would be infringed only as a
consequence of further modification of the contributor version. For
purposes of this definition, "control" includes the right to grant
patent sublicenses in a manner consistent with the requirements of
this License.
Each contributor grants you a non-exclusive, worldwide, royalty-free
patent license under the contributor's essential patent claims, to
make, use, sell, offer for sale, import and otherwise run, modify and
propagate the contents of its contributor version.
In the following three paragraphs, a "patent license" is any express
agreement or commitment, however denominated, not to enforce a patent
(such as an express permission to practice a patent or covenant not to
sue for patent infringement). To "grant" such a patent license to a
party means to make such an agreement or commitment not to enforce a
patent against the party.
If you convey a covered work, knowingly relying on a patent license,
and the Corresponding Source of the work is not available for anyone
to copy, free of charge and under the terms of this License, through a
publicly available network server or other readily accessible means,
then you must either (1) cause the Corresponding Source to be so
available, or (2) arrange to deprive yourself of the benefit of the
patent license for this particular work, or (3) arrange, in a manner
consistent with the requirements of this License, to extend the patent
license to downstream recipients. "Knowingly relying" means you have
actual knowledge that, but for the patent license, your conveying the
covered work in a country, or your recipient's use of the covered work
in a country, would infringe one or more identifiable patents in that
country that you have reason to believe are valid.
If, pursuant to or in connection with a single transaction or
arrangement, you convey, or propagate by procuring conveyance of, a
covered work, and grant a patent license to some of the parties
receiving the covered work authorizing them to use, propagate, modify
or convey a specific copy of the covered work, then the patent license
you grant is automatically extended to all recipients of the covered
work and works based on it.
A patent license is "discriminatory" if it does not include within
the scope of its coverage, prohibits the exercise of, or is
conditioned on the non-exercise of one or more of the rights that are
specifically granted under this License. You may not convey a covered
work if you are a party to an arrangement with a third party that is
in the business of distributing software, under which you make payment
to the third party based on the extent of your activity of conveying
the work, and under which the third party grants, to any of the
parties who would receive the covered work from you, a discriminatory
patent license (a) in connection with copies of the covered work
conveyed by you (or copies made from those copies), or (b) primarily
for and in connection with specific products or compilations that
contain the covered work, unless you entered into that arrangement,
or that patent license was granted, prior to 28 March 2007.
Nothing in this License shall be construed as excluding or limiting
any implied license or other defenses to infringement that may
otherwise be available to you under applicable patent law.
12. No Surrender of Others' Freedom.
If conditions are imposed on you (whether by court order, agreement or
otherwise) that contradict the conditions of this License, they do not
excuse you from the conditions of this License. If you cannot convey a
covered work so as to satisfy simultaneously your obligations under this
License and any other pertinent obligations, then as a consequence you may
not convey it at all. For example, if you agree to terms that obligate you
to collect a royalty for further conveying from those to whom you convey
the Program, the only way you could satisfy both those terms and this
License would be to refrain entirely from conveying the Program.
13. Use with the GNU Affero General Public License.
Notwithstanding any other provision of this License, you have
permission to link or combine any covered work with a work licensed
under version 3 of the GNU Affero General Public License into a single
combined work, and to convey the resulting work. The terms of this
License will continue to apply to the part which is the covered work,
but the special requirements of the GNU Affero General Public License,
section 13, concerning interaction through a network will apply to the
combination as such.
14. Revised Versions of this License.
The Free Software Foundation may publish revised and/or new versions of
the GNU General Public License from time to time. Such new versions will
be similar in spirit to the present version, but may differ in detail to
address new problems or concerns.
Each version is given a distinguishing version number. If the
Program specifies that a certain numbered version of the GNU General
Public License "or any later version" applies to it, you have the
option of following the terms and conditions either of that numbered
version or of any later version published by the Free Software
Foundation. If the Program does not specify a version number of the
GNU General Public License, you may choose any version ever published
by the Free Software Foundation.
If the Program specifies that a proxy can decide which future
versions of the GNU General Public License can be used, that proxy's
public statement of acceptance of a version permanently authorizes you
to choose that version for the Program.
Later license versions may give you additional or different
permissions. However, no additional obligations are imposed on any
author or copyright holder as a result of your choosing to follow a
later version.
15. Disclaimer of Warranty.
THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
16. Limitation of Liability.
IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
SUCH DAMAGES.
17. Interpretation of Sections 15 and 16.
If the disclaimer of warranty and limitation of liability provided
above cannot be given local legal effect according to their terms,
reviewing courts shall apply local law that most closely approximates
an absolute waiver of all civil liability in connection with the
Program, unless a warranty or assumption of liability accompanies a
copy of the Program in return for a fee.
END OF TERMS AND CONDITIONS
How to Apply These Terms to Your New Programs
If you develop a new program, and you want it to be of the greatest
possible use to the public, the best way to achieve this is to make it
free software which everyone can redistribute and change under these terms.
To do so, attach the following notices to the program. It is safest
to attach them to the start of each source file to most effectively
state the exclusion of warranty; and each file should have at least
the "copyright" line and a pointer to where the full notice is found.
<one line to give the program's name and a brief idea of what it does.>
Copyright (C) <year> <name of author>
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
Also add information on how to contact you by electronic and paper mail.
If the program does terminal interaction, make it output a short
notice like this when it starts in an interactive mode:
<program> Copyright (C) <year> <name of author>
This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
This is free software, and you are welcome to redistribute it
under certain conditions; type `show c' for details.
The hypothetical commands `show w' and `show c' should show the appropriate
parts of the General Public License. Of course, your program's commands
might be different; for a GUI interface, you would use an "about box".
You should also get your employer (if you work as a programmer) or school,
if any, to sign a "copyright disclaimer" for the program, if necessary.
For more information on this, and how to apply and follow the GNU GPL, see
<http://www.gnu.org/licenses/>.
The GNU General Public License does not permit incorporating your program
into proprietary programs. If your program is a subroutine library, you
may consider it more useful to permit linking proprietary applications with
the library. If this is what you want to do, use the GNU Lesser General
Public License instead of this License. But first, please read
<http://www.gnu.org/philosophy/why-not-lgpl.html>.
Copyright (c) 2005-2009 Collecta, Inc.
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
================================================
FILE: ChangeLog
================================================
0.14.0
- Add SM-state serialization mechanism (#239)
- Add support for `SCRAM-SHA-512-PLUS` (da122981)
- Add support for `SSLKEYLOGFILE` with OpenSSL (d82df127)
- Fix some issues related to Stream Management (03d43132, 4359536a)
- Fix a potential segfault (9fef4b7d)
- New API:
- xmpp_conn_set_sm_callback()
- xmpp_conn_restore_sm_state()
0.13.1
- Fix SCRAM-*-PLUS SASL mechanisms with OpenSSL and TLS < v1.3 (40f2452)
- Only signal "stream negotiation success" once (1cf09b1)
- Fix `sock_connect()` not looping over all DNS records returned if no `sockopt_cb` is set (5edc480)
- Replace usage of EBADFD, it's not in POSIX (#235)
0.13.0
- Fix connected/connecting signaling to user (#227)
- Fix wording of licensing terms (#225)
- Prepare for future changes in OpenSSL (#226)
- Improve Stream Management (#227) (#230)
- Add SCRAM-PLUS Variants (#228)
- Introduce XEP-0138 stream compression (#231)
- Deprecated the following API (#227):
- xmpp_conn_disable_tls() - replaced by a flag set by xmpp_conn_set_flags()
0.12.3
- Improve TCP-connection establishment (#221)
- Handle case where the server doesn't provide the `bind` feature (#224)
- Fix configure script for non-bash shells (#218)
- Parse JID's according to RFC7622 (#219)
- Fix potential memory leak in internal DNS resolver (#219)
- Fix potential memory leaks in `xmpp_conn_set_cafile()` and `xmpp_conn_set_capath()` (#219)
- Internal improvements (#219)
0.12.2
- Fix reconnect issues when Stream Management is enabled (#211)
- Fix resolver ... this time for real hopefully (fixup of #200) (#214)
- Fix clearing of password cache on resumed connection (#214)
- Improve detection&implementation of `va_copy` (#213)
- Fix Valgrind CI builds against LibreSSL (#212)
- Fix perf example on platforms where an `rdtsc()` equivalent isn't implemented (#212)
0.12.1
- Fix compilation in buildroot (#207)
- Fixes regarding OpenSSL (#208)
- Fix some build steps when builddir != srcdir (#208)
- Allow the user to disable build of examples (#209)
- CI builds against OpenSSL 3 (#206)
- Change the call signature of the following API (#208):
- xmpp_conn_set_client_cert() - the PKCS#12 file has now to be passed via the `cert`
parameter. Originally it was via `key`. Currently both styles are supported,
but in a future release only passing via `cert` will be accepted.
0.12.0
- Fix potential infinite loop in resolver (#200)
- Prevent potential memory leak in `xmpp_stanza_new_from_string()` (#205)
- Do proper SO versioning
- Add code coverage support (#188)
- Add support for password-protected TLS key & PKCS#12/PFX files (#195, #205)
- Stream-Management support - XEP-0198 (#184)
- New API:
- xmpp_conn_send_queue_len()
- xmpp_conn_send_queue_drop_element()
- xmpp_conn_get_sm_state()
- xmpp_conn_set_sm_state()
- xmpp_free_sm_state()
- xmpp_conn_get_keyfile()
- xmpp_conn_set_password_callback()
- xmpp_conn_set_password_retries()
- xmpp_stanza_get_child_by_path()
- xmpp_conn_set_sockopt_callback()
- xmpp_sockopt_cb_keepalive()
- The following APIs were public in the shared library, but not in `strophe.h`.
Now they are officially public API:
- xmpp_rand_new()
- xmpp_rand_free()
- xmpp_rand()
- xmpp_rand_bytes()
- xmpp_rand_nonce()
- xmpp_rand_bytes()
- The following APIs were public in the shared library, but not in `strophe.h`.
In a future version of the library they will be private without replacement:
- xmpp_alloc()
- xmpp_realloc()
- xmpp_strdup()
- xmpp_strndup()
- xmpp_strtok_r()
- xmpp_snprintf()
- xmpp_vsnprintf()
- xmpp_log()
- xmpp_error()
- xmpp_warn()
- xmpp_info()
- xmpp_debug()
- xmpp_debug_verbose()
- Deprecated the following API:
- xmpp_conn_set_keepalive() - replaced by xmpp_conn_set_sockopt_callback()
0.11.0
- SASL EXTERNAL support (XEP-0178)
- Client certificate can be provided for TLS negotiation. If the
certificate contains a single xmppAddr and JID is not provided with
xmpp_conn_set_jid(), the xmppAddr is chosen as JID
- <stream> element contains "from" attribute over TLS connections now
- GnuTLS can be selected optionally with configure script
- Support for manual certificate verification
- New API:
- xmpp_conn_set_client_cert()
- xmpp_conn_cert_xmppaddr_num()
- xmpp_conn_cert_xmppaddr()
- xmpp_conn_set_cafile()
- xmpp_conn_set_capath()
- xmpp_conn_set_certfail_handler()
- xmpp_conn_get_peer_cert()
- xmpp_tlscert_get_ctx()
- xmpp_tlscert_get_conn()
- xmpp_tlscert_get_pem()
- xmpp_tlscert_get_dnsname()
- xmpp_tlscert_get_string()
- xmpp_tlscert_get_description()
- xmpp_tlscert_free()
0.10.1
- Fixed compilation error when LibreSSL is used
- Fixed crash when NULL is provided as password
0.10.0
- Coding style has been unified
- SCRAM-SHA-256 and SCRAM-SHA-512 support
- c-ares support
- LibreSSL support
- Introduced global timed handlers that fire periodically regardless of
connections status, such a handler can be used to implement deferred
re-connection
- examples/register implements XEP-0077
- Fixed issue with IPv6 on Windows (#153)
- Improved portability across systems such as Haiku, Windows
- New API:
- xmpp_stanza_get_child_by_name_and_ns()
- xmpp_conn_is_connecting()
- xmpp_conn_is_connected()
- xmpp_conn_is_disconnected()
- xmpp_stanza_new_from_string()
- xmpp_stanza_add_child_ex()
- xmpp_stanza_get_context()
- xmpp_stanza_reply_error()
- xmpp_global_timed_handler_add()
- xmpp_global_timed_handler_delete()
0.9.3
- PLAIN mechanism is used only when no other mechanisms are supported
- Legacy authentication is disabled by default, can be enabled with
connection flag XMPP_CONN_FLAG_LEGACY_AUTH
- Session is not established if it is optional
- Fixed a bug causing a reused connection not to cleanup properly
- Improved debug logging in OpenSSL module
- Few memory leaks fixed
0.9.2
- OpenSSL tls module verifies certificate by default. Set flag
XMPP_CONN_FLAG_TRUST_TLS to ignore result of the verification
- Certificate hostname verification is forced for openssl-1.0.2 and
newer
- OpenSSL tls module disables insecure SSLv2 SSLv3 and TLSv1
- Support of handlers with the same callback function, but different
userdata
- System handlers are deleted on xmpp_conn_t reconnection. Old system
handlers could cause problems
- Default timeout for xmpp_run() is increased from 1 millisecond to 1
second in order to reduce CPU consumption
- Reduced memory usage in expat module
- New functions:
- xmpp_error_new()
- xmpp_send_error()
- xmpp_ctx_set_timeout()
- xmpp_sha1_digest()
0.9.1
- Fixed bug #95 (DNS lookup failing on Cygwin)
- Removed dependency on the check package
0.9.0
- IPv6 support
- Legacy SSL support
- Initial Android support
- Resolver returns all SRV records instead of one. Lookup is performed
according to RFC2052
- xmpp_connect_raw() provides access to a xmpp_conn object just after
establishing TCP connection. This allows to implement in-band
registration, authentication mechanisms or serverless messaging
- xmpp_conn_t object is reusable now and can be reconnected with saving
all handlers, flags, jid and password
- New API:
- xmpp_uuid_gen()
- xmpp_connect_raw()
- xmpp_conn_open_stream_default()
- xmpp_conn_open_stream()
- xmpp_conn_tls_start()
- xmpp_conn_get_flags()
- xmpp_conn_set_flags()
- xmpp_conn_set_keepalive()
- xmpp_conn_is_secured()
- xmpp_stanza_del_attribute()
- xmpp_stanza_get_to()
- xmpp_stanza_get_from()
- xmpp_stanza_set_to()
- xmpp_stanza_set_from()
- xmpp_stanza_reply()
- xmpp_message_new()
- xmpp_message_get_body()
- xmpp_message_set_body()
- xmpp_iq_new()
- xmpp_presence_new()
- Exposed private API:
- xmpp_jid_new()
- xmpp_jid_bare()
- xmpp_jid_node()
- xmpp_jid_domain()
- xmpp_jid_resource()
- xmpp_stanza_get_attribute_count()
- xmpp_stanza_get_attributes()
0.8.8
- XML namespace support
- XEP-0114 support
0.8.7
- SCRAM-SHA-1 authentication mechanism
- pkg-config support
0.8.5
- libtoolize to generate .so
================================================
FILE: Doxyfile
================================================
# Doxyfile 1.16.1
# This file describes the settings to be used by the documentation system
# Doxygen (www.doxygen.org) for a project.
#
# All text after a double hash (##) is considered a comment and is placed in
# front of the TAG it is preceding.
#
# All text after a single hash (#) is considered a comment and will be ignored.
# The format is:
# TAG = value [value, ...]
# For lists, items can also be appended using:
# TAG += value [value, ...]
# Values that contain spaces should be placed between quotes (\" \").
#
# Note:
#
# Use Doxygen to compare the used configuration file with the template
# configuration file:
# doxygen -x [configFile]
# Use Doxygen to compare the used configuration file with the template
# configuration file without replacing the environment variables or CMake type
# replacement variables:
# doxygen -x_noenv [configFile]
#---------------------------------------------------------------------------
# Project related configuration options
#---------------------------------------------------------------------------
# This tag specifies the encoding used for all characters in the configuration
# file that follow. The default is UTF-8 which is also the encoding used for all
# text before the first occurrence of this tag. Doxygen uses libiconv (or the
# iconv built into libc) for the transcoding. See
# https://www.gnu.org/software/libiconv/ for the list of possible encodings.
# The default value is: UTF-8.
DOXYFILE_ENCODING = UTF-8
# The PROJECT_NAME tag is a single word (or a sequence of words surrounded by
# double-quotes, unless you are using Doxywizard) that should identify the
# project for which the documentation is generated. This name is used in the
# title of most generated pages and in a few other places.
# The default value is: My Project.
PROJECT_NAME = Strophe
# The PROJECT_NUMBER tag can be used to enter a project or revision number. This
# could be handy for archiving the generated documentation or if some version
# control system is used.
PROJECT_NUMBER = 0.14
# Using the PROJECT_BRIEF tag one can provide an optional one line description
# for a project that appears at the top of each page and should give viewers a
# quick idea about the purpose of the project. Keep the description short.
PROJECT_BRIEF = "XMPP client library"
# With the PROJECT_LOGO tag one can specify a logo or an icon that is included
# in the documentation. The maximum height of the logo should not exceed 55
# pixels and the maximum width should not exceed 200 pixels. Doxygen will copy
# the logo to the output directory.
PROJECT_LOGO =
# With the PROJECT_ICON tag one can specify an icon that is included in the tabs
# when the HTML document is shown. Doxygen will copy the logo to the output
# directory.
PROJECT_ICON =
# The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) path
# into which the generated documentation will be written. If a relative path is
# entered, it will be relative to the location where Doxygen was started. If
# left blank the current directory will be used.
OUTPUT_DIRECTORY = ./docs/
# If the CREATE_SUBDIRS tag is set to YES then Doxygen will create up to 4096
# sub-directories (in 2 levels) under the output directory of each output format
# and will distribute the generated files over these directories. Enabling this
# option can be useful when feeding Doxygen a huge amount of source files, where
# putting all generated files in the same directory would otherwise cause
# performance problems for the file system. Adapt CREATE_SUBDIRS_LEVEL to
# control the number of sub-directories.
# The default value is: NO.
CREATE_SUBDIRS = NO
# Controls the number of sub-directories that will be created when
# CREATE_SUBDIRS tag is set to YES. Level 0 represents 16 directories, and every
# level increment doubles the number of directories, resulting in 4096
# directories at level 8 which is the default and also the maximum value. The
# sub-directories are organized in 2 levels, the first level always has a fixed
# number of 16 directories.
# Minimum value: 0, maximum value: 8, default value: 8.
# This tag requires that the tag CREATE_SUBDIRS is set to YES.
CREATE_SUBDIRS_LEVEL = 8
# If the ALLOW_UNICODE_NAMES tag is set to YES, Doxygen will allow non-ASCII
# characters to appear in the names of generated files. If set to NO, non-ASCII
# characters will be escaped, for example _xE3_x81_x84 will be used for Unicode
# U+3044.
# The default value is: NO.
ALLOW_UNICODE_NAMES = NO
# The OUTPUT_LANGUAGE tag is used to specify the language in which all
# documentation generated by Doxygen is written. Doxygen will use this
# information to generate all constant output in the proper language.
# Possible values are: Afrikaans, Arabic, Armenian, Brazilian, Bulgarian,
# Catalan, Chinese, Chinese-Traditional, Croatian, Czech, Danish, Dutch, English
# (United States), Esperanto, Farsi (Persian), Finnish, French, German, Greek,
# Hindi, Hungarian, Indonesian, Italian, Japanese, Japanese-en (Japanese with
# English messages), Korean, Korean-en (Korean with English messages), Latvian,
# Lithuanian, Macedonian, Norwegian, Persian (Farsi), Polish, Portuguese,
# Romanian, Russian, Serbian, Serbian-Cyrillic, Slovak, Slovene, Spanish,
# Swedish, Turkish, Ukrainian and Vietnamese.
# The default value is: English.
OUTPUT_LANGUAGE = English
# If the BRIEF_MEMBER_DESC tag is set to YES, Doxygen will include brief member
# descriptions after the members that are listed in the file and class
# documentation (similar to Javadoc). Set to NO to disable this.
# The default value is: YES.
BRIEF_MEMBER_DESC = YES
# If the REPEAT_BRIEF tag is set to YES, Doxygen will prepend the brief
# description of a member or function before the detailed description
#
# Note: If both HIDE_UNDOC_MEMBERS and BRIEF_MEMBER_DESC are set to NO, the
# brief descriptions will be completely suppressed.
# The default value is: YES.
REPEAT_BRIEF = YES
# This tag implements a quasi-intelligent brief description abbreviator that is
# used to form the text in various listings. Each string in this list, if found
# as the leading text of the brief description, will be stripped from the text
# and the result, after processing the whole list, is used as the annotated
# text. Otherwise, the brief description is used as-is. If left blank, the
# following values are used ($name is automatically replaced with the name of
# the entity):The $name class, The $name widget, The $name file, is, provides,
# specifies, contains, represents, a, an and the.
ABBREVIATE_BRIEF = "The $name class" \
"The $name widget" \
"The $name file" \
is \
provides \
specifies \
contains \
represents \
a \
an \
the
# If the ALWAYS_DETAILED_SEC and REPEAT_BRIEF tags are both set to YES then
# Doxygen will generate a detailed section even if there is only a brief
# description.
# The default value is: NO.
ALWAYS_DETAILED_SEC = NO
# If the INLINE_INHERITED_MEMB tag is set to YES, Doxygen will show all
# inherited members of a class in the documentation of that class as if those
# members were ordinary class members. Constructors, destructors and assignment
# operators of the base classes will not be shown.
# The default value is: NO.
INLINE_INHERITED_MEMB = NO
# If the FULL_PATH_NAMES tag is set to YES, Doxygen will prepend the full path
# before files name in the file list and in the header files. If set to NO the
# shortest path that makes the file name unique will be used
# The default value is: YES.
FULL_PATH_NAMES = NO
# The STRIP_FROM_PATH tag can be used to strip a user-defined part of the path.
# Stripping is only done if one of the specified strings matches the left-hand
# part of the path. The tag can be used to show relative paths in the file list.
# If left blank the directory from which Doxygen is run is used as the path to
# strip.
#
# Note that you can specify absolute paths here, but also relative paths, which
# will be relative from the directory where Doxygen is started.
# This tag requires that the tag FULL_PATH_NAMES is set to YES.
STRIP_FROM_PATH =
# The STRIP_FROM_INC_PATH tag can be used to strip a user-defined part of the
# path mentioned in the documentation of a class, which tells the reader which
# header file to include in order to use a class. If left blank only the name of
# the header file containing the class definition is used. Otherwise one should
# specify the list of include paths that are normally passed to the compiler
# using the -I flag.
STRIP_FROM_INC_PATH =
# If the SHORT_NAMES tag is set to YES, Doxygen will generate much shorter (but
# less readable) file names. This can be useful if your file system doesn't
# support long names like on DOS, Mac, or CD-ROM.
# The default value is: NO.
SHORT_NAMES = NO
# If the JAVADOC_AUTOBRIEF tag is set to YES then Doxygen will interpret the
# first line (until the first dot, question mark or exclamation mark) of a
# Javadoc-style comment as the brief description. If set to NO, the Javadoc-
# style will behave just like regular Qt-style comments (thus requiring an
# explicit @brief command for a brief description.)
# The default value is: NO.
JAVADOC_AUTOBRIEF = YES
# If the JAVADOC_BANNER tag is set to YES then Doxygen will interpret a line
# such as
# /***************
# as being the beginning of a Javadoc-style comment "banner". If set to NO, the
# Javadoc-style will behave just like regular comments and it will not be
# interpreted by Doxygen.
# The default value is: NO.
JAVADOC_BANNER = NO
# If the QT_AUTOBRIEF tag is set to YES then Doxygen will interpret the first
# line (until the first dot, question mark or exclamation mark) of a Qt-style
# comment as the brief description. If set to NO, the Qt-style will behave just
# like regular Qt-style comments (thus requiring an explicit \brief command for
# a brief description.)
# The default value is: NO.
QT_AUTOBRIEF = NO
# The MULTILINE_CPP_IS_BRIEF tag can be set to YES to make Doxygen treat a
# multi-line C++ special comment block (i.e. a block of //! or /// comments) as
# a brief description. This used to be the default behavior. The new default is
# to treat a multi-line C++ comment block as a detailed description. Set this
# tag to YES if you prefer the old behavior instead.
#
# Note that setting this tag to YES also means that rational rose comments are
# not recognized any more.
# The default value is: NO.
MULTILINE_CPP_IS_BRIEF = NO
# By default Python docstrings are displayed as preformatted text and Doxygen's
# special commands cannot be used. By setting PYTHON_DOCSTRING to NO the
# Doxygen's special commands can be used and the contents of the docstring
# documentation blocks is shown as Doxygen documentation.
# The default value is: YES.
PYTHON_DOCSTRING = YES
# If the INHERIT_DOCS tag is set to YES then an undocumented member inherits the
# documentation from any documented member that it re-implements.
# The default value is: YES.
INHERIT_DOCS = YES
# If the SEPARATE_MEMBER_PAGES tag is set to YES then Doxygen will produce a new
# page for each member. If set to NO, the documentation of a member will be part
# of the file/class/namespace that contains it.
# The default value is: NO.
SEPARATE_MEMBER_PAGES = NO
# The TAB_SIZE tag can be used to set the number of spaces in a tab. Doxygen
# uses this value to replace tabs by spaces in code fragments.
# Minimum value: 1, maximum value: 16, default value: 4.
TAB_SIZE = 8
# This tag can be used to specify a number of aliases that act as commands in
# the documentation. An alias has the form:
# name=value
# For example adding
# "sideeffect=@par Side Effects:^^"
# will allow you to put the command \sideeffect (or @sideeffect) in the
# documentation, which will result in a user-defined paragraph with heading
# "Side Effects:". Note that you cannot put \n's in the value part of an alias
# to insert newlines (in the resulting output). You can put ^^ in the value part
# of an alias to insert a newline as if a physical newline was in the original
# file. When you need a literal { or } or , in the value part of an alias you
# have to escape them by means of a backslash (\), this can lead to conflicts
# with the commands \{ and \} for these it is advised to use the version @{ and
# @} or use a double escape (\\{ and \\})
ALIASES =
# Set the OPTIMIZE_OUTPUT_FOR_C tag to YES if your project consists of C sources
# only. Doxygen will then generate output that is more tailored for C. For
# instance, some of the names that are used will be different. The list of all
# members will be omitted, etc.
# The default value is: NO.
OPTIMIZE_OUTPUT_FOR_C = YES
# Set the OPTIMIZE_OUTPUT_JAVA tag to YES if your project consists of Java or
# Python sources only. Doxygen will then generate output that is more tailored
# for that language. For instance, namespaces will be presented as packages,
# qualified scopes will look different, etc.
# The default value is: NO.
OPTIMIZE_OUTPUT_JAVA = NO
# Set the OPTIMIZE_FOR_FORTRAN tag to YES if your project consists of Fortran
# sources. Doxygen will then generate output that is tailored for Fortran.
# The default value is: NO.
OPTIMIZE_FOR_FORTRAN = NO
# Set the OPTIMIZE_OUTPUT_VHDL tag to YES if your project consists of VHDL
# sources. Doxygen will then generate output that is tailored for VHDL.
# The default value is: NO.
OPTIMIZE_OUTPUT_VHDL = NO
# Set the OPTIMIZE_OUTPUT_SLICE tag to YES if your project consists of Slice
# sources only. Doxygen will then generate output that is more tailored for that
# language. For instance, namespaces will be presented as modules, types will be
# separated into more groups, etc.
# The default value is: NO.
OPTIMIZE_OUTPUT_SLICE = NO
# Doxygen selects the parser to use depending on the extension of the files it
# parses. With this tag you can assign which parser to use for a given
# extension. Doxygen has a built-in mapping, but you can override or extend it
# using this tag. The format is ext=language, where ext is a file extension, and
# language is one of the parsers supported by Doxygen: IDL, Java, JavaScript,
# Csharp (C#), C, C++, Lex, D, PHP, md (Markdown), Objective-C, Python, Slice,
# VHDL, Fortran (fixed format Fortran: FortranFixed, free formatted Fortran:
# FortranFree, unknown formatted Fortran: Fortran. In the later case the parser
# tries to guess whether the code is fixed or free formatted code, this is the
# default for Fortran type files). For instance to make Doxygen treat .inc files
# as Fortran files (default is PHP), and .f files as C (default is Fortran),
# use: inc=Fortran f=C.
#
# Note: For files without extension you can use no_extension as a placeholder.
#
# Note that for custom extensions you also need to set FILE_PATTERNS otherwise
# the files are not read by Doxygen. When specifying no_extension you should add
# * to the FILE_PATTERNS.
#
# Note see also the list of default file extension mappings.
EXTENSION_MAPPING =
# If the MARKDOWN_SUPPORT tag is enabled then Doxygen pre-processes all comments
# according to the Markdown format, which allows for more readable
# documentation. See https://daringfireball.net/projects/markdown/ for details.
# The output of markdown processing is further processed by Doxygen, so you can
# mix Doxygen, HTML, and XML commands with Markdown formatting. Disable only in
# case of backward compatibilities issues.
# The default value is: YES.
MARKDOWN_SUPPORT = YES
# If the MARKDOWN_STRICT tag is enabled then Doxygen treats text in comments as
# Markdown formatted also in cases where Doxygen's native markup format
# conflicts with that of Markdown. This is only relevant in cases where
# backticks are used. Doxygen's native markup style allows a single quote to end
# a text fragment started with a backtick and then treat it as a piece of quoted
# text, whereas in Markdown such text fragment is treated as verbatim and only
# ends when a second matching backtick is found. Also, Doxygen's native markup
# format requires double quotes to be escaped when they appear in a backtick
# section, whereas this is not needed for Markdown.
# The default value is: YES.
# This tag requires that the tag MARKDOWN_SUPPORT is set to YES.
MARKDOWN_STRICT = YES
# When the TOC_INCLUDE_HEADINGS tag is set to a non-zero value, all headings up
# to that level are automatically included in the table of contents, even if
# they do not have an id attribute.
# Note: This feature currently applies only to Markdown headings.
# Minimum value: 0, maximum value: 99, default value: 6.
# This tag requires that the tag MARKDOWN_SUPPORT is set to YES.
TOC_INCLUDE_HEADINGS = 5
# The MARKDOWN_ID_STYLE tag can be used to specify the algorithm used to
# generate identifiers for the Markdown headings. Note: Every identifier is
# unique.
# Possible values are: DOXYGEN use a fixed 'autotoc_md' string followed by a
# sequence number starting at 0 and GITHUB use the lower case version of title
# with any whitespace replaced by '-' and punctuation characters removed.
# The default value is: DOXYGEN.
# This tag requires that the tag MARKDOWN_SUPPORT is set to YES.
MARKDOWN_ID_STYLE = DOXYGEN
# When enabled Doxygen tries to link words that correspond to documented
# classes, or namespaces to their corresponding documentation. Such a link can
# be prevented in individual cases by putting a % sign in front of the word or
# globally by setting AUTOLINK_SUPPORT to NO. Words listed in the
# AUTOLINK_IGNORE_WORDS tag are excluded from automatic linking.
# The default value is: YES.
AUTOLINK_SUPPORT = YES
# This tag specifies a list of words that, when matching the start of a word in
# the documentation, will suppress auto links generation, if it is enabled via
# AUTOLINK_SUPPORT. This list does not affect links explicitly created using #
# or the \link or \ref commands.
# This tag requires that the tag AUTOLINK_SUPPORT is set to YES.
AUTOLINK_IGNORE_WORDS =
# If you use STL classes (i.e. std::string, std::vector, etc.) but do not want
# to include (a tag file for) the STL sources as input, then you should set this
# tag to YES in order to let Doxygen match functions declarations and
# definitions whose arguments contain STL classes (e.g. func(std::string);
# versus func(std::string) {}). This also makes the inheritance and
# collaboration diagrams that involve STL classes more complete and accurate.
# The default value is: NO.
BUILTIN_STL_SUPPORT = NO
# If you use Microsoft's C++/CLI language, you should set this option to YES to
# enable parsing support.
# The default value is: NO.
CPP_CLI_SUPPORT = NO
# Set the SIP_SUPPORT tag to YES if your project consists of sip (see:
# https://www.riverbankcomputing.com/software) sources only. Doxygen will parse
# them like normal C++ but will assume all classes use public instead of private
# inheritance when no explicit protection keyword is present.
# The default value is: NO.
SIP_SUPPORT = NO
# For Microsoft's IDL there are propget and propput attributes to indicate
# getter and setter methods for a property. Setting this option to YES will make
# Doxygen to replace the get and set methods by a property in the documentation.
# This will only work if the methods are indeed getting or setting a simple
# type. If this is not the case, or you want to show the methods anyway, you
# should set this option to NO.
# The default value is: YES.
IDL_PROPERTY_SUPPORT = YES
# If member grouping is used in the documentation and the DISTRIBUTE_GROUP_DOC
# tag is set to YES then Doxygen will reuse the documentation of the first
# member in the group (if any) for the other members of the group. By default
# all members of a group must be documented explicitly.
# The default value is: NO.
DISTRIBUTE_GROUP_DOC = NO
# If one adds a struct or class to a group and this option is enabled, then also
# any nested class or struct is added to the same group. By default this option
# is disabled and one has to add nested compounds explicitly via \ingroup.
# The default value is: NO.
GROUP_NESTED_COMPOUNDS = NO
# Set the SUBGROUPING tag to YES to allow class member groups of the same type
# (for instance a group of public functions) to be put as a subgroup of that
# type (e.g. under the Public Functions section). Set it to NO to prevent
# subgrouping. Alternatively, this can be done per class using the
# \nosubgrouping command.
# The default value is: YES.
SUBGROUPING = YES
# When the INLINE_GROUPED_CLASSES tag is set to YES, classes, structs and unions
# are shown inside the group in which they are included (e.g. using \ingroup)
# instead of on a separate page (for HTML and Man pages) or section (for LaTeX
# and RTF).
#
# Note that this feature does not work in combination with
# SEPARATE_MEMBER_PAGES.
# The default value is: NO.
INLINE_GROUPED_CLASSES = NO
# When the INLINE_SIMPLE_STRUCTS tag is set to YES, structs, classes, and unions
# with only public data fields or simple typedef fields will be shown inline in
# the documentation of the scope in which they are defined (i.e. file,
# namespace, or group documentation), provided this scope is documented. If set
# to NO, structs, classes, and unions are shown on a separate page (for HTML and
# Man pages) or section (for LaTeX and RTF).
# The default value is: NO.
INLINE_SIMPLE_STRUCTS = NO
# When TYPEDEF_HIDES_STRUCT tag is enabled, a typedef of a struct, union, or
# enum is documented as struct, union, or enum with the name of the typedef. So
# typedef struct TypeS {} TypeT, will appear in the documentation as a struct
# with name TypeT. When disabled the typedef will appear as a member of a file,
# namespace, or class. And the struct will be named TypeS. This can typically be
# useful for C code in case the coding convention dictates that all compound
# types are typedef'ed and only the typedef is referenced, never the tag name.
# The default value is: NO.
TYPEDEF_HIDES_STRUCT = YES
# The size of the symbol lookup cache can be set using LOOKUP_CACHE_SIZE. This
# cache is used to resolve symbols given their name and scope. Since this can be
# an expensive process and often the same symbol appears multiple times in the
# code, Doxygen keeps a cache of pre-resolved symbols. If the cache is too small
# Doxygen will become slower. If the cache is too large, memory is wasted. The
# cache size is given by this formula: 2^(16+LOOKUP_CACHE_SIZE). The valid range
# is 0..9, the default is 0, corresponding to a cache size of 2^16=65536
# symbols. At the end of a run Doxygen will report the cache usage and suggest
# the optimal cache size from a speed point of view.
# Minimum value: 0, maximum value: 9, default value: 0.
LOOKUP_CACHE_SIZE = 0
# The NUM_PROC_THREADS specifies the number of threads Doxygen is allowed to use
# during processing. When set to 0 Doxygen will based this on the number of
# cores available in the system. You can set it explicitly to a value larger
# than 0 to get more control over the balance between CPU load and processing
# speed. At this moment only the input processing can be done using multiple
# threads. Since this is still an experimental feature the default is set to 1,
# which effectively disables parallel processing. Please report any issues you
# encounter. Generating dot graphs in parallel is controlled by the
# DOT_NUM_THREADS setting.
# Minimum value: 0, maximum value: 512, default value: 1.
NUM_PROC_THREADS = 1
# If the TIMESTAMP tag is set different from NO then each generated page will
# contain the date or date and time when the page was generated. Setting this to
# NO can help when comparing the output of multiple runs.
# Possible values are: YES, NO, DATETIME and DATE.
# The default value is: NO.
TIMESTAMP = YES
#---------------------------------------------------------------------------
# Build related configuration options
#---------------------------------------------------------------------------
# If the EXTRACT_ALL tag is set to YES, Doxygen will assume all entities in
# documentation are documented, even if no documentation was available. Private
# class members and static file members will be hidden unless the
# EXTRACT_PRIVATE respectively EXTRACT_STATIC tags are set to YES.
# Note: This will also disable the warnings about undocumented members that are
# normally produced when WARNINGS is set to YES.
# The default value is: NO.
EXTRACT_ALL = YES
# If the EXTRACT_PRIVATE tag is set to YES, all private members of a class will
# be included in the documentation.
# The default value is: NO.
EXTRACT_PRIVATE = YES
# If the EXTRACT_PRIV_VIRTUAL tag is set to YES, documented private virtual
# methods of a class will be included in the documentation.
# The default value is: NO.
EXTRACT_PRIV_VIRTUAL = NO
# If the EXTRACT_PACKAGE tag is set to YES, all members with package or internal
# scope will be included in the documentation.
# The default value is: NO.
EXTRACT_PACKAGE = NO
# If the EXTRACT_STATIC tag is set to YES, all static members of a file will be
# included in the documentation.
# The default value is: NO.
EXTRACT_STATIC = YES
# If the EXTRACT_LOCAL_CLASSES tag is set to YES, classes (and structs) defined
# locally in source files will be included in the documentation. If set to NO,
# only classes defined in header files are included. Does not have any effect
# for Java sources.
# The default value is: YES.
EXTRACT_LOCAL_CLASSES = YES
# This flag is only useful for Objective-C code. If set to YES, local methods,
# which are defined in the implementation section but not in the interface are
# included in the documentation. If set to NO, only methods in the interface are
# included.
# The default value is: NO.
EXTRACT_LOCAL_METHODS = YES
# If this flag is set to YES, the members of anonymous namespaces will be
# extracted and appear in the documentation as a namespace called
# 'anonymous_namespace{file}', where file will be replaced with the base name of
# the file that contains the anonymous namespace. By default anonymous namespace
# are hidden.
# The default value is: NO.
EXTRACT_ANON_NSPACES = YES
# If this flag is set to YES, the name of an unnamed parameter in a declaration
# will be determined by the corresponding definition. By default unnamed
# parameters remain unnamed in the output.
# The default value is: YES.
RESOLVE_UNNAMED_PARAMS = YES
# If the HIDE_UNDOC_MEMBERS tag is set to YES, Doxygen will hide all
# undocumented members inside documented classes or files. If set to NO these
# members will be included in the various overviews, but no documentation
# section is generated. This option has no effect if EXTRACT_ALL is enabled.
# The default value is: NO.
HIDE_UNDOC_MEMBERS = NO
# If the HIDE_UNDOC_CLASSES tag is set to YES, Doxygen will hide all
# undocumented classes that are normally visible in the class hierarchy. If set
# to NO, these classes will be included in the various overviews. This option
# will also hide undocumented C++ concepts if enabled. This option has no effect
# if EXTRACT_ALL is enabled.
# The default value is: NO.
HIDE_UNDOC_CLASSES = NO
# If the HIDE_UNDOC_NAMESPACES tag is set to YES, Doxygen will hide all
# undocumented namespaces that are normally visible in the namespace hierarchy.
# If set to NO, these namespaces will be included in the various overviews. This
# option has no effect if EXTRACT_ALL is enabled.
# The default value is: YES.
HIDE_UNDOC_NAMESPACES = YES
# If the HIDE_FRIEND_COMPOUNDS tag is set to YES, Doxygen will hide all friend
# declarations. If set to NO, these declarations will be included in the
# documentation.
# The default value is: NO.
HIDE_FRIEND_COMPOUNDS = NO
# If the HIDE_IN_BODY_DOCS tag is set to YES, Doxygen will hide any
# documentation blocks found inside the body of a function. If set to NO, these
# blocks will be appended to the function's detailed documentation block.
# The default value is: NO.
HIDE_IN_BODY_DOCS = NO
# The INTERNAL_DOCS tag determines if documentation that is typed after a
# \internal command is included. If the tag is set to NO then the documentation
# will be excluded. Set it to YES to include the internal documentation.
# The default value is: NO.
INTERNAL_DOCS = NO
# With the correct setting of option CASE_SENSE_NAMES Doxygen will better be
# able to match the capabilities of the underlying filesystem. In case the
# filesystem is case sensitive (i.e. it supports files in the same directory
# whose names only differ in casing), the option must be set to YES to properly
# deal with such files in case they appear in the input. For filesystems that
# are not case sensitive the option should be set to NO to properly deal with
# output files written for symbols that only differ in casing, such as for two
# classes, one named CLASS and the other named Class, and to also support
# references to files without having to specify the exact matching casing. On
# Windows (including Cygwin) and macOS, users should typically set this option
# to NO, whereas on Linux or other Unix flavors it should typically be set to
# YES.
# Possible values are: SYSTEM, NO and YES.
# The default value is: SYSTEM.
CASE_SENSE_NAMES = NO
# If the HIDE_SCOPE_NAMES tag is set to NO then Doxygen will show members with
# their full class and namespace scopes in the documentation. If set to YES, the
# scope will be hidden.
# The default value is: NO.
HIDE_SCOPE_NAMES = NO
# If the HIDE_COMPOUND_REFERENCE tag is set to NO (default) then Doxygen will
# append additional text to a page's title, such as Class Reference. If set to
# YES the compound reference will be hidden.
# The default value is: NO.
HIDE_COMPOUND_REFERENCE= NO
# If the SHOW_HEADERFILE tag is set to YES then the documentation for a class
# will show which file needs to be included to use the class.
# The default value is: YES.
SHOW_HEADERFILE = YES
# If the SHOW_INCLUDE_FILES tag is set to YES then Doxygen will put a list of
# the files that are included by a file in the documentation of that file.
# The default value is: YES.
SHOW_INCLUDE_FILES = NO
# If the SHOW_GROUPED_MEMB_INC tag is set to YES then Doxygen will add for each
# grouped member an include statement to the documentation, telling the reader
# which file to include in order to use the member.
# The default value is: NO.
SHOW_GROUPED_MEMB_INC = NO
# If the FORCE_LOCAL_INCLUDES tag is set to YES then Doxygen will list include
# files with double quotes in the documentation rather than with sharp brackets.
# The default value is: NO.
FORCE_LOCAL_INCLUDES = NO
# If the INLINE_INFO tag is set to YES then a tag [inline] is inserted in the
# documentation for inline members.
# The default value is: YES.
INLINE_INFO = YES
# If the SORT_MEMBER_DOCS tag is set to YES then Doxygen will sort the
# (detailed) documentation of file and class members alphabetically by member
# name. If set to NO, the members will appear in declaration order.
# The default value is: YES.
SORT_MEMBER_DOCS = NO
# If the SORT_BRIEF_DOCS tag is set to YES then Doxygen will sort the brief
# descriptions of file, namespace and class members alphabetically by member
# name. If set to NO, the members will appear in declaration order. Note that
# this will also influence the order of the classes in the class list.
# The default value is: NO.
SORT_BRIEF_DOCS = NO
# If the SORT_MEMBERS_CTORS_1ST tag is set to YES then Doxygen will sort the
# (brief and detailed) documentation of class members so that constructors and
# destructors are listed first. If set to NO the constructors will appear in the
# respective orders defined by SORT_BRIEF_DOCS and SORT_MEMBER_DOCS.
# Note: If SORT_BRIEF_DOCS is set to NO this option is ignored for sorting brief
# member documentation.
# Note: If SORT_MEMBER_DOCS is set to NO this option is ignored for sorting
# detailed member documentation.
# The default value is: NO.
SORT_MEMBERS_CTORS_1ST = NO
# If the SORT_GROUP_NAMES tag is set to YES then Doxygen will sort the hierarchy
# of group names into alphabetical order. If set to NO the group names will
# appear in their defined order.
# The default value is: NO.
SORT_GROUP_NAMES = NO
# If the SORT_BY_SCOPE_NAME tag is set to YES, the class list will be sorted by
# fully-qualified names, including namespaces. If set to NO, the class list will
# be sorted only by class name, not including the namespace part.
# Note: This option is not very useful if HIDE_SCOPE_NAMES is set to YES.
# Note: This option applies only to the class list, not to the alphabetical
# list.
# The default value is: NO.
SORT_BY_SCOPE_NAME = NO
# If the STRICT_PROTO_MATCHING option is enabled and Doxygen fails to do proper
# type resolution of all parameters of a function it will reject a match between
# the prototype and the implementation of a member function even if there is
# only one candidate or it is obvious which candidate to choose by doing a
# simple string match. By disabling STRICT_PROTO_MATCHING Doxygen will still
# accept a match between prototype and implementation in such cases.
# The default value is: NO.
STRICT_PROTO_MATCHING = NO
# The GENERATE_TODOLIST tag can be used to enable (YES) or disable (NO) the todo
# list. This list is created by putting \todo commands in the documentation.
# The default value is: YES.
GENERATE_TODOLIST = YES
# The GENERATE_TESTLIST tag can be used to enable (YES) or disable (NO) the test
# list. This list is created by putting \test commands in the documentation.
# The default value is: YES.
GENERATE_TESTLIST = YES
# The GENERATE_BUGLIST tag can be used to enable (YES) or disable (NO) the bug
# list. This list is created by putting \bug commands in the documentation.
# The default value is: YES.
GENERATE_BUGLIST = YES
# The GENERATE_DEPRECATEDLIST tag can be used to enable (YES) or disable (NO)
# the deprecated list. This list is created by putting \deprecated commands in
# the documentation.
# The default value is: YES.
GENERATE_DEPRECATEDLIST= YES
# The GENERATE_REQUIREMENTS tag can be used to enable (YES) or disable (NO) the
# requirements page. When enabled, this page is automatically created when at
# least one comment block with a \requirement command appears in the input.
# The default value is: YES.
GENERATE_REQUIREMENTS = YES
# The REQ_TRACEABILITY_INFO tag controls if traceability information is shown on
# the requirements page (only relevant when using \requirement comment blocks).
# The setting NO will disable the traceablility information altogether. The
# setting UNSATISFIED_ONLY will show a list of requirements that are missing a
# satisfies relation (through the command: \satisfies). Similarly the setting
# UNVERIFIED_ONLY will show a list of requirements that are missing a verifies
# relation (through the command: \verifies). Setting the tag to YES (the
# default) will show both lists if applicable.
# Possible values are: YES, NO, UNSATISFIED_ONLY and UNVERIFIED_ONLY.
# The default value is: YES.
# This tag requires that the tag GENERATE_REQUIREMENTS is set to YES.
REQ_TRACEABILITY_INFO = YES
# The ENABLED_SECTIONS tag can be used to enable conditional documentation
# sections, marked by \if <section_label> ... \endif and \cond <section_label>
# ... \endcond blocks.
ENABLED_SECTIONS =
# The MAX_INITIALIZER_LINES tag determines the maximum number of lines that the
# initial value of a variable or macro / define can have for it to appear in the
# documentation. If the initializer consists of more lines than specified here
# it will be hidden. Use a value of 0 to hide initializers completely. The
# appearance of the value of individual variables and macros / defines can be
# controlled using \showinitializer or \hideinitializer command in the
# documentation regardless of this setting.
# Minimum value: 0, maximum value: 10000, default value: 30.
MAX_INITIALIZER_LINES = 30
# Set the SHOW_USED_FILES tag to NO to disable the list of files generated at
# the bottom of the documentation of classes and structs. If set to YES, the
# list will mention the files that were used to generate the documentation.
# The default value is: YES.
SHOW_USED_FILES = YES
# Set the SHOW_FILES tag to NO to disable the generation of the Files page. This
# will remove the Files entry from the Quick Index and from the Folder Tree View
# (if specified).
# The default value is: YES.
SHOW_FILES = YES
# Set the SHOW_NAMESPACES tag to NO to disable the generation of the Namespaces
# page. This will remove the Namespaces entry from the Quick Index and from the
# Folder Tree View (if specified).
# The default value is: YES.
SHOW_NAMESPACES = YES
# The FILE_VERSION_FILTER tag can be used to specify a program or script that
# Doxygen should invoke to get the current version for each file (typically from
# the version control system). Doxygen will invoke the program by executing (via
# popen()) the command command input-file, where command is the value of the
# FILE_VERSION_FILTER tag, and input-file is the name of an input file provided
# by Doxygen. Whatever the program writes to standard output is used as the file
# version. For an example see the documentation.
FILE_VERSION_FILTER =
# The LAYOUT_FILE tag can be used to specify a layout file which will be parsed
# by Doxygen. The layout file controls the global structure of the generated
# output files in an output format independent way. To create the layout file
# that represents Doxygen's defaults, run Doxygen with the -l option. You can
# optionally specify a file name after the option, if omitted DoxygenLayout.xml
# will be used as the name of the layout file. See also section "Changing the
# layout of pages" for information.
#
# Note that if you run Doxygen from a directory containing a file called
# DoxygenLayout.xml, Doxygen will parse it automatically even if the LAYOUT_FILE
# tag is left empty.
LAYOUT_FILE =
# The CITE_BIB_FILES tag can be used to specify one or more bib files containing
# the reference definitions. This must be a list of .bib files. The .bib
# extension is automatically appended if omitted. This requires the bibtex tool
# to be installed. See also https://en.wikipedia.org/wiki/BibTeX for more info.
# For LaTeX the style of the bibliography can be controlled using
# LATEX_BIB_STYLE. To use this feature you need bibtex and perl available in the
# search path. See also \cite for info how to create references.
CITE_BIB_FILES =
# The EXTERNAL_TOOL_PATH tag can be used to extend the search path (PATH
# environment variable) so that external tools such as latex and gs can be
# found.
# Note: Directories specified with EXTERNAL_TOOL_PATH are added in front of the
# path already specified by the PATH variable, and are added in the order
# specified.
# Note: This option is particularly useful for macOS version 14 (Sonoma) and
# higher, when running Doxygen from Doxywizard, because in this case any user-
# defined changes to the PATH are ignored. A typical example on macOS is to set
# EXTERNAL_TOOL_PATH = /Library/TeX/texbin /usr/local/bin
# together with the standard path, the full search path used by doxygen when
# launching external tools will then become
# PATH=/Library/TeX/texbin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin
EXTERNAL_TOOL_PATH =
#---------------------------------------------------------------------------
# Configuration options related to warning and progress messages
#---------------------------------------------------------------------------
# The QUIET tag can be used to turn on/off the messages that are generated to
# standard output by Doxygen. If QUIET is set to YES this implies that the
# messages are off.
# The default value is: NO.
QUIET = NO
# The WARNINGS tag can be used to turn on/off the warning messages that are
# generated to standard error (stderr) by Doxygen. If WARNINGS is set to YES
# this implies that the warnings are on.
#
# Tip: Turn warnings on while writing the documentation.
# The default value is: YES.
WARNINGS = YES
# If the WARN_IF_UNDOCUMENTED tag is set to YES then Doxygen will generate
# warnings for undocumented members. If EXTRACT_ALL is set to YES then this flag
# will automatically be disabled.
# The default value is: YES.
WARN_IF_UNDOCUMENTED = YES
# If the WARN_IF_DOC_ERROR tag is set to YES, Doxygen will generate warnings for
# potential errors in the documentation, such as documenting some parameters in
# a documented function twice, or documenting parameters that don't exist or
# using markup commands wrongly.
# The default value is: YES.
WARN_IF_DOC_ERROR = YES
# If WARN_IF_INCOMPLETE_DOC is set to YES, Doxygen will warn about incomplete
# function parameter documentation. If set to NO, Doxygen will accept that some
# parameters have no documentation without warning.
# The default value is: YES.
WARN_IF_INCOMPLETE_DOC = YES
# This WARN_NO_PARAMDOC option can be enabled to get warnings for functions that
# are documented, but have no documentation for their parameters or return
# value. If set to NO, Doxygen will only warn about wrong parameter
# documentation, but not about the absence of documentation. If EXTRACT_ALL is
# set to YES then this flag will automatically be disabled. See also
# WARN_IF_INCOMPLETE_DOC
# The default value is: NO.
WARN_NO_PARAMDOC = YES
# If WARN_IF_UNDOC_ENUM_VAL option is set to YES, Doxygen will warn about
# undocumented enumeration values. If set to NO, Doxygen will accept
# undocumented enumeration values. If EXTRACT_ALL is set to YES then this flag
# will automatically be disabled.
# The default value is: NO.
WARN_IF_UNDOC_ENUM_VAL = NO
# If WARN_LAYOUT_FILE option is set to YES, Doxygen will warn about issues found
# while parsing the user defined layout file, such as missing or wrong elements.
# See also LAYOUT_FILE for details. If set to NO, problems with the layout file
# will be suppressed.
# The default value is: YES.
WARN_LAYOUT_FILE = YES
# If the WARN_AS_ERROR tag is set to YES then Doxygen will immediately stop when
# a warning is encountered. If the WARN_AS_ERROR tag is set to FAIL_ON_WARNINGS
# then Doxygen will continue running as if WARN_AS_ERROR tag is set to NO, but
# at the end of the Doxygen process Doxygen will return with a non-zero status.
# If the WARN_AS_ERROR tag is set to FAIL_ON_WARNINGS_PRINT then Doxygen behaves
# like FAIL_ON_WARNINGS but in case no WARN_LOGFILE is defined Doxygen will not
# write the warning messages in between other messages but write them at the end
# of a run, in case a WARN_LOGFILE is defined the warning messages will be
# besides being in the defined file also be shown at the end of a run, unless
# the WARN_LOGFILE is defined as - i.e. standard output (stdout) in that case
# the behavior will remain as with the setting FAIL_ON_WARNINGS.
# Possible values are: NO, YES, FAIL_ON_WARNINGS and FAIL_ON_WARNINGS_PRINT.
# The default value is: NO.
WARN_AS_ERROR = NO
# The WARN_FORMAT tag determines the format of the warning messages that Doxygen
# can produce. The string should contain the $file, $line, and $text tags, which
# will be replaced by the file and line number from which the warning originated
# and the warning text. Optionally the format may contain $version, which will
# be replaced by the version of the file (if it could be obtained via
# FILE_VERSION_FILTER)
# See also: WARN_LINE_FORMAT
# The default value is: $file:$line: $text.
WARN_FORMAT = "$file:$line: $text"
# In the $text part of the WARN_FORMAT command it is possible that a reference
# to a more specific place is given. To make it easier to jump to this place
# (outside of Doxygen) the user can define a custom "cut" / "paste" string.
# Example:
# WARN_LINE_FORMAT = "'vi $file +$line'"
# See also: WARN_FORMAT
# The default value is: at line $line of file $file.
WARN_LINE_FORMAT = "at line $line of file $file"
# The WARN_LOGFILE tag can be used to specify a file to which warning and error
# messages should be written. If left blank the output is written to standard
# error (stderr). In case the file specified cannot be opened for writing the
# warning and error messages are written to standard error. When as file - is
# specified the warning and error messages are written to standard output
# (stdout).
WARN_LOGFILE =
#---------------------------------------------------------------------------
# Configuration options related to the input files
#---------------------------------------------------------------------------
# The INPUT tag is used to specify the files and/or directories that contain
# documented source files. You may enter file names like myfile.cpp or
# directories like /usr/src/myproject. Separate the files or directories with
# spaces. See also FILE_PATTERNS and EXTENSION_MAPPING
# Note: If this tag is empty the current directory is searched.
INPUT = $(SRCDIR)
# This tag can be used to specify the character encoding of the source files
# that Doxygen parses. Internally Doxygen uses the UTF-8 encoding. Doxygen uses
# libiconv (or the iconv built into libc) for the transcoding. See the libiconv
# documentation (see:
# https://www.gnu.org/software/libiconv/) for the list of possible encodings.
# See also: INPUT_FILE_ENCODING
# The default value is: UTF-8.
INPUT_ENCODING = UTF-8
# This tag can be used to specify the character encoding of the source files
# that Doxygen parses. The INPUT_FILE_ENCODING tag can be used to specify
# character encoding on a per file pattern basis. Doxygen will compare the file
# name with each pattern and apply the encoding instead of the default
# INPUT_ENCODING if there is a match. The character encodings are a list of the
# form: pattern=encoding (like *.php=ISO-8859-1).
# See also: INPUT_ENCODING for further information on supported encodings.
INPUT_FILE_ENCODING =
# If the value of the INPUT tag contains directories, you can use the
# FILE_PATTERNS tag to specify one or more wildcard patterns (like *.cpp and
# *.h) to filter out the source-files in the directories.
#
# Note that for custom extensions or not directly supported extensions you also
# need to set EXTENSION_MAPPING for the extension otherwise the files are not
# read by Doxygen.
#
# Note the list of default checked file patterns might differ from the list of
# default file extension mappings.
#
# If left blank the following patterns are tested:*.c, *.cc, *.cxx, *.cxxm,
# *.cpp, *.cppm, *.ccm, *.c++, *.c++m, *.java, *.ii, *.ixx, *.ipp, *.i++, *.inl,
# *.idl, *.ddl, *.odl, *.h, *.hh, *.hxx, *.hpp, *.h++, *.l, *.cs, *.d, *.php,
# *.php4, *.php5, *.phtml, *.inc, *.m, *.markdown, *.md, *.mm, *.dox (to be
# provided as Doxygen C comment), *.py, *.pyw, *.f90, *.f95, *.f03, *.f08,
# *.f18, *.f, *.for, *.vhd, *.vhdl, *.ucf, *.qsf and *.ice.
FILE_PATTERNS = *.c \
*.h
# The RECURSIVE tag can be used to specify whether or not subdirectories should
# be searched for input files as well.
# The default value is: NO.
RECURSIVE = YES
# The EXCLUDE tag can be used to specify files and/or directories that should be
# excluded from the INPUT source files. This way you can easily exclude a
# subdirectory from a directory tree whose root is specified with the INPUT tag.
#
# Note that relative paths are relative to the directory from which Doxygen is
# run.
EXCLUDE = examples \
tests
# The EXCLUDE_SYMLINKS tag can be used to select whether or not files or
# directories that are symbolic links (a Unix file system feature) are excluded
# from the input.
# The default value is: NO.
EXCLUDE_SYMLINKS = NO
# If the value of the INPUT tag contains directories, you can use the
# EXCLUDE_PATTERNS tag to specify one or more wildcard patterns to exclude
# certain files from those directories.
#
# Note that the wildcards are matched against the file with absolute path, so to
# exclude all test directories for example use the pattern */test/*
EXCLUDE_PATTERNS = .svn
# The EXCLUDE_SYMBOLS tag can be used to specify one or more symbol names
# (namespaces, classes, functions, etc.) that should be excluded from the
# output. The symbol name can be a fully qualified name, a word, or if the
# wildcard * is used, a substring. Examples: ANamespace, AClass,
# ANamespace::AClass, ANamespace::*Test
EXCLUDE_SYMBOLS =
# The EXAMPLE_PATH tag can be used to specify one or more files or directories
# that contain example code fragments that are included (see the \include
# command).
EXAMPLE_PATH =
# If the value of the EXAMPLE_PATH tag contains directories, you can use the
# EXAMPLE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp and
# *.h) to filter out the source-files in the directories. If left blank all
# files are included.
EXAMPLE_PATTERNS = *
# If the EXAMPLE_RECURSIVE tag is set to YES then subdirectories will be
# searched for input files to be used with the \include or \dontinclude commands
# irrespective of the value of the RECURSIVE tag.
# The default value is: NO.
EXAMPLE_RECURSIVE = NO
# The IMAGE_PATH tag can be used to specify one or more files or directories
# that contain images that are to be included in the documentation (see the
# \image command).
IMAGE_PATH =
# The INPUT_FILTER tag can be used to specify a program that Doxygen should
# invoke to filter for each input file. Doxygen will invoke the filter program
# by executing (via popen()) the command:
#
# <filter> <input-file>
#
# where <filter> is the value of the INPUT_FILTER tag, and <input-file> is the
# name of an input file. Doxygen will then use the output that the filter
# program writes to standard output. If FILTER_PATTERNS is specified, this tag
# will be ignored.
#
# Note that the filter must not add or remove lines; it is applied before the
# code is scanned, but not when the output code is generated. If lines are added
# or removed, the anchors will not be placed correctly.
#
# Note that Doxygen will use the data processed and written to standard output
# for further processing, therefore nothing else, like debug statements or used
# commands (so in case of a Windows batch file always use @echo OFF), should be
# written to standard output.
#
# Note that for custom extensions or not directly supported extensions you also
# need to set EXTENSION_MAPPING for the extension otherwise the files are not
# properly processed by Doxygen.
INPUT_FILTER =
# The FILTER_PATTERNS tag can be used to specify filters on a per file pattern
# basis. Doxygen will compare the file name with each pattern and apply the
# filter if there is a match. The filters are a list of the form: pattern=filter
# (like *.cpp=my_cpp_filter). See INPUT_FILTER for further information on how
# filters are used. If the FILTER_PATTERNS tag is empty or if none of the
# patterns match the file name, INPUT_FILTER is applied.
#
# Note that for custom extensions or not directly supported extensions you also
# need to set EXTENSION_MAPPING for the extension otherwise the files are not
# properly processed by Doxygen.
FILTER_PATTERNS =
# If the FILTER_SOURCE_FILES tag is set to YES, the input filter (if set using
# INPUT_FILTER) will also be used to filter the input files that are used for
# producing the source files to browse (i.e. when SOURCE_BROWSER is set to YES).
# The default value is: NO.
FILTER_SOURCE_FILES = NO
# The FILTER_SOURCE_PATTERNS tag can be used to specify source filters per file
# pattern. A pattern will override the setting for FILTER_PATTERN (if any) and
# it is also possible to disable source filtering for a specific pattern using
# *.ext= (so without naming a filter).
# This tag requires that the tag FILTER_SOURCE_FILES is set to YES.
FILTER_SOURCE_PATTERNS =
# If the USE_MDFILE_AS_MAINPAGE tag refers to the name of a markdown file that
# is part of the input, its contents will be placed on the main page
# (index.html). This can be useful if you have a project on for instance GitHub
# and want to reuse the introduction page also for the Doxygen output.
USE_MDFILE_AS_MAINPAGE =
# If the IMPLICIT_DIR_DOCS tag is set to YES, any README.md file found in sub-
# directories of the project's root, is used as the documentation for that sub-
# directory, except when the README.md starts with a \dir, \page or \mainpage
# command. If set to NO, the README.md file needs to start with an explicit \dir
# command in order to be used as directory documentation.
# The default value is: YES.
IMPLICIT_DIR_DOCS = YES
# The Fortran standard specifies that for fixed formatted Fortran code all
# characters from position 72 are to be considered as comment. A common
# extension is to allow longer lines before the automatic comment starts. The
# setting FORTRAN_COMMENT_AFTER will also make it possible that longer lines can
# be processed before the automatic comment starts.
# Minimum value: 7, maximum value: 10000, default value: 72.
FORTRAN_COMMENT_AFTER = 72
#---------------------------------------------------------------------------
# Configuration options related to source browsing
#---------------------------------------------------------------------------
# If the SOURCE_BROWSER tag is set to YES then a list of source files will be
# generated. Documented entities will be cross-referenced with these sources.
#
# Note: To get rid of all source code in the generated output, make sure that
# also VERBATIM_HEADERS is set to NO.
# The default value is: NO.
SOURCE_BROWSER = NO
# Setting the INLINE_SOURCES tag to YES will include the body of functions,
# multi-line macros, enums or list initialized variables directly into the
# documentation.
# The default value is: NO.
INLINE_SOURCES = NO
# Setting the STRIP_CODE_COMMENTS tag to YES will instruct Doxygen to hide any
# special comment blocks from generated source code fragments. Normal C, C++ and
# Fortran comments will always remain visible.
# The default value is: YES.
STRIP_CODE_COMMENTS = YES
# If the REFERENCED_BY_RELATION tag is set to YES then for each documented
# entity all documented functions referencing it will be listed.
# The default value is: NO.
REFERENCED_BY_RELATION = NO
# If the REFERENCES_RELATION tag is set to YES then for each documented function
# all documented entities called/used by that function will be listed.
# The default value is: NO.
REFERENCES_RELATION = NO
# If the REFERENCES_LINK_SOURCE tag is set to YES and SOURCE_BROWSER tag is set
# to YES then the hyperlinks from functions in REFERENCES_RELATION and
# REFERENCED_BY_RELATION lists will link to the source code. Otherwise they will
# link to the documentation.
# The default value is: YES.
REFERENCES_LINK_SOURCE = YES
# If SOURCE_TOOLTIPS is enabled (the default) then hovering a hyperlink in the
# source code will show a tooltip with additional information such as prototype,
# brief description and links to the definition and documentation. Since this
# will make the HTML file larger and loading of large files a bit slower, you
# can opt to disable this feature.
# The default value is: YES.
# This tag requires that the tag SOURCE_BROWSER is set to YES.
SOURCE_TOOLTIPS = YES
# If the USE_HTAGS tag is set to YES then the references to source code will
# point to the HTML generated by the htags(1) tool instead of Doxygen built-in
# source browser. The htags tool is part of GNU's global source tagging system
# (see https://www.gnu.org/software/global/global.html). You will need version
# 4.8.6 or higher.
#
# To use it do the following:
# - Install the latest version of global
# - Enable SOURCE_BROWSER and USE_HTAGS in the configuration file
# - Make sure the INPUT points to the root of the source tree
# - Run doxygen as normal
#
# Doxygen will invoke htags (and that will in turn invoke gtags), so these
# tools must be available from the command line (i.e. in the search path).
#
# The result: instead of the source browser generated by Doxygen, the links to
# source code will now point to the output of htags.
# The default value is: NO.
# This tag requires that the tag SOURCE_BROWSER is set to YES.
USE_HTAGS = NO
# If the VERBATIM_HEADERS tag is set the YES then Doxygen will generate a
# verbatim copy of the header file for each class for which an include is
# specified. Set to NO to disable this.
# See also: Section \class.
# The default value is: YES.
VERBATIM_HEADERS = NO
#---------------------------------------------------------------------------
# Configuration options related to the alphabetical class index
#---------------------------------------------------------------------------
# If the ALPHABETICAL_INDEX tag is set to YES, an alphabetical index of all
# compounds will be generated. Enable this if the project contains a lot of
# classes, structs, unions or interfaces.
# The default value is: YES.
ALPHABETICAL_INDEX = NO
# The IGNORE_PREFIX tag can be used to specify a prefix (or a list of prefixes)
# that should be ignored while generating the index headers. The IGNORE_PREFIX
# tag works for classes, function and member names. The entity will be placed in
# the alphabetical list under the first letter of the entity name that remains
# after removing the prefix.
# This tag requires that the tag ALPHABETICAL_INDEX is set to YES.
IGNORE_PREFIX =
#---------------------------------------------------------------------------
# Configuration options related to the HTML output
#---------------------------------------------------------------------------
# If the GENERATE_HTML tag is set to YES, Doxygen will generate HTML output
# The default value is: YES.
GENERATE_HTML = YES
# The HTML_OUTPUT tag is used to specify where the HTML docs will be put. If a
# relative path is entered the value of OUTPUT_DIRECTORY will be put in front of
# it.
# The default directory is: html.
# This tag requires that the tag GENERATE_HTML is set to YES.
HTML_OUTPUT = html
# The HTML_FILE_EXTENSION tag can be used to specify the file extension for each
# generated HTML page (for example: .htm, .php, .asp).
# The default value is: .html.
# This tag requires that the tag GENERATE_HTML is set to YES.
HTML_FILE_EXTENSION = .html
# The HTML_HEADER tag can be used to specify a user-defined HTML header file for
# each generated HTML page. If the tag is left blank Doxygen will generate a
# standard header.
#
# To get valid HTML the header file that includes any scripts and style sheets
# that Doxygen needs, which is dependent on the configuration options used (e.g.
# the setting GENERATE_TREEVIEW). It is highly recommended to start with a
# default header using
# doxygen -w html new_header.html new_footer.html new_stylesheet.css
# YourConfigFile
# and then modify the file new_header.html. See also section "Doxygen usage"
# for information on how to generate the default header that Doxygen normally
# uses.
# Note: The header is subject to change so you typically have to regenerate the
# default header when upgrading to a newer version of Doxygen. For a description
# of the possible markers and block names see the documentation.
# This tag requires that the tag GENERATE_HTML is set to YES.
HTML_HEADER =
# The HTML_FOOTER tag can be used to specify a user-defined HTML footer for each
# generated HTML page. If the tag is left blank Doxygen will generate a standard
# footer. See HTML_HEADER for more information on how to generate a default
# footer and what special commands can be used inside the footer. See also
# section "Doxygen usage" for information on how to generate the default footer
# that Doxygen normally uses.
# This tag requires that the tag GENERATE_HTML is set to YES.
HTML_FOOTER =
# The HTML_STYLESHEET tag can be used to specify a user-defined cascading style
# sheet that is used by each HTML page. It can be used to fine-tune the look of
# the HTML output. If left blank Doxygen will generate a default style sheet.
# See also section "Doxygen usage" for information on how to generate the style
# sheet that Doxygen normally uses.
# Note: It is recommended to use HTML_EXTRA_STYLESHEET instead of this tag, as
# it is more robust and this tag (HTML_STYLESHEET) will in the future become
# obsolete.
# This tag requires that the tag GENERATE_HTML is set to YES.
HTML_STYLESHEET =
# The HTML_EXTRA_STYLESHEET tag can be used to specify additional user-defined
# cascading style sheets that are included after the standard style sheets
# created by Doxygen. Using this option one can overrule certain style aspects.
# This is preferred over using HTML_STYLESHEET since it does not replace the
# standard style sheet and is therefore more robust against future updates.
# Doxygen will copy the style sheet files to the output directory.
# Note: The order of the extra style sheet files is of importance (e.g. the last
# style sheet in the list overrules the setting of the previous ones in the
# list).
# Note: Since the styling of scrollbars can currently not be overruled in
# Webkit/Chromium, the styling will be left out of the default doxygen.css if
# one or more extra stylesheets have been specified. So if scrollbar
# customization is desired it has to be added explicitly. For an example see the
# documentation.
# This tag requires that the tag GENERATE_HTML is set to YES.
HTML_EXTRA_STYLESHEET =
# The HTML_EXTRA_FILES tag can be used to specify one or more extra images or
# other source files which should be copied to the HTML output directory. Note
# that these files will be copied to the base HTML output directory. Use the
# $relpath^ marker in the HTML_HEADER and/or HTML_FOOTER files to load these
# files. In the HTML_STYLESHEET file, use the file name only. Also note that the
# files will be copied as-is; there are no commands or markers available.
# This tag requires that the tag GENERATE_HTML is set to YES.
HTML_EXTRA_FILES =
# The HTML_COLORSTYLE tag can be used to specify if the generated HTML output
# should be rendered with a dark or light theme.
# Possible values are: LIGHT always generates light mode output, DARK always
# generates dark mode output, AUTO_LIGHT automatically sets the mode according
# to the user preference, uses light mode if no preference is set (the default),
# AUTO_DARK automatically sets the mode according to the user preference, uses
# dark mode if no preference is set and TOGGLE allows a user to switch between
# light and dark mode via a button.
# The default value is: AUTO_LIGHT.
# This tag requires that the tag GENERATE_HTML is set to YES.
HTML_COLORSTYLE = DARK
# The HTML_COLORSTYLE_HUE tag controls the color of the HTML output. Doxygen
# will adjust the colors in the style sheet and background images according to
# this color. Hue is specified as an angle on a color-wheel, see
# https://en.wikipedia.org/wiki/Hue for more information. For instance the value
# 0 represents red, 60 is yellow, 120 is green, 180 is cyan, 240 is blue, 300
# purple, and 360 is red again.
# Minimum value: 0, maximum value: 359, default value: 220.
# This tag requires that the tag GENERATE_HTML is set to YES.
HTML_COLORSTYLE_HUE = 220
# The HTML_COLORSTYLE_SAT tag controls the purity (or saturation) of the colors
# in the HTML output. For a value of 0 the output will use gray-scales only. A
# value of 255 will produce the most vivid colors.
# Minimum value: 0, maximum value: 255, default value: 100.
# This tag requires that the tag GENERATE_HTML is set to YES.
HTML_COLORSTYLE_SAT = 100
# The HTML_COLORSTYLE_GAMMA tag controls the gamma correction applied to the
# luminance component of the colors in the HTML output. Values below 100
# gradually make the output lighter, whereas values above 100 make the output
# darker. The value divided by 100 is the actual gamma applied, so 80 represents
# a gamma of 0.8, The value 220 represents a gamma of 2.2, and 100 does not
# change the gamma.
# Minimum value: 40, maximum value: 240, default value: 80.
# This tag requires that the tag GENERATE_HTML is set to YES.
HTML_COLORSTYLE_GAMMA = 80
# If the HTML_DYNAMIC_MENUS tag is set to YES then the generated HTML
# documentation will contain a main index with vertical navigation menus that
# are dynamically created via JavaScript. If disabled, the navigation index will
# consists of multiple levels of tabs that are statically embedded in every HTML
# page. Disable this option to support browsers that do not have JavaScript,
# like the Qt help browser.
# The default value is: YES.
# This tag requires that the tag GENERATE_HTML is set to YES.
HTML_DYNAMIC_MENUS = NO
# If the HTML_DYNAMIC_SECTIONS tag is set to YES then the generated HTML
# documentation will contain sections that can be hidden and shown after the
# page has loaded.
# The default value is: NO.
# This tag requires that the tag GENERATE_HTML is set to YES.
HTML_DYNAMIC_SECTIONS = NO
# If the HTML_CODE_FOLDING tag is set to YES then classes and functions can be
# dynamically folded and expanded in the generated HTML source code.
# The default value is: YES.
# This tag requires that the tag GENERATE_HTML is set to YES.
HTML_CODE_FOLDING = YES
# If the HTML_COPY_CLIPBOARD tag is set to YES then Doxygen will show an icon in
# the top right corner of code and text fragments that allows the user to copy
# its content to the clipboard. Note this only works if supported by the browser
# and the web page is served via a secure context (see:
# https://www.w3.org/TR/secure-contexts/), i.e. using the https: or file:
# protocol.
# The default value is: YES.
# This tag requires that the tag GENERATE_HTML is set to YES.
HTML_COPY_CLIPBOARD = NO
# Doxygen stores a couple of settings persistently in the browser (via e.g.
# cookies). By default these settings apply to all HTML pages generated by
# Doxygen across all projects. The HTML_PROJECT_COOKIE tag can be used to store
# the settings under a project specific key, such that the user preferences will
# be stored separately.
# This tag requires that the tag GENERATE_HTML is set to YES.
HTML_PROJECT_COOKIE =
# With HTML_INDEX_NUM_ENTRIES one can control the preferred number of entries
# shown in the various tree structured indices initially; the user can expand
# and collapse entries dynamically later on. Doxygen will expand the tree to
# such a level that at most the specified number of entries are visible (unless
# a fully collapsed tree already exceeds this amount). So setting the number of
# entries 1 will produce a full collapsed tree by default. 0 is a special value
# representing an infinite number of entries and will result in a full expanded
# tree by default.
# Minimum value: 0, maximum value: 9999, default value: 100.
# This tag requires that the tag GENERATE_HTML is set to YES.
HTML_INDEX_NUM_ENTRIES = 100
# If the GENERATE_DOCSET tag is set to YES, additional index files will be
# generated that can be used as input for Apple's Xcode 3 integrated development
# environment (see:
# https://developer.apple.com/xcode/), introduced with OSX 10.5 (Leopard). To
# create a documentation set, Doxygen will generate a Makefile in the HTML
# output directory. Running make will produce the docset in that directory and
# running make install will install the docset in
# ~/Library/Developer/Shared/Documentation/DocSets so that Xcode will find it at
# startup. See https://developer.apple.com/library/archive/featuredarticles/Doxy
# genXcode/_index.html for more information.
# The default value is: NO.
# This tag requires that the tag GENERATE_HTML is set to YES.
GENERATE_DOCSET = NO
# This tag determines the name of the docset feed. A documentation feed provides
# an umbrella under which multiple documentation sets from a single provider
# (such as a company or product suite) can be grouped.
# The default value is: Doxygen generated docs.
# This tag requires that the tag GENERATE_DOCSET is set to YES.
DOCSET_FEEDNAME = "Doxygen generated docs"
# This tag determines the URL of the docset feed. A documentation feed provides
# an umbrella under which multiple documentation sets from a single provider
# (such as a company or product suite) can be grouped.
# This tag requires that the tag GENERATE_DOCSET is set to YES.
DOCSET_FEEDURL =
# This tag specifies a string that should uniquely identify the documentation
# set bundle. This should be a reverse domain-name style string, e.g.
# com.mycompany.MyDocSet. Doxygen will append .docset to the name.
# The default value is: org.doxygen.Project.
# This tag requires that the tag GENERATE_DOCSET is set to YES.
DOCSET_BUNDLE_ID = org.doxygen.Project
# The DOCSET_PUBLISHER_ID tag specifies a string that should uniquely identify
# the documentation publisher. This should be a reverse domain-name style
# string, e.g. com.mycompany.MyDocSet.documentation.
# The default value is: org.doxygen.Publisher.
# This tag requires that the tag GENERATE_DOCSET is set to YES.
DOCSET_PUBLISHER_ID = org.doxygen.Publisher
# The DOCSET_PUBLISHER_NAME tag identifies the documentation publisher.
# The default value is: Publisher.
# This tag requires that the tag GENERATE_DOCSET is set to YES.
DOCSET_PUBLISHER_NAME = Publisher
# If the GENERATE_HTMLHELP tag is set to YES then Doxygen generates three
# additional HTML index files: index.hhp, index.hhc, and index.hhk. The
# index.hhp is a project file that can be read by Microsoft's HTML Help Workshop
# on Windows. In the beginning of 2021 Microsoft took the original page, with
# a.o. the download links, offline (the HTML help workshop was already many
# years in maintenance mode). You can download the HTML help workshop from the
# web archives at Installation executable (see:
# http://web.archive.org/web/20160201063255/http://download.microsoft.com/downlo
# ad/0/A/9/0A939EF6-E31C-430F-A3DF-DFAE7960D564/htmlhelp.exe).
#
# The HTML Help Workshop contains a compiler that can convert all HTML output
# generated by Doxygen into a single compiled HTML file (.chm). Compiled HTML
# files are now used as the Windows 98 help format, and will replace the old
# Windows help format (.hlp) on all Windows platforms in the future. Compressed
# HTML files also contain an index, a table of contents, and you can search for
# words in the documentation. The HTML workshop also contains a viewer for
# compressed HTML files.
# The default value is: NO.
# This tag requires that the tag GENERATE_HTML is set to YES.
GENERATE_HTMLHELP = YES
# The CHM_FILE tag can be used to specify the file name of the resulting .chm
# file. You can add a path in front of the file if the result should not be
# written to the html output directory.
# This tag requires that the tag GENERATE_HTMLHELP is set to YES.
CHM_FILE =
# The HHC_LOCATION tag can be used to specify the location (absolute path
# including file name) of the HTML help compiler (hhc.exe). If non-empty,
# Doxygen will try to run the HTML help compiler on the generated index.hhp.
# The file has to be specified with full path.
# This tag requires that the tag GENERATE_HTMLHELP is set to YES.
HHC_LOCATION =
# The GENERATE_CHI flag controls if a separate .chi index file is generated
# (YES) or that it should be included in the main .chm file (NO).
# The default value is: NO.
# This tag requires that the tag GENERATE_HTMLHELP is set to YES.
GENERATE_CHI = NO
# The CHM_INDEX_ENCODING is used to encode HtmlHelp index (hhk), content (hhc)
# and project file content.
# This tag requires that the tag GENERATE_HTMLHELP is set to YES.
CHM_INDEX_ENCODING =
# The BINARY_TOC flag controls whether a binary table of contents is generated
# (YES) or a normal table of contents (NO) in the .chm file. Furthermore it
# enables the Previous and Next buttons.
# The default value is: NO.
# This tag requires that the tag GENERATE_HTMLHELP is set to YES.
BINARY_TOC = NO
# The TOC_EXPAND flag can be set to YES to add extra items for group members to
# the table of contents of the HTML help documentation and to the tree view.
# The default value is: NO.
# This tag requires that the tag GENERATE_HTMLHELP is set to YES.
TOC_EXPAND = NO
# The SITEMAP_URL tag is used to specify the full URL of the place where the
# generated documentation will be placed on the server by the user during the
# deployment of the documentation. The generated sitemap is called sitemap.xml
# and placed on the directory specified by HTML_OUTPUT. In case no SITEMAP_URL
# is specified no sitemap is generated. For information about the sitemap
# protocol see https://www.sitemaps.org
# This tag requires that the tag GENERATE_HTML is set to YES.
SITEMAP_URL =
# If the GENERATE_QHP tag is set to YES and both QHP_NAMESPACE and
# QHP_VIRTUAL_FOLDER are set, an additional index file will be generated that
# can be used as input for Qt's qhelpgenerator to generate a Qt Compressed Help
# (.qch) of the generated HTML documentation.
# The default value is: NO.
# This tag requires that the tag GENERATE_HTML is set to YES.
GENERATE_QHP = NO
# If the QHG_LOCATION tag is specified, the QCH_FILE tag can be used to specify
# the file name of the resulting .qch file. The path specified is relative to
# the HTML output folder.
# This tag requires that the tag GENERATE_QHP is set to YES.
QCH_FILE =
# The QHP_NAMESPACE tag specifies the namespace to use when generating Qt Help
# Project output. For more information please see Qt Help Project / Namespace
# (see:
# https://doc.qt.io/archives/qt-4.8/qthelpproject.html#namespace).
# The default value is: org.doxygen.Project.
# This tag requires that the tag GENERATE_QHP is set to YES.
QHP_NAMESPACE = org.doxygen.Project
# The QHP_VIRTUAL_FOLDER tag specifies the namespace to use when generating Qt
# Help Project output. For more information please see Qt Help Project / Virtual
# Folders (see:
# https://doc.qt.io/archives/qt-4.8/qthelpproject.html#virtual-folders).
# The default value is: doc.
# This tag requires that the tag GENERATE_QHP is set to YES.
QHP_VIRTUAL_FOLDER = doc
# If the QHP_CUST_FILTER_NAME tag is set, it specifies the name of a custom
# filter to add. For more information please see Qt Help Project / Custom
# Filters (see:
# https://doc.qt.io/archives/qt-4.8/qthelpproject.html#custom-filters).
# This tag requires that the tag GENERATE_QHP is set to YES.
QHP_CUST_FILTER_NAME =
# The QHP_CUST_FILTER_ATTRS tag specifies the list of the attributes of the
# custom filter to add. For more information please see Qt Help Project / Custom
# Filters (see:
# https://doc.qt.io/archives/qt-4.8/qthelpproject.html#custom-filters).
# This tag requires that the tag GENERATE_QHP is set to YES.
QHP_CUST_FILTER_ATTRS =
# The QHP_SECT_FILTER_ATTRS tag specifies the list of the attributes this
# project's filter section matches. Qt Help Project / Filter Attributes (see:
# https://doc.qt.io/archives/qt-4.8/qthelpproject.html#filter-attributes).
# This tag requires that the tag GENERATE_QHP is set to YES.
QHP_SECT_FILTER_ATTRS =
# The QHG_LOCATION tag can be used to specify the location (absolute path
# including file name) of Qt's qhelpgenerator. If non-empty Doxygen will try to
# run qhelpgenerator on the generated .qhp file.
# This tag requires that the tag GENERATE_QHP is set to YES.
QHG_LOCATION =
# If the GENERATE_ECLIPSEHELP tag is set to YES, additional index files will be
# generated, together with the HTML files, they form an Eclipse help plugin. To
# install this plugin and make it available under the help contents menu in
# Eclipse, the contents of the directory containing the HTML and XML files needs
# to be copied into the plugins directory of eclipse. The name of the directory
# within the plugins directory should be the same as the ECLIPSE_DOC_ID value.
# After copying Eclipse needs to be restarted before the help appears.
# The default value is: NO.
# This tag requires that the tag GENERATE_HTML is set to YES.
GENERATE_ECLIPSEHELP = NO
# A unique identifier for the Eclipse help plugin. When installing the plugin
# the directory name containing the HTML and XML files should also have this
# name. Each documentation set should have its own identifier.
# The default value is: org.doxygen.Project.
# This tag requires that the tag GENERATE_ECLIPSEHELP is set to YES.
ECLIPSE_DOC_ID = org.doxygen.Project
# If you want full control over the layout of the generated HTML pages it might
# be necessary to disable the index and replace it with your own. The
# DISABLE_INDEX tag can be used to turn on/off the condensed index (tabs) at top
# of each HTML page. A value of NO enables the index and the value YES disables
# it. Since the tabs in the index contain the same information as the navigation
# tree, you can set this option to YES if you also set GENERATE_TREEVIEW to YES.
# The default value is: NO.
# This tag requires that the tag GENERATE_HTML is set to YES.
DISABLE_INDEX = YES
# The GENERATE_TREEVIEW tag is used to specify whether a tree-like index
# structure should be generated to display hierarchical information. If the tag
# value is set to YES, a side panel will be generated containing a tree-like
# index structure (just like the one that is generated for HTML Help). For this
# to work a browser that supports JavaScript, DHTML, CSS and frames is required
# (i.e. any modern browser). Windows users are probably better off using the
# HTML help feature. Via custom style sheets (see HTML_EXTRA_STYLESHEET) one can
# further fine tune the look of the index (see "Fine-tuning the output"). As an
# example, the default style sheet generated by Doxygen has an example that
# shows how to put an image at the root of the tree instead of the PROJECT_NAME.
# Since the tree basically has more details information than the tab index, you
# could consider setting DISABLE_INDEX to YES when enabling this option.
# The default value is: YES.
# This tag requires that the tag GENERATE_HTML is set to YES.
GENERATE_TREEVIEW = NO
# When GENERATE_TREEVIEW is set to YES, the PAGE_OUTLINE_PANEL option determines
# if an additional navigation panel is shown at the right hand side of the
# screen, displaying an outline of the contents of the main page, similar to
# e.g. https://developer.android.com/reference If GENERATE_TREEVIEW is set to
# NO, this option has no effect.
# The default value is: YES.
# This tag requires that the tag GENERATE_HTML is set to YES.
PAGE_OUTLINE_PANEL = YES
# When GENERATE_TREEVIEW is set to YES, the FULL_SIDEBAR option determines if
# the side bar is limited to only the treeview area (value NO) or if it should
# extend to the full height of the window (value YES). Setting this to YES gives
# a layout similar to e.g. https://docs.readthedocs.io with more room for
# contents, but less room for the project logo, title, and description. If
# GENERATE_TREEVIEW is set to NO, this option has no effect.
# The default value is: NO.
# This tag requires that the tag GENERATE_HTML is set to YES.
FULL_SIDEBAR = NO
# The ENUM_VALUES_PER_LINE tag can be used to set the number of enum values that
# Doxygen will group on one line in the generated HTML documentation.
#
# Note that a value of 0 will completely suppress the enum values from appearing
# in the overview section.
# Minimum value: 0, maximum value: 20, default value: 4.
# This tag requires that the tag GENERATE_HTML is set to YES.
ENUM_VALUES_PER_LINE = 4
# When the SHOW_ENUM_VALUES tag is set doxygen will show the specified
# enumeration values besides the enumeration mnemonics.
# The default value is: NO.
SHOW_ENUM_VALUES = NO
# If the treeview is enabled (see GENERATE_TREEVIEW) then this tag can be used
# to set the initial width (in pixels) of the frame in which the tree is shown.
# Minimum value: 0, maximum value: 1500, default value: 250.
# This tag requires that the tag GENERATE_HTML is set to YES.
TREEVIEW_WIDTH = 250
# If the EXT_LINKS_IN_WINDOW option is set to YES, Doxygen will open links to
# external symbols imported via tag files in a separate window.
# The default value is: NO.
# This tag requires that the tag GENERATE_HTML is set to YES.
EXT_LINKS_IN_WINDOW = NO
# If the OBFUSCATE_EMAILS tag is set to YES, Doxygen will obfuscate email
# addresses.
# The default value is: YES.
# This tag requires that the tag GENERATE_HTML is set to YES.
OBFUSCATE_EMAILS = YES
# If the HTML_FORMULA_FORMAT option is set to svg, Doxygen will use the pdf2svg
# tool (see https://github.com/dawbarton/pdf2svg) or inkscape (see
# https://inkscape.org) to generate formulas as SVG images instead of PNGs for
# the HTML output. These images will generally look nicer at scaled resolutions.
# Possible values are: png (the default) and svg (looks nicer but requires the
# pdf2svg or inkscape tool).
# The default value is: png.
# This tag requires that the tag GENERATE_HTML is set to YES.
HTML_FORMULA_FORMAT = png
# Use this tag to change the font size of LaTeX formulas included as images in
# the HTML documentation. When you change the font size after a successful
# Doxygen run you need to manually remove any form_*.png images from the HTML
# output directory to force them to be regenerated.
# Minimum value: 8, maximum value: 50, default value: 10.
# This tag requires that the tag GENERATE_HTML is set to YES.
FORMULA_FONTSIZE = 10
# The FORMULA_MACROFILE can contain LaTeX \newcommand and \renewcommand commands
# to create new LaTeX commands to be used in formulas as building blocks. See
# the section "Including formulas" for details.
FORMULA_MACROFILE =
# Enable the USE_MATHJAX option to render LaTeX formulas using MathJax (see
# https://www.mathjax.org) which uses client side JavaScript for the rendering
# instead of using pre-rendered bitmaps. Use this if you do not have LaTeX
# installed or if you want to formulas look prettier in the HTML output. When
# enabled you may also need to install MathJax separately and configure the path
# to it using the MATHJAX_RELPATH option.
# The default value is: NO.
# This tag requires that the tag GENERATE_HTML is set to YES.
USE_MATHJAX = NO
# With MATHJAX_VERSION it is possible to specify the MathJax version to be used.
# Note that the different versions of MathJax have different requirements with
# regards to the different settings, so it is possible that also other MathJax
# settings have to be changed when switching between the different MathJax
# versions.
# Possible values are: MathJax_2, MathJax_3 and MathJax_4.
# The default value is: MathJax_2.
# This tag requires that the tag USE_MATHJAX is set to YES.
MATHJAX_VERSION = MathJax_2
# When MathJax is enabled you can set the default output format to be used for
# the MathJax output. For more details about the output format see MathJax
# version 2 (see:
# https://docs.mathjax.org/en/v2.7/output.html), MathJax version 3 (see:
# https://docs.mathjax.org/en/v3.2/output/index.html) and MathJax version 4
# (see:
# https://docs.mathjax.org/en/v4.0/output/index.htm).
# Possible values are: HTML-CSS (which is slower, but has the best
# compatibility. This is the name for Mathjax version 2, for MathJax version 3
# this will be translated into chtml), NativeMML (i.e. MathML. Only supported
# for MathJax 2. For MathJax version 3 chtml will be used instead.), chtml (This
# is the name for Mathjax version 3, for MathJax version 2 this will be
# translated into HTML-CSS) and SVG.
# The default value is: HTML-CSS.
# This tag requires that the tag USE_MATHJAX is set to YES.
MATHJAX_FORMAT = HTML-CSS
# When MathJax is enabled you need to specify the location relative to the HTML
# output directory using the MATHJAX_RELPATH option. For Mathjax version 2 the
# destination directory should contain the MathJax.js script. For instance, if
# the mathjax directory is located at the same level as the HTML output
# directory, then MATHJAX_RELPATH should be ../mathjax.s For Mathjax versions 3
# and 4 the destination directory should contain the tex-<format>.js script
# (where <format> is either chtml or svg). The default value points to the
# MathJax Content Delivery Network so you can quickly see the result without
# installing MathJax. However, it is strongly recommended to install a local
# copy of MathJax from https://www.mathjax.org before deployment. The default
# value is:
# - in case of MathJax version 2: https://cdn.jsdelivr.net/npm/mathjax@2
# - in case of MathJax version 3: https://cdn.jsdelivr.net/npm/mathjax@3
# - in case of MathJax version 4: https://cdn.jsdelivr.net/npm/mathjax@4
# This tag requires that the tag USE_MATHJAX is set to YES.
MATHJAX_RELPATH = http://www.mathjax.org/mathjax
# The MATHJAX_EXTENSIONS tag can be used to specify one or more MathJax
# extension names that should be enabled during MathJax rendering. For example
# for MathJax version 2 (see https://docs.mathjax.org/en/v2.7/tex.html):
# MATHJAX_EXTENSIONS = TeX/AMSmath TeX/AMSsymbols
# For example for MathJax version 3 (see
# https://docs.mathjax.org/en/v3.2/input/tex/extensions/):
# MATHJAX_EXTENSIONS = ams
# For example for MathJax version 4 (see
# https://docs.mathjax.org/en/v4.0/input/tex/extensions/):
# MATHJAX_EXTENSIONS = units
# Note that for Mathjax version 4 quite a few extensions are already
# automatically loaded. To disable a package in Mathjax version 4 one can use
# the package name prepended with a minus sign (- like MATHJAX_EXTENSIONS +=
# -textmacros)
# This tag requires that the tag USE_MATHJAX is set to YES.
MATHJAX_EXTENSIONS =
# The MATHJAX_CODEFILE tag can be used to specify a file with JavaScript pieces
# of code that will be used on startup of the MathJax code. See the Mathjax site
# for more details:
# - MathJax version 2 (see:
# https://docs.mathjax.org/en/v2.7/)
# - MathJax version 3 (see:
# https://docs.mathjax.org/en/v3.2/)
# - MathJax version 4 (see:
# https://docs.mathjax.org/en/v4.0/) For an example see the documentation.
# This tag requires that the tag USE_MATHJAX is set to YES.
MATHJAX_CODEFILE =
# When the SEARCHENGINE tag is enabled Doxygen will generate a search box for
# the HTML output. The underlying search engine uses JavaScript and DHTML and
# should work on any modern browser. Note that when using HTML help
# (GENERATE_HTMLHELP), Qt help (GENERATE_QHP), or docsets (GENERATE_DOCSET)
# there is already a search function so this one should typically be disabled.
# For large projects the JavaScript based search engine can be slow, then
# enabling SERVER_BASED_SEARCH may provide a better solution. It is possible to
# search using the keyboard; to jump to the search box use <access key> + S
# (what the <access key> is depends on the OS and browser, but it is typically
# <CTRL>, <ALT>/<option>, or both). Inside the search box use the <cursor down
# key> to jump into the search results window, the results can be navigated
# using the <cursor keys>. Press <Enter> to select an item or <escape> to cancel
# the search. The filter options can be selected when the cursor is inside the
# search box by pressing <Shift>+<cursor down>. Also here use the <cursor keys>
# to select a filter and <Enter> or <escape> to activate or cancel the filter
# option.
# The default value is: YES.
# This tag requires that the tag GENERATE_HTML is set to YES.
SEARCHENGINE = NO
# When the SERVER_BASED_SEARCH tag is enabled the search engine will be
# implemented using a web server instead of a web client using JavaScript. There
# are two flavors of web server based searching depending on the EXTERNAL_SEARCH
# setting. When disabled, Doxygen will generate a PHP script for searching and
# an index file used by the script. When EXTERNAL_SEARCH is enabled the indexing
# and searching needs to be provided by external tools. See the section
# "External Indexing and Searching" for details.
# The default value is: NO.
# This tag requires that the tag SEARCHENGINE is set to YES.
SERVER_BASED_SEARCH = NO
# When EXTERNAL_SEARCH tag is enabled Doxygen will no longer generate the PHP
# script for searching. Instead the search results are written to an XML file
# which needs to be processed by an external indexer. Doxygen will invoke an
# external search engine pointed to by the SEARCHENGINE_URL option to obtain the
# search results.
#
# Doxygen ships with an example indexer (doxyindexer) and search engine
# (doxysearch.cgi) which are based on the open source search engine library
# Xapian (see:
# https://xapian.org/).
#
# See the section "External Indexing and Searching" for details.
# The default value is: NO.
# This tag requires that the tag SEARCHENGINE is set to YES.
EXTERNAL_SEARCH = NO
# The SEARCHENGINE_URL should point to a search engine hosted by a web server
# which will return the search results when EXTERNAL_SEARCH is enabled.
#
# Doxygen ships with an example indexer (doxyindexer) and search engine
# (doxysearch.cgi) which are based on the open source search engine library
# Xapian (see:
# https://xapian.org/). See the section "External Indexing and Searching" for
# details.
# This tag requires that the tag SEARCHENGINE is set to YES.
SEARCHENGINE_URL =
# When SERVER_BASED_SEARCH and EXTERNAL_SEARCH are both enabled the unindexed
# search data is written to a file for indexing by an external tool. With the
# SEARCHDATA_FILE tag the name of this file can be specified.
# The default file is: searchdata.xml.
# This tag requires that the tag SEARCHENGINE is set to YES.
SEARCHDATA_FILE = searchdata.xml
# When SERVER_BASED_SEARCH and EXTERNAL_SEARCH are both enabled the
# EXTERNAL_SEARCH_ID tag can be used as an identifier for the project. This is
# useful in combination with EXTRA_SEARCH_MAPPINGS to search through multiple
# projects and redirect the results back to the right project.
# This tag requires that the tag SEARCHENGINE is set to YES.
EXTERNAL_SEARCH_ID =
# The EXTRA_SEARCH_MAPPINGS tag can be used to enable searching through Doxygen
# projects other than the one defined by this configuration file, but that are
# all added to the same external search index. Each project needs to have a
# unique id set via EXTERNAL_SEARCH_ID. The search mapping then maps the id of
# to a relative location where the documentation can be found. The format is:
# EXTRA_SEARCH_MAPPINGS = tagname1=loc1 tagname2=loc2 ...
# This tag requires that the tag SEARCHENGINE is set to YES.
EXTRA_SEARCH_MAPPINGS =
#---------------------------------------------------------------------------
# Configuration options related to the LaTeX output
#---------------------------------------------------------------------------
# If the GENERATE_LATEX tag is set to YES, Doxygen will generate LaTeX output.
# The default value is: YES.
GENERATE_LATEX = NO
# The LATEX_OUTPUT tag is used to specify where the LaTeX docs will be put. If a
# relative path is entered the value of OUTPUT_DIRECTORY will be put in front of
# it.
# The default directory is: latex.
# This tag requires that the tag GENERATE_LATEX is set to YES.
LATEX_OUTPUT = latex
# The LATEX_CMD_NAME tag can be used to specify the LaTeX command name to be
# invoked.
#
# Note that when not enabling USE_PDFLATEX the default is latex when enabling
# USE_PDFLATEX the default is pdflatex and when in the later case latex is
# chosen this is overwritten by pdflatex. For specific output languages the
# default can have been set differently, this depends on the implementation of
# the output language.
# This tag requires that the tag GENERATE_LATEX is set to YES.
LATEX_CMD_NAME = latex
# The MAKEINDEX_CMD_NAME tag can be used to specify the command name to generate
# index for LaTeX.
# Note: This tag is used in the Makefile / make.bat.
# See also: LATEX_MAKEINDEX_CMD for the part in the generated output file
# (.tex).
# The default file is: makeindex.
# This tag requires that the tag GENERATE_LATEX is set to YES.
MAKEINDEX_CMD_NAME = makeindex
# The LATEX_MAKEINDEX_CMD tag can be used to specify the command name to
# generate index for LaTeX. In case there is no backslash (\) as first character
# it will be automatically added in the LaTeX code.
# Note: This tag is used in the generated output file (.tex).
# See also: MAKEINDEX_CMD_NAME for the part in the Makefile / make.bat.
# The default value is: makeindex.
# This tag requires that the tag GENERATE_LATEX is set to YES.
LATEX_MAKEINDEX_CMD = makeindex
# If the COMPACT_LATEX tag is set to YES, Doxygen generates more compact LaTeX
# documents. This may be useful for small projects and may help to save some
# trees in general.
# The default value is: NO.
# This tag requires that the tag GENERATE_LATEX is set to YES.
COMPACT_LATEX = NO
# The PAPER_TYPE tag can be used to set the paper type that is used by the
# printer.
# Possible values are: a4 (210 x 297 mm), letter (8.5 x 11 inches), legal (8.5 x
# 14 inches) and executive (7.25 x 10.5 inches).
# The default value is: a4.
# This tag requires that the tag GENERATE_LATEX is set to YES.
PAPER_TYPE = a4
# The EXTRA_PACKAGES tag can be used to specify one or more LaTeX package names
# that should be included in the LaTeX output. The package can be specified just
# by its name or with the correct syntax as to be used with the LaTeX
# \usepackage command. To get the times font for instance you can specify :
# EXTRA_PACKAGES=times or EXTRA_PACKAGES={times}
# To use the option intlimits with the amsmath package you can specify:
# EXTRA_PACKAGES=[intlimits]{amsmath}
# If left blank no extra packages will be included.
# This tag requires that the tag GENERATE_LATEX is set to YES.
EXTRA_PACKAGES =
# The LATEX_HEADER tag can be used to specify a user-defined LaTeX header for
# the generated LaTeX document. The header should contain everything until the
# first chapter. If it is left blank Doxygen will generate a standard header. It
# is highly recommended to start with a default header using
# doxygen -w latex new_header.tex new_footer.tex new_stylesheet.sty
# and then modify the file new_header.tex. See also section "Doxygen usage" for
# information on how to generate the default header that Doxygen normally uses.
#
# Note: Only use a user-defined header if you know what you are doing!
# Note: The header is subject to change so you typically have to regenerate the
# default header when upgrading to a newer version of Doxygen. The following
# commands have a special meaning inside the header (and footer): For a
# description of the possible markers and block names see the documentation.
# This tag requires that the tag GENERATE_LATEX is set to YES.
LATEX_HEADER =
# The LATEX_FOOTER tag can be used to specify a user-defined LaTeX footer for
# the generated LaTeX document. The footer should contain everything after the
# last chapter. If it is left blank Doxygen will generate a standard footer. See
# LATEX_HEADER for more information on how to generate a default footer and what
# special commands can be used inside the footer. See also section "Doxygen
# usage" for information on how to generate the default footer that Doxygen
# normally uses. Note: Only use a user-defined footer if you know what you are
# doing!
# This tag requires that the tag GENERATE_LATEX is set to YES.
LATEX_FOOTER =
# The LATEX_EXTRA_STYLESHEET tag can be used to specify additional user-defined
# LaTeX style sheets that are included after the standard style sheets created
# by Doxygen. Using this option one can overrule certain style aspects. Doxygen
# will copy the style sheet files to the output directory.
# Note: The order of the extra style sheet files is of importance (e.g. the last
# style sheet in the list overrules the setting of the previous ones in the
# list).
# This tag requires that the tag GENERATE_LATEX is set to YES.
LATEX_EXTRA_STYLESHEET =
# The LATEX_EXTRA_FILES tag can be used to specify one or more extra images or
# other source files which should be copied to the LATEX_OUTPUT output
# directory. Note that the files will be copied as-is; there are no commands or
# markers available.
# This tag requires that the tag GENERATE_LATEX is set to YES.
LATEX_EXTRA_FILES =
# If the PDF_HYPERLINKS tag is set to YES, the LaTeX that is generated is
# prepared for conversion to PDF (using ps2pdf or pdflatex). The PDF file will
# contain links (just like the HTML output) instead of page references. This
# makes the output suitable for online browsing using a PDF viewer.
# The default value is: YES.
# This tag requires that the tag GENERATE_LATEX is set to YES.
PDF_HYPERLINKS = YES
# If the USE_PDFLATEX tag is set to YES, Doxygen will use the engine as
# specified with LATEX_CMD_NAME to generate the PDF file directly from the LaTeX
# files. Set this option to YES, to get a higher quality PDF documentation.
#
# See also section LATEX_CMD_NAME for selecting the engine.
# The default value is: YES.
# This tag requires that the tag GENERATE_LATEX is set to YES.
USE_PDFLATEX = YES
# The LATEX_BATCHMODE tag signals the behavior of LaTeX in case of an error.
# Possible values are: NO same as ERROR_STOP, YES same as BATCH, BATCH In batch
# mode nothing is printed on the terminal, errors are scrolled as if <return> is
# hit at every error; missing files that TeX tries to input or request from
# keyboard input (\read on a not open input stream) cause the job to abort,
# NON_STOP In nonstop mode the diagnostic message will appear on the terminal,
# but there is no possibility of user interaction just like in batch mode,
# SCROLL In scroll mode, TeX will stop only for missing files to input or if
# keyboard input is necessary and ERROR_STOP In errorstop mode, TeX will stop at
# each error, asking for user intervention.
# The default value is: NO.
# This tag requires that the tag GENERATE_LATEX is set to YES.
LATEX_BATCHMODE = NO
# If the LATEX_HIDE_INDICES tag is set to YES then Doxygen will not include the
# index chapters (such as File Index, Compound Index, etc.) in the output.
# The default value is: NO.
# This tag requires that the tag GENERATE_LATEX is set to YES.
LATEX_HIDE_INDICES = NO
# The LATEX_BIB_STYLE tag can be used to specify the style to use for the
# bibliography, e.g. plainnat, or ieeetr. See
# https://en.wikipedia.org/wiki/BibTeX and \cite for more info.
# The default value is: plainnat.
# This tag requires that the tag GENERATE_LATEX is set to YES.
LATEX_BIB_STYLE = plain
# The LATEX_EMOJI_DIRECTORY tag is used to specify the (relative or absolute)
# path from which the emoji images will be read. If a relative path is entered,
# it will be relative to the LATEX_OUTPUT directory. If left blank the
# LATEX_OUTPUT directory will be used.
# This tag requires that the tag GENERATE_LATEX is set to YES.
LATEX_EMOJI_DIRECTORY =
#---------------------------------------------------------------------------
# Configuration options related to the RTF output
#---------------------------------------------------------------------------
# If the GENERATE_RTF tag is set to YES, Doxygen will generate RTF output. The
# RTF output is optimized for Word 97 and may not look too pretty with other RTF
# readers/editors.
# The default value is: NO.
GENERATE_RTF = NO
# The RTF_OUTPUT tag is used to specify where the RTF docs will be put. If a
# relative path is entered the value of OUTPUT_DIRECTORY will be put in front of
# it.
# The default directory is: rtf.
# This tag requires that the tag GENERATE_RTF is set to YES.
RTF_OUTPUT = rtf
# If the COMPACT_RTF tag is set to YES, Doxygen generates more compact RTF
# documents. This may be useful for small projects and may help to save some
# trees in general.
# The default value is: NO.
# This tag requires that the tag GENERATE_RTF is set to YES.
COMPACT_RTF = NO
# If the RTF_HYPERLINKS tag is set to YES, the RTF that is generated will
# contain hyperlink fields. The RTF file will contain links (just like the HTML
# output) instead of page references. This makes the output suitable for online
# browsing using Word or some other Word compatible readers that support those
# fields.
#
# Note: WordPad (write) and others do not support links.
# The default value is: NO.
# This tag requires that the tag GENERATE_RTF is set to YES.
RTF_HYPERLINKS = NO
# Load stylesheet definitions from file. Syntax is similar to Doxygen's
# configuration file, i.e. a series of assignments. You only have to provide
# replacements, missing definitions are set to their default value.
#
# See also section "Doxygen usage" for information on how to generate the
# default style sheet that Doxygen normally uses.
# This tag requires that the tag GENERATE_RTF is set to YES.
RTF_STYLESHEET_FILE =
# Set optional variables used in the generation of an RTF document. Syntax is
# similar to Doxygen's configuration file. A template extensions file can be
# generated using doxygen -e rtf extensionFile.
# This tag requires that the tag GENERATE_RTF is set to YES.
RTF_EXTENSIONS_FILE =
# The RTF_EXTRA_FILES tag can be used to specify one or more extra images or
# other source files which should be copied to the RTF_OUTPUT output directory.
# Note that the files will be copied as-is; there are no commands or markers
# available.
# This tag requires that the tag GENERATE_RTF is set to YES.
RTF_EXTRA_FILES =
#---------------------------------------------------------------------------
# Configuration options related to the man page output
#---------------------------------------------------------------------------
# If the GENERATE_MAN tag is set to YES, Doxygen will generate man pages for
# classes and files.
# The default value is: NO.
GENERATE_MAN = NO
# The MAN_OUTPUT tag is used to specify where the man pages will be put. If a
# relative path is entered the value of OUTPUT_DIRECTORY will be put in front of
# it. A directory man3 will be created inside the directory specified by
# MAN_OUTPUT.
# The default directory is: man.
# This tag requires that the tag GENERATE_MAN is set to YES.
MAN_OUTPUT = man
# The MAN_EXTENSION tag determines the extension that is added to the generated
# man pages. In case the manual section does not start with a number, the number
# 3 is prepended. The dot (.) at the beginning of the MAN_EXTENSION tag is
# optional.
# The default value is: .3.
# This tag requires that the tag GENERATE_MAN is set to YES.
MAN_EXTENSION = .3
# The MAN_SUBDIR tag determines the name of the directory created within
# MAN_OUTPUT in which the man pages are placed. If defaults to man followed by
# MAN_EXTENSION with the initial . removed.
# This tag requires that the tag GENERATE_MAN is set to YES.
MAN_SUBDIR =
# If the MAN_LINKS tag is set to YES and Doxygen generates man output, then it
# will generate one additional man file for each entity documented in the real
# man page(s). These additional files only source the real man page, but without
# them the man command would be unable to find the correct page.
# The default value is: NO.
# This tag requires that the tag GENERATE_MAN is set to YES.
MAN_LINKS = NO
#---------------------------------------------------------------------------
# Configuration options related to the XML output
#---------------------------------------------------------------------------
# If the GENERATE_XML tag is set to YES, Doxygen will generate an XML file that
# captures the structure of the code including all documentation.
# The default value is: NO.
GENERATE_XML = NO
# The XML_OUTPUT tag is used to specify where the XML pages will be put. If a
# relative path is entered the value of OUTPUT_DIRECTORY will be put in front of
# it.
# The default directory is: xml.
# This tag requires that the tag GENERATE_XML is set to YES.
XML_OUTPUT = xml
# If the XML_PROGRAMLISTING tag is set to YES, Doxygen will dump the program
# listings (including syntax highlighting and cross-referencing information) to
# the XML output. Note that enabling this will significantly increase the size
# of the XML output.
# The default value is: YES.
# This tag requires that the tag GENERATE_XML is set to YES.
XML_PROGRAMLISTING = YES
# If the XML_NS_MEMB_FILE_SCOPE tag is set to YES, Doxygen will include
# namespace members in file scope as well, matching the HTML output.
# The default value is: NO.
# This tag requires that the tag GENERATE_XML is set to YES.
XML_NS_MEMB_FILE_SCOPE = NO
#---------------------------------------------------------------------------
# Configuration options related to the DOCBOOK output
#---------------------------------------------------------------------------
# If the GENERATE_DOCBOOK tag is set to YES, Doxygen will generate Docbook files
# that can be used to generate PDF.
# The default value is: NO.
GENERATE_DOCBOOK = NO
# The DOCBOOK_OUTPUT tag is used to specify where the Docbook pages will be put.
# If a relative path is entered the value of OUTPUT_DIRECTORY will be put in
# front of it.
# The default directory is: docbook.
# This tag requires that the tag GENERATE_DOCBOOK is set to YES.
DOCBOOK_OUTPUT = docbook
#---------------------------------------------------------------------------
# Configuration options for the AutoGen Definitions output
#---------------------------------------------------------------------------
# If the GENERATE_AUTOGEN_DEF tag is set to YES, Doxygen will generate an
# AutoGen Definitions (see https://autogen.sourceforge.net/) file that captures
# the structure of the code including all documentation. Note that this feature
# is still experimental and incomplete at the moment.
# The default value is: NO.
GENERATE_AUTOGEN_DEF = NO
#---------------------------------------------------------------------------
# Configuration options related to Sqlite3 output
#---------------------------------------------------------------------------
# If the GENERATE_SQLITE3 tag is set to YES Doxygen will generate a Sqlite3
# database with symbols found by Doxygen stored in tables.
# The default value is: NO.
GENERATE_SQLITE3 = NO
# The SQLITE3_OUTPUT tag is used to specify where the Sqlite3 database will be
# put. If a relative path is entered the value of OUTPUT_DIRECTORY will be put
# in front of it.
# The default directory is: sqlite3.
# This tag requires that the tag GENERATE_SQLITE3 is set to YES.
SQLITE3_OUTPUT = sqlite3
# The SQLITE3_RECREATE_DB tag is set to YES, the existing doxygen_sqlite3.db
# database file will be recreated with each Doxygen run. If set to NO, Doxygen
# will warn if a database file is already found and not modify it.
# The default value is: YES.
# This tag requires that the tag GENERATE_SQLITE3 is set to YES.
SQLITE3_RECREATE_DB = YES
#---------------------------------------------------------------------------
# Configuration options related to the Perl module output
#---------------------------------------------------------------------------
# If the GENERATE_PERLMOD tag is set to YES, Doxygen will generate a Perl module
# file that captures the structure of the code including all documentation.
#
# Note that this feature is still experimental and incomplete at the moment.
# The default value is: NO.
GENERATE_PERLMOD = NO
# If the PERLMOD_LATEX tag is set to YES, Doxygen will generate the necessary
# Makefile rules, Perl scripts and LaTeX code to be able to generate PDF and DVI
# output from the Perl module output.
# The default value is: NO.
# This tag requires that the tag GENERATE_PERLMOD is set to YES.
PERLMOD_LATEX = NO
# If the PERLMOD_PRETTY tag is set to YES, the Perl module output will be nicely
# formatted so it can be parsed by a human reader. This is useful if you want to
# understand what is going on. On the other hand, if this tag is set to NO, the
# size of the Perl module output will be much smaller and Perl will parse it
# just the same.
# The default value is: YES.
# This tag requires that the tag GENERATE_PERLMOD is set to YES.
PERLMOD_PRETTY = YES
# The names of the make variables in the generated doxyrules.make file are
# prefixed with the string contained in PERLMOD_MAKEVAR_PREFIX. This is useful
# so different doxyrules.make files included by the same Makefile don't
# overwrite each other's variables.
# This tag requires that the tag GENERATE_PERLMOD is set to YES.
PERLMOD_MAKEVAR_PREFIX =
#---------------------------------------------------------------------------
# Configuration options related to the preprocessor
#---------------------------------------------------------------------------
# If the ENABLE_PREPROCESSING tag is set to YES, Doxygen will evaluate all
# C-preprocessor directives found in the sources and include files.
# The default value is: YES.
ENABLE_PREPROCESSING = YES
# If the MACRO_EXPANSION tag is set to YES, Doxygen will expand all macro names
# in the source code. If set to NO, only conditional compilation will be
# performed. Macro expansion can be done in a controlled way by setting
# EXPAND_ONLY_PREDEF to YES.
# The default value is: NO.
# This tag requires that the tag ENABLE_PREPROCESSING is set to YES.
MACRO_EXPANSION = YES
# If the EXPAND_ONLY_PREDEF and MACRO_EXPANSION tags are both set to YES then
# the macro expansion is limited to the macros specified with the PREDEFINED and
# EXPAND_AS_DEFINED tags.
# The default value is: NO.
# This tag requires that the tag ENABLE_PREPROCESSING is set to YES.
EXPAND_ONLY_PREDEF = YES
# If the SEARCH_INCLUDES tag is set to YES, the include files in the
# INCLUDE_PATH will be searched if a #include is found.
# The default value is: YES.
# This tag requires that the tag ENABLE_PREPROCESSING is set to YES.
SEARCH_INCLUDES = YES
# The INCLUDE_PATH tag can be used to specify one or more directories that
# contain include files that are not input files but should be processed by the
# preprocessor. Note that the INCLUDE_PATH is not recursive, so the setting of
# RECURSIVE has no effect here.
# This tag requires that the tag SEARCH_INCLUDES is set to YES.
INCLUDE_PATH =
# You can use the INCLUDE_FILE_PATTERNS tag to specify one or more wildcard
# patterns (like *.h and *.hpp) to filter out the header-files in the
# directories. If left blank, the patterns specified with FILE_PATTERNS will be
# used.
# This tag requires that the tag ENABLE_PREPROCESSING is set to YES.
INCLUDE_FILE_PATTERNS =
# The PREDEFINED tag can be used to specify one or more macro names that are
# defined before the preprocessor is started (similar to the -D option of e.g.
# gcc). The argument of the tag is a list of macros of the form: name or
# name=definition (no spaces). If the definition and the "=" are omitted, "=1"
# is assumed. To prevent a macro definition from being undefined via #undef or
# recursively expanded use the := operator instead of the = operator.
# This tag requires that the tag ENABLE_PREPROCESSING is set to YES.
PREDEFINED = VA_START(f)= \
"VA_SHIFT(v,t)=" \
"MIN(p,q)=" \
"MAX(p,q)=" \
char_to_int(p)= \
GET_32BIT_LSB_FIRST(cp)= \
"PUT_32BIT_LSB_FIRST(cp, value)=" \
"F1(x,y,z)=" \
"F2(x,y,z)=" \
"F3(x,y,z)=" \
"F4(x,y,z)=" \
"MD5STEP(f,w,x,y,z,data,s)=" \
"rol(value,bits)=" \
blk0(i)= \
blk(i)= \
"R0(v,w,x,y,z,i)=" \
"R1(v,w,x,y,z,i)=" \
"R2(v,w,x,y,z,i)=" \
"R3(v,w,x,y,z,i)=" \
"R4(v,w,x,y,z,i)="
# If the MACRO_EXPANSION and EXPAND_ONLY_PREDEF tags are set to YES then this
# tag can be used to specify a list of macro names that should be expanded. The
# macro definition that is found in the sources will be used. Use the PREDEFINED
# tag if you want to use a different macro definition that overrules the
# definition found in the source code.
# This tag requires that the tag ENABLE_PREPROCESSING is set to YES.
EXPAND_AS_DEFINED =
# If the SKIP_FUNCTION_MACROS tag is set to YES then Doxygen's preprocessor will
# remove all references to function-like macros that are alone on a line, have
# an all uppercase name, and do not end with a semicolon. Such function macros
# are typically used for boiler-plate code, and will confuse the parser if not
# removed.
# The default value is: YES.
# This tag requires that the tag ENABLE_PREPROCESSING is set to YES.
SKIP_FUNCTION_MACROS = YES
#---------------------------------------------------------------------------
# Configuration options related to external references
#---------------------------------------------------------------------------
# The TAGFILES tag can be used to specify one or more tag files. For each tag
# file the location of the external documentation should be added. The format of
# a tag file without this location is as follows:
# TAGFILES = file1 file2 ...
# Adding location for the tag files is done as follows:
# TAGFILES = file1=loc1 "file2 = loc2" ...
# where loc1 and loc2 can be relative or absolute paths or URLs. See the
# section "Linking to external documentation" for more information about the use
# of tag files.
# Note: Each tag file must have a unique name (where the name does NOT include
# the path). If a tag file is not located in the directory in which Doxygen is
# run, you must also specify the path to the tagfile here.
TAGFILES =
# When a file name is specified after GENERATE_TAGFILE, Doxygen will create a
# tag file that is based on the input files it reads. See section "Linking to
# external documentation" for more information about the usage of tag files.
GENERATE_TAGFILE =
# If the ALLEXTERNALS tag is set to YES, all external classes and namespaces
# will be listed in the class and namespace index. If set to NO, only the
# inherited external classes will be listed.
# The default value is: NO.
ALLEXTERNALS = NO
# If the EXTERNAL_GROUPS tag is set to YES, all external groups will be listed
# in the topic index. If set to NO, only the current project's groups will be
# listed.
# The default value is: YES.
EXTERNAL_GROUPS = YES
# If the EXTERNAL_PAGES tag is set to YES, all external pages will be listed in
# the related pages index. If set to NO, only the current project's pages will
# be listed.
# The default value is: YES.
EXTERNAL_PAGES = YES
#---------------------------------------------------------------------------
# Configuration options related to diagram generator tools
#---------------------------------------------------------------------------
# If set to YES the inheritance and collaboration graphs will hide inheritance
# and usage relations if the target is undocumented or is not a class.
# The default value is: YES.
HIDE_UNDOC_RELATIONS = YES
# If you set the HAVE_DOT tag to YES then Doxygen will assume the dot tool is
# available from the path. This tool is part of Graphviz (see:
# https://www.graphviz.org/), a graph visualization toolkit from AT&T and Lucent
# Bell Labs. The other options in this section have no effect if this option is
# set to NO
# The default value is: NO.
HAVE_DOT = NO
# The DOT_NUM_THREADS specifies the number of dot invocations Doxygen is allowed
# to run in parallel. When set to 0 Doxygen will base this on the number of
# processors available in the system. You can set it explicitly to a value
# larger than 0 to get control over the balance between CPU load and processing
# speed.
# Minimum value: 0, maximum value: 512, default value: 0.
# This tag requires that the tag HAVE_DOT is set to YES.
DOT_NUM_THREADS = 0
# DOT_COMMON_ATTR is common attributes for nodes, edges and labels of
# subgraphs. When you want a differently looking font in the dot files that
# Doxygen generates you can specify fontname, fontcolor and fontsize attributes.
# For details please see <a href=https://graphviz.org/doc/info/attrs.html>Node,
# Edge and Graph Attributes specification</a> You need to make sure dot is able
# to find the font, which can be done by putting it in a standard location or by
# setting the DOTFONTPATH environment variable or by setting DOT_FONTPATH to the
# directory containing the font. Default graphviz fontsize is 14.
# The default value is: fontname=Helvetica,fontsize=10.
# This tag requires that the tag HAVE_DOT is set to YES.
DOT_COMMON_ATTR = "fontname=Helvetica,fontsize=10"
# DOT_EDGE_ATTR is concatenated with DOT_COMMON_ATTR. For elegant style you can
# add 'arrowhead=open, arrowtail=open, arrowsize=0.5'. <a
# href=https://graphviz.org/doc/info/arrows.html>Complete documentation about
# arrows shapes.</a>
# The default value is: labelfontname=Helvetica,labelfontsize=10.
# This tag requires that the tag HAVE_DOT is set to YES.
DOT_EDGE_ATTR = "labelfontname=Helvetica,labelfontsize=10"
# DOT_NODE_ATTR is concatenated with DOT_COMMON_ATTR. For view without boxes
# around nodes set 'shape=plain' or 'shape=plaintext' <a
# href=https://www.graphviz.org/doc/info/shapes.html>Shapes specification</a>
# The default value is: shape=box,height=0.2,width=0.4.
# This tag requires that the tag HAVE_DOT is set to YES.
DOT_NODE_ATTR = "shape=box,height=0.2,width=0.4"
# You can set the path where dot can find font specified with fontname in
# DOT_COMMON_ATTR and others dot attributes.
# This tag requires that the tag HAVE_DOT is set to YES.
DOT_FONTPATH =
# If the CLASS_GRAPH tag is set to YES or GRAPH or BUILTIN then Doxygen will
# generate a graph for each documented class showing the direct and indirect
# inheritance relations. In case the CLASS_GRAPH tag is set to YES or GRAPH and
# HAVE_DOT is enabled as well, then dot will be used to draw the graph. In case
# the CLASS_GRAPH tag is set to YES and HAVE_DOT is disabled or if the
# CLASS_GRAPH tag is set to BUILTIN, then the built-in generator will be used.
# If the CLASS_GRAPH tag is set to TEXT the direct and indirect inheritance
# relations will be shown as texts / links. Explicit enabling an inheritance
# graph or choosing a different representation for an inheritance graph of a
# specific class, can be accomplished by means of the command \inheritancegraph.
# Disabling an inheritance graph can be accomplished by means of the command
# \hideinheritancegraph.
# Possible values are: NO, YES, TEXT, GRAPH and BUILTIN.
# The default value is: YES.
CLASS_GRAPH = TEXT
# If the COLLABORATION_GRAPH tag is set to YES then Doxygen will generate a
# graph for each documented class showing the direct and indirect implementation
# dependencies (inheritance, containment, and class references variables) of the
# class with other documented classes. Explicit enabling a collaboration graph,
# when COLLABORATION_GRAPH is set to NO, can be accomplished by means of the
# command \collaborationgraph. Disabling a collaboration graph can be
# accomplished by means of the command \hidecollaborationgraph.
# The default value is: YES.
# This tag requires that the tag HAVE_DOT is set to YES.
COLLABORATION_GRAPH = YES
# If the GROUP_GRAPHS tag is set to YES then Doxygen will generate a graph for
# groups, showing the direct groups dependencies. Explicit enabling a group
# dependency graph, when GROUP_GRAPHS is set to NO, can be accomplished by means
# of the command \groupgraph. Disabling a directory graph can be accomplished by
# means of the command \hidegroupgraph. See also the chapter Grouping in the
# manual.
# The default value is: YES.
# This tag requires that the tag HAVE_DOT is set to YES.
GROUP_GRAPHS = YES
# If the UML_LOOK tag is set to YES, Doxygen will generate inheritance and
# collaboration diagrams in a style similar to the OMG's Unified Modeling
# Language.
# The default value is: NO.
# This tag requires that the tag HAVE_DOT is set to YES.
UML_LOOK = NO
# If the UML_LOOK tag is enabled, the fields and methods are shown inside the
# class node. If there are many fields or methods and many nodes the graph may
# become too big to be useful. The UML_LIMIT_NUM_FIELDS threshold limits the
# number of items for each type to make the size more manageable. Set this to 0
# for no limit. Note that the threshold may be exceeded by 50% before the limit
# is enforced. So when you set the threshold to 10, up to 15 fields may appear,
# but if the number exceeds 15, the total amount of fields shown is limited to
# 10.
# Minimum value: 0, maximum value: 100, default value: 10.
# This tag requires that the tag UML_LOOK is set to YES.
UML_LIMIT_NUM_FIELDS = 10
# If the UML_LOOK tag is enabled, field labels are shown along the edge between
# two class nodes. If there are many fields and many nodes the graph may become
# too cluttered. The UML_MAX_EDGE_LABELS threshold limits the number of items to
# make the size more manageable. Set this to 0 for no limit.
# Minimum value: 0, maximum value: 100, default value: 10.
# This tag requires that the tag UML_LOOK is set to YES.
UML_MAX_EDGE_LABELS = 10
# If the DOT_UML_DETAILS tag is set to NO, Doxygen will show attributes and
# methods without types and arguments in the UML graphs. If the DOT_UML_DETAILS
# tag is set to YES, Doxygen will add type and arguments for attributes and
# methods in the UML graphs. If the DOT_UML_DETAILS tag is set to NONE, Doxygen
# will not generate fields with class member information in the UML graphs. The
# class diagrams will look similar to the default class diagrams but using UML
# notation for the relationships.
# Possible values are: NO, YES and NONE.
# The default value is: NO.
# This tag requires that the tag UML_LOOK is set to YES.
DOT_UML_DETAILS = NO
# The DOT_WRAP_THRESHOLD tag can be used to set the maximum number of characters
# to display on a single line. If the actual line length exceeds this threshold
# significantly it will be wrapped across multiple lines. Some heuristics are
# applied to avoid ugly line breaks.
# Minimum value: 0, maximum value: 1000, default value: 17.
# This tag requires that the tag HAVE_DOT is set to YES.
DOT_WRAP_THRESHOLD = 17
# If the TEMPLATE_RELATIONS tag is set to YES then the inheritance and
# collaboration graphs will show the relations between templates and their
# instances.
# The default value is: NO.
# This tag requires that the tag HAVE_DOT is set to YES.
TEMPLATE_RELATIONS = NO
# If the INCLUDE_GRAPH, ENABLE_PREPROCESSING and SEARCH_INCLUDES tags are set to
# YES then Doxygen will generate a graph for each documented file showing the
# direct and indirect include dependencies of the file with other documented
# files. Explicit enabling an include graph, when INCLUDE_GRAPH is is set to NO,
# can be accomplished by means of the command \includegraph. Disabling an
# include graph can be accomplished by means of the command \hideincludegraph.
# The default value is: YES.
# This tag requires that the tag HAVE_DOT is set to YES.
INCLUDE_GRAPH = YES
# If the INCLUDED_BY_GRAPH, ENABLE_PREPROCESSING and SEARCH_INCLUDES tags are
# set to YES then Doxygen will generate a graph for each documented file showing
# the direct and indirect include dependencies of the file with other documented
# files. Explicit enabling an included by graph, when INCLUDED_BY_GRAPH is set
# to NO, can be accomplished by means of the command \includedbygraph. Disabling
# an included by graph can be accomplished by means of the command
# \hideincludedbygraph.
# The default value is: YES.
# This tag requires that the tag HAVE_DOT is set to YES.
INCLUDED_BY_GRAPH = YES
# If the CALL_GRAPH tag is set to YES then Doxygen will generate a call
# dependency graph for every global function or class method.
#
# Note that enabling this option will significantly increase the time of a run.
# So in most cases it will be better to enable call graphs for selected
# functions only using the \callgraph command. Disabling a call graph can be
# accomplished by means of the command \hidecallgraph.
# The default value is: NO.
# This tag requires that the tag HAVE_DOT is set to YES.
CALL_GRAPH = NO
# If the CALLER_GRAPH tag is set to YES then Doxygen will generate a caller
# dependency graph for every global function or class method.
#
# Note that enabling this option will significantly increase the time of a run.
# So in most cases it will be better to enable caller graphs for selected
# functions only using the \callergraph command. Disabling a caller graph can be
# accomplished by means of the command \hidecallergraph.
# The default value is: NO.
# This tag requires that the tag HAVE_DOT is set to YES.
CALLER_GRAPH = NO
# If the GRAPHICAL_HIERARCHY tag is set to YES then Doxygen will graphical
# hierarchy of all classes instead of a textual one.
# The default value is: YES.
# This tag requires that the tag HAVE_DOT is set to YES.
GRAPHICAL_HIERARCHY = YES
# If the DIRECTORY_GRAPH tag is set to YES then Doxygen will show the
# dependencies a directory has on other directories in a graphical way. The
# dependency relations are determined by the #include relations between the
# files in the directories. Explicit enabling a directory graph, when
# DIRECTORY_GRAPH is set to NO, can be accomplished by means of the command
# \directorygraph. Disabling a directory graph can be accomplished by means of
# the command \hidedirectorygraph.
# The default value is: YES.
# This tag requires that the tag HAVE_DOT is set to YES.
DIRECTORY_GRAPH = YES
# The DIR_GRAPH_MAX_DEPTH tag can be used to limit the maximum number of levels
# of child directories generated in directory dependency graphs by dot.
# Minimum value: 1, maximum value: 25, default value: 1.
# This tag requires that the tag DIRECTORY_GRAPH is set to YES.
DIR_GRAPH_MAX_DEPTH = 1
# The DOT_IMAGE_FORMAT tag can be used to set the image format of the images
# generated by dot. For an explanation of the image formats see the section
# output formats in the documentation of the dot tool (Graphviz (see:
# https://www.graphviz.org/)).
#
# Note the formats svg:cairo and svg:cairo:cairo cannot be used in combination
# with INTERACTIVE_SVG (the INTERACTIVE_SVG will be set to NO).
# Possible values are: png, jpg, gif, svg, png:gd, png:gd:gd, png:cairo,
# png:cairo:gd, png:cairo:cairo, png:cairo:gdiplus, png:gdiplus,
# png:gdiplus:gdiplus, svg:cairo, svg:cairo:cairo, svg:svg, svg:svg:core,
# gif:cairo, gif:cairo:gd, gif:cairo:gdiplus, gif:gdiplus, gif:gdiplus:gdiplus,
# gif:gd, gif:gd:gd, jpg:cairo, jpg:cairo:gd, jpg:cairo:gdiplus, jpg:gd,
# jpg:gd:gd, jpg:gdiplus and jpg:gdiplus:gdiplus.
# The default value is: png.
# This tag requires that the tag HAVE_DOT is set to YES.
DOT_IMAGE_FORMAT = png
# If DOT_IMAGE_FORMAT is set to svg or svg:svg or svg:svg:core, then this option
# can be set to YES to enable generation of interactive SVG images that allow
# zooming and panning.
#
# Note that this requires a modern browser other than Internet Explorer. Tested
# and working are Firefox, Chrome, Safari, and Opera.
#
# Note This option will be automatically disabled when DOT_IMAGE_FORMAT is set
# to svg:cairo or svg:cairo:cairo.
# The default value is: NO.
# This tag requires that the tag HAVE_DOT is set to YES.
INTERACTIVE_SVG = NO
# The DOT_PATH tag can be used to specify the path where the dot tool can be
# found. If left blank, it is assumed the dot tool can be found in the path.
# This tag requires that the tag HAVE_DOT is set to YES.
DOT_PATH =
# The DOTFILE_DIRS tag can be used to specify one or more directories that
# contain dot files that are included in the documentation (see the \dotfile
# command).
# This tag requires that the tag HAVE_DOT is set to YES.
DOTFILE_DIRS =
# You can include diagrams made with dia in Doxygen documentation. Doxygen will
# then run dia to produce the diagram and insert it in the documentation. The
# DIA_PATH tag allows you to specify the directory where the dia binary resides.
# If left empty dia is assumed to be found in the default search path.
DIA_PATH =
# The DIAFILE_DIRS tag can be used to specify one or more directories that
# contain dia files that are included in the documentation (see the \diafile
# command).
DIAFILE_DIRS =
# When using PlantUML, the PLANTUML_JAR_PATH tag should be used to specify the
# path where java can find the plantuml.jar file or to the filename of jar file
# to be used. If left blank, it is assumed PlantUML is not used or called during
# a preprocessing step. Doxygen will generate a warning when it encounters a
# \startuml command in this case and will not generate output for the diagram.
PLANTUML_JAR_PATH =
# When using PlantUML, the PLANTUML_CFG_FILE tag can be used to specify a
# configuration file for PlantUML.
PLANTUML_CFG_FILE =
# When using PlantUML, the specified paths are searched for files specified by
# the !include statement in a PlantUML block.
PLANTUML_INCLUDE_PATH =
# The PLANTUMLFILE_DIRS tag can be used to specify one or more directories that
# contain PlantUml files that are included in the documentation (see the
# \plantumlfile command).
PLANTUMLFILE_DIRS =
# The DOT_GRAPH_MAX_NODES tag can be used to set the maximum number of nodes
# that will be shown in the graph. If the number of nodes in a graph becomes
# larger than this value, Doxygen will truncate the graph, which is visualized
# by representing a node as a red box. Note that if the number of direct
# children of the root node in a graph is already larger than
# DOT_GRAPH_MAX_NODES then the graph will not be shown at all. Also note that
# the size of a graph can be further restricted by MAX_DOT_GRAPH_DEPTH.
# Minimum value: 0, maximum value: 10000, default value: 50.
# This tag requires that the tag HAVE_DOT is set to YES.
DOT_GRAPH_MAX_NODES = 50
# The MAX_DOT_GRAPH_DEPTH tag can be used to set the maximum depth of the graphs
# generated by dot. A depth value of 3 means that only nodes reachable from the
# root by following a path via at most 3 edges will be shown. Nodes that lay
# further from the root node will be omitted. Note that setting this option to 1
# or 2 may greatly reduce the computation time needed for large code bases. Also
# note that the size of a graph can be further restricted by
# DOT_GRAPH_MAX_NODES. Using a depth of 0 means no depth restriction.
# Minimum value: 0, maximum value: 1000, default value: 0.
# This tag requires that the tag HAVE_DOT is set to YES.
MAX_DOT_GRAPH_DEPTH = 1000
# Set the DOT_MULTI_TARGETS tag to YES to allow dot to generate multiple output
# files in one run (i.e. multiple -o and -T options on the command line). This
# makes dot run faster, but since only newer versions of dot (>1.8.10) support
# this, this feature is disabled by default.
# The default value is: NO.
# This tag requires that the tag HAVE_DOT is set to YES.
DOT_MULTI_TARGETS = NO
# If the GENERATE_LEGEND tag is set to YES Doxygen will generate a legend page
# explaining the meaning of the various boxes and arrows in the dot generated
# graphs.
# Note: This tag requires that UML_LOOK isn't set, i.e. the Doxygen internal
# graphical representation for inheritance and collaboration diagrams is used.
# The default value is: YES.
# This tag requires that the tag HAVE_DOT is set to YES.
GENERATE_LEGEND = YES
# If the DOT_CLEANUP tag is set to YES, Doxygen will remove the intermediate
# files that are used to generate the various graphs.
#
# Note: This setting is not only used for dot files but also for msc temporary
# files.
# The default value is: YES.
DOT_CLEANUP = YES
# You can define message sequence charts within Doxygen comments using the \msc
# command. If the MSCGEN_TOOL tag is left empty (the default), then Doxygen will
# use a built-in version of mscgen tool to produce the charts. Alternatively,
# the MSCGEN_TOOL tag can also specify the name an external tool. For instance,
# specifying prog as the value, Doxygen will call the tool as prog -T
# <outfile_format> -o <outputfile> <inputfile>. The external tool should support
# output file formats "png", "eps", "svg", and "ismap".
MSCGEN_TOOL =
# The MSCFILE_DIRS tag can be used to specify one or more directories that
# contain msc files that are included in the documentation (see the \mscfile
# command).
MSCFILE_DIRS =
================================================
FILE: GPL-LICENSE.txt
================================================
GNU GENERAL PUBLIC LICENSE
Version 3, 29 June 2007
Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/>
Everyone is permitted to copy and distribute verbatim copies
of this license document, but changing it is not allowed.
Preamble
The GNU General Public License is a free, copyleft license for
software and other kinds of works.
The licenses for most software and other practical works are designed
to take away your freedom to share and change the works. By contrast,
the GNU General Public License is intended to guarantee your freedom to
share and change all versions of a program--to make sure it remains free
software for all its users. We, the Free Software Foundation, use the
GNU General Public License for most of our software; it applies also to
any other work released this way by its authors. You can apply it to
your programs, too.
When we speak of free software, we are referring to freedom, not
price. Our General Public Licenses are designed to make sure that you
have the freedom to distribute copies of free software (and charge for
them if you wish), that you receive source code or can get it if you
want it, that you can change the software or use pieces of it in new
free programs, and that you know you can do these things.
To protect your rights, we need to prevent others from denying you
these rights or asking you to surrender the rights. Therefore, you have
certain responsibilities if you distribute copies of the software, or if
you modify it: responsibilities to respect the freedom of others.
For example, if you distribute copies of such a program, whether
gratis or for a fee, you must pass on to the recipients the same
freedoms that you received. You must make sure that they, too, receive
or can get the source code. And you must show them these terms so they
know their rights.
Developers that use the GNU GPL protect your rights with two steps:
(1) assert copyright on the software, and (2) offer you this License
giving you legal permission to copy, distribute and/or modify it.
For the developers' and authors' protection, the GPL clearly explains
that there is no warranty for this free software. For both users' and
authors' sake, the GPL requires that modified versions be marked as
changed, so that their problems will not be attributed erroneously to
authors of previous versions.
Some devices are designed to deny users access to install or run
modified versions of the software inside them, although the manufacturer
can do so. This is fundamentally incompatible with the aim of
protecting users' freedom to change the software. The systematic
pattern of such abuse occurs in the area of products for individuals to
use, which is precisely where it is most unacceptable. Therefore, we
have designed this version of the GPL to prohibit the practice for those
products. If such problems arise substantially in other domains, we
stand ready to extend this provision to those domains in future versions
of the GPL, as needed to protect the freedom of users.
Finally, every program is threatened constantly by software patents.
States should not allow patents to restrict development and use of
software on general-purpose computers, but in those that do, we wish to
avoid the special danger that patents applied to a free program could
make it effectively proprietary. To prevent this, the GPL assures that
patents cannot be used to render the program non-free.
The precise terms and conditions for copying, distribution and
modification follow.
TERMS AND CONDITIONS
0. Definitions.
"This License" refers to version 3 of the GNU General Public License.
"Copyright" also means copyright-like laws that apply to other kinds of
works, such as semiconductor masks.
"The Program" refers to any copyrightable work licensed under this
License. Each licensee is addressed as "you". "Licensees" and
"recipients" may be individuals or organizations.
To "modify" a work means to copy from or adapt all or part of the work
in a fashion requiring copyright permission, other than the making of an
exact copy. The resulting work is called a "modified version" of the
earlier work or a work "based on" the earlier work.
A "covered work" means either the unmodified Program or a work based
on the Program.
To "propagate" a work means to do anything with it that, without
permission, would make you directly or secondarily liable for
infringement under applicable copyright law, except executing it on a
computer or modifying a private copy. Propagation includes copying,
distribution (with or without modification), making available to the
public, and in some countries other activities as well.
To "convey" a work means any kind of propagation that enables other
parties to make or receive copies. Mere interaction with a user through
a computer network, with no transfer of a copy, is not conveying.
An interactive user interface displays "Appropriate Legal Notices"
to the extent that it includes a convenient and prominently visible
feature that (1) displays an appropriate copyright notice, and (2)
tells the user that there is no warranty for the work (except to the
extent that warranties are provided), that licensees may convey the
work under this License, and how to view a copy of this License. If
the interface presents a list of user commands or options, such as a
menu, a prominent item in the list meets this criterion.
1. Source Code.
The "source code" for a work means the preferred form of the work
for making modifications to it. "Object code" means any non-source
form of a work.
A "Standard Interface" means an interface that either is an official
standard defined by a recognized standards body, or, in the case of
interfaces specified for a particular programming language, one that
is widely used among developers working in that language.
The "System Libraries" of an executable work include anything, other
than the work as a whole, that (a) is included in the normal form of
packaging a Major Component, but which is not part of that Major
Component, and (b) serves only to enable use of the work with that
Major Component, or to implement a Standard Interface for which an
implementation is available to the public in source code form. A
"Major Component", in this context, means a major essential component
(kernel, window system, and so on) of the specific operating system
(if any) on which the executable work runs, or a compiler used to
produce the work, or an object code interpreter used to run it.
The "Corresponding Source" for a work in object code form means all
the source code needed to generate, install, and (for an executable
work) run the object code and to modify the work, including scripts to
control those activities. However, it does not include the work's
System Libraries, or general-purpose tools or generally available free
programs which are used unmodified in performing those activities but
which are not part of the work. For example, Corresponding Source
includes interface definition files associated with source files for
the work, and the source code for shared libraries and dynamically
linked subprograms that the work is specifically designed to require,
such as by intimate data communication or control flow between those
subprograms and other parts of the work.
The Corresponding Source need not include anything that users
can regenerate automatically from other parts of the Corresponding
Source.
The Corresponding Source for a work in source code form is that
same work.
2. Basic Permissions.
All rights granted under this License are granted for the term of
copyright on the Program, and are irrevocable provided the stated
conditions are met. This License explicitly affirms your unlimited
permission to run the unmodified Program. The output from running a
covered work is covered by this License only if the output, given its
content, constitutes a covered work. This License acknowledges your
rights of fair use or other equivalent, as provided by copyright law.
You may make, run and propagate covered works that you do not
convey, without conditions so long as your license otherwise remains
in force. You may convey covered works to others for the sole purpose
of having them make modifications exclusively for you, or provide you
with facilities for running those works, provided that you comply with
the terms of this License in conveying all material for which you do
not control copyright. Those thus making or running the covered works
for you must do so exclusively on your behalf, under your direction
and control, on terms that prohibit them from making any copies of
your copyrighted material outside their relationship with you.
Conveying under any other circumstances is permitted solely under
the conditions stated below. Sublicensing is not allowed; section 10
makes it unnecessary.
3. Protecting Users' Legal Rights From Anti-Circumvention Law.
No covered work shall be deemed part of an effective technological
measure under any applicable law fulfilling obligations under article
11 of the WIPO copyright treaty adopted on 20 December 1996, or
similar laws prohibiting or restricting circumvention of such
measures.
When you convey a covered work, you waive any legal power to forbid
circumvention of technological measures to the extent such circumvention
is effected by exercising rights under this License with respect to
the covered work, and you disclaim any intention to limit operation or
modification of the work as a means of enforcing, against the work's
users, your or third parties' legal rights to forbid circumvention of
technological measures.
4. Conveying Verbatim Copies.
You may convey verbatim copies of the Program's source code as you
receive it, in any medium, provided that you conspicuously and
appropriately publish on each copy an appropriate copyright notice;
keep intact all notices stating that this License and any
non-permissive terms added in accord with section 7 apply to the code;
keep intact all notices of the absence of any warranty; and give all
recipients a cop
gitextract_57zn470u/
├── .git-blame-ignore-revs
├── .github/
│ ├── ISSUE_TEMPLATE/
│ │ └── 01-bug_report.md
│ └── workflows/
│ └── main.yml
├── .gitignore
├── AUTHORS
├── COPYING
├── ChangeLog
├── Doxyfile
├── GPL-LICENSE.txt
├── LICENSE.txt
├── MIT-LICENSE.txt
├── Makefile.am
├── NEWS
├── README.markdown
├── TODO
├── _clang-format
├── bootstrap.sh
├── build-android.sh
├── configure.ac
├── docs/
│ └── .keep
├── examples/
│ ├── README.md
│ ├── active.c
│ ├── basic.c
│ ├── bot.c
│ ├── complex.c
│ ├── component.c
│ ├── perf.c
│ ├── register.c
│ ├── roster.c
│ ├── uuid.c
│ └── vcard.c
├── jni/
│ ├── Android.mk
│ └── Application.mk
├── libstrophe.pc.in
├── m4/
│ ├── ac_try_compile2.m4
│ └── ax_valgrind_check.m4
├── src/
│ ├── auth.c
│ ├── common.h
│ ├── compression.c
│ ├── compression_dummy.c
│ ├── conn.c
│ ├── crypto.c
│ ├── ctx.c
│ ├── deprecated.c
│ ├── event.c
│ ├── handler.c
│ ├── hash.c
│ ├── hash.h
│ ├── jid.c
│ ├── md5.c
│ ├── md5.h
│ ├── ostypes.h
│ ├── parser.h
│ ├── parser_expat.c
│ ├── parser_libxml2.c
│ ├── rand.c
│ ├── resolver.c
│ ├── resolver.h
│ ├── sasl.c
│ ├── sasl.h
│ ├── scram.c
│ ├── scram.h
│ ├── sha.h
│ ├── sha1.c
│ ├── sha1.h
│ ├── sha256.c
│ ├── sha256.h
│ ├── sha512.c
│ ├── sha512.h
│ ├── snprintf.c
│ ├── snprintf.h
│ ├── sock.c
│ ├── sock.h
│ ├── stanza.c
│ ├── tls.c
│ ├── tls.h
│ ├── tls_dummy.c
│ ├── tls_gnutls.c
│ ├── tls_openssl.c
│ ├── tls_schannel.c
│ ├── util.c
│ ├── util.h
│ └── uuid.c
├── strophe.h
├── testbuild.sh
├── tests/
│ ├── cert.emptypass.pfx
│ ├── cert.nopass.pfx
│ ├── cert.pem
│ ├── cert.pfx
│ ├── check_parser.c
│ ├── key.pem
│ ├── key_encrypted.pem
│ ├── res_query_dump.c
│ ├── test.c
│ ├── test.h
│ ├── test_base64.c
│ ├── test_ctx.c
│ ├── test_fuzz_parser.c
│ ├── test_fuzz_resolver.c
│ ├── test_hash.c
│ ├── test_jid.c
│ ├── test_md5.c
│ ├── test_rand.c
│ ├── test_resolver.c
│ ├── test_sasl.c
│ ├── test_scram.c
│ ├── test_send_queue.c
│ ├── test_serialize_sm.c
│ ├── test_sha1.c
│ ├── test_sha256.c
│ ├── test_sha512.c
│ ├── test_snprintf.c
│ ├── test_sock.c
│ ├── test_stanza.c
│ ├── test_string.c
│ └── test_xmppaddr.c
└── travis/
└── before_script.sh
SYMBOL INDEX (719 symbols across 78 files)
FILE: examples/active.c
function handle_reply (line 23) | int handle_reply(xmpp_conn_t *conn, xmpp_stanza_t *stanza, void *userdata)
function conn_handler (line 48) | void conn_handler(xmpp_conn_t *conn,
function main (line 91) | int main(int argc, char **argv)
FILE: examples/basic.c
function conn_handler (line 20) | static void conn_handler(xmpp_conn_t *conn,
function usage (line 40) | static void usage(int exit_code)
function main (line 58) | int main(int argc, char **argv)
FILE: examples/bot.c
function version_handler (line 35) | int version_handler(xmpp_conn_t *conn, xmpp_stanza_t *stanza, void *user...
function _quit_handler (line 81) | static int _quit_handler(xmpp_conn_t *conn, void *userdata)
function message_handler (line 88) | int message_handler(xmpp_conn_t *conn, xmpp_stanza_t *stanza, void *user...
function conn_handler (line 134) | void conn_handler(xmpp_conn_t *conn,
function password_callback (line 184) | static int
function usage (line 205) | static void usage(int exit_code)
function main (line 229) | int main(int argc, char **argv)
FILE: examples/complex.c
function print_tlscert (line 39) | static void print_tlscert(const xmpp_tlscert_t *cert)
function conn_handler (line 54) | static void conn_handler(xmpp_conn_t *conn,
function certfail_handler (line 83) | static int certfail_handler(const xmpp_tlscert_t *cert,
function password_callback (line 122) | static int
function sockopt_cb (line 143) | static int sockopt_cb(xmpp_conn_t *conn, void *socket)
function usage (line 223) | static void usage(int exit_code)
function main (line 253) | int main(int argc, char **argv)
FILE: examples/component.c
function conn_handler (line 24) | void conn_handler(xmpp_conn_t *conn,
function main (line 44) | int main(int argc, char **argv)
FILE: examples/perf.c
function perf_rand (line 33) | static void perf_rand(xmpp_ctx_t *ctx)
function main (line 74) | int main()
function rdtsc (line 92) | static uint64_t rdtsc(void)
function t_start (line 164) | static void t_start(void)
function t_read (line 169) | static uint64_t t_read(void)
function init_timer (line 174) | static void init_timer(void)
FILE: examples/register.c
type xmpp_reg_t (line 33) | typedef struct {
function iq_reg_send_form (line 40) | static void
function iq_reg2_cb (line 106) | static int iq_reg2_cb(xmpp_conn_t *conn, xmpp_stanza_t *stanza, void *us...
function iq_reg_cb (line 131) | static int iq_reg_cb(xmpp_conn_t *conn, xmpp_stanza_t *stanza, void *use...
function _handle_error (line 166) | static int
function _handle_proceedtls_default (line 178) | static int _handle_proceedtls_default(xmpp_conn_t *conn,
function _handle_missing_features (line 200) | static int _handle_missing_features(xmpp_conn_t *conn, void *userdata)
function _handle_features (line 210) | static int
function conn_handler (line 262) | static void conn_handler(xmpp_conn_t *conn,
function xmpp_reg_t (line 298) | xmpp_reg_t *xmpp_reg_new(void)
function xmpp_reg_release (line 309) | void xmpp_reg_release(xmpp_reg_t *reg)
function main (line 314) | int main(int argc, char **argv)
FILE: examples/roster.c
function handle_reply (line 22) | int handle_reply(xmpp_conn_t *conn, xmpp_stanza_t *stanza, void *userdata)
function conn_handler (line 53) | void conn_handler(xmpp_conn_t *conn,
function main (line 94) | int main(int argc, char **argv)
FILE: examples/uuid.c
function main (line 4) | int main()
FILE: examples/vcard.c
type vcard_t (line 25) | typedef struct {
function vcard_photo (line 36) | static void vcard_photo(vcard_t *vc, xmpp_stanza_t *stanza)
function vcard_print_string (line 85) | static void
function vcard_bday (line 95) | static void vcard_bday(vcard_t *vc, xmpp_stanza_t *stanza)
function vcard_desc (line 100) | static void vcard_desc(vcard_t *vc, xmpp_stanza_t *stanza)
function vcard_email (line 105) | static void vcard_email(vcard_t *vc, xmpp_stanza_t *stanza)
function vcard_fn (line 113) | static void vcard_fn(vcard_t *vc, xmpp_stanza_t *stanza)
function vcard_name (line 118) | static void vcard_name(vcard_t *vc, xmpp_stanza_t *stanza)
function vcard_nick (line 129) | static void vcard_nick(vcard_t *vc, xmpp_stanza_t *stanza)
function vcard_url (line 134) | static void vcard_url(vcard_t *vc, xmpp_stanza_t *stanza)
function vcard_cb_t (line 139) | static vcard_cb_t vcard_cb_get(xmpp_stanza_t *stanza)
function timedout (line 169) | static int timedout(xmpp_conn_t *conn, void *userdata)
function recv_vcard (line 179) | static int recv_vcard(xmpp_conn_t *conn, xmpp_stanza_t *stanza, void *us...
function send_vcard_req (line 215) | static void send_vcard_req(xmpp_conn_t *conn, const char *to, const char...
function conn_handler (line 224) | static void conn_handler(xmpp_conn_t *conn,
function main (line 246) | int main(int argc, char **argv)
FILE: src/auth.c
type scram_user_data (line 90) | struct scram_user_data
type scram_user_data (line 91) | struct scram_user_data
function _handle_error (line 106) | static int
function _handle_missing_features (line 202) | static int _handle_missing_features(xmpp_conn_t *conn, void *userdata)
function _foreach_child (line 215) | static void _foreach_child(xmpp_conn_t *conn,
function _handle_sasl_children (line 236) | static void _handle_sasl_children(xmpp_conn_t *conn, const char *text)
function _handle_features (line 258) | static int
function _handle_proceedtls_default (line 312) | static int _handle_proceedtls_default(xmpp_conn_t *conn,
function _handle_sasl_result (line 338) | static int
function _handle_digestmd5_challenge (line 376) | static int _handle_digestmd5_challenge(xmpp_conn_t *conn,
function _handle_digestmd5_rspauth (line 433) | static int _handle_digestmd5_rspauth(xmpp_conn_t *conn,
type scram_user_data (line 463) | struct scram_user_data {
function _handle_scram_challenge (line 473) | static int _handle_scram_challenge(xmpp_conn_t *conn,
function _make_scram_init_msg (line 555) | static int _make_scram_init_msg(struct scram_user_data *scram)
function xmpp_stanza_t (line 647) | static xmpp_stanza_t *_make_starttls(xmpp_conn_t *conn)
function xmpp_stanza_t (line 661) | static xmpp_stanza_t *_make_sasl_auth(xmpp_conn_t *conn, const char *mec...
function _auth (line 681) | static void _auth(xmpp_conn_t *conn)
function _stream_negotiation_success (line 918) | static void _stream_negotiation_success(xmpp_conn_t *conn)
function auth_handle_open (line 935) | void auth_handle_open(xmpp_conn_t *conn)
function _handle_open_tls (line 951) | static void _handle_open_tls(xmpp_conn_t *conn)
function _handle_open_sasl (line 960) | static void _handle_open_sasl(xmpp_conn_t *conn)
function _handle_open_compress (line 972) | static void _handle_open_compress(xmpp_conn_t *conn)
function _do_bind (line 982) | static int _do_bind(xmpp_conn_t *conn, xmpp_stanza_t *bind)
function _handle_compress_result (line 1039) | static int _handle_compress_result(xmpp_conn_t *const conn,
function _handle_features_compress (line 1065) | static int _handle_features_compress(xmpp_conn_t *conn,
function _handle_features_sasl (line 1095) | static int
function _handle_missing_features_sasl (line 1180) | static int _handle_missing_features_sasl(xmpp_conn_t *conn, void *userdata)
function _session_start (line 1191) | static void _session_start(xmpp_conn_t *conn)
function _sm_enable (line 1220) | static void _sm_enable(xmpp_conn_t *conn)
function _handle_bind (line 1238) | static int
function _handle_missing_bind (line 1288) | static int _handle_missing_bind(xmpp_conn_t *conn, void *userdata)
function _handle_session (line 1297) | static int
function _handle_missing_session (line 1328) | static int _handle_missing_session(xmpp_conn_t *conn, void *userdata)
function _handle_missing_legacy (line 1338) | static int _handle_missing_legacy(xmpp_conn_t *conn, void *userdata)
function _get_h_attribute (line 1349) | static int _get_h_attribute(xmpp_stanza_t *stanza, unsigned long *ul_h)
function _sm_queue_cleanup (line 1362) | static void _sm_queue_cleanup(xmpp_conn_t *conn, unsigned long ul_h)
function _sm_queue_resend (line 1373) | static void _sm_queue_resend(xmpp_conn_t *conn)
function _handle_sm (line 1387) | static int _handle_sm(xmpp_conn_t *const conn,
function _handle_legacy (line 1517) | static int
function _auth_legacy (line 1556) | static void _auth_legacy(xmpp_conn_t *conn)
function auth_handle_component_open (line 1642) | void auth_handle_component_open(xmpp_conn_t *conn)
function _handle_component_auth (line 1662) | int _handle_component_auth(xmpp_conn_t *conn)
function _handle_component_hs_response (line 1713) | int _handle_component_hs_response(xmpp_conn_t *conn,
function _handle_missing_handshake (line 1744) | int _handle_missing_handshake(xmpp_conn_t *conn, void *userdata)
function auth_handle_open_raw (line 1754) | void auth_handle_open_raw(xmpp_conn_t *conn)
function auth_handle_open_stub (line 1761) | void auth_handle_open_stub(xmpp_conn_t *conn)
FILE: src/common.h
type xmpp_handlist_t (line 50) | typedef struct _xmpp_handlist_t xmpp_handlist_t;
type _xmpp_handlist_t (line 51) | struct _xmpp_handlist_t {
type xmpp_loop_status_t (line 82) | typedef enum {
type xmpp_connlist_t (line 88) | typedef struct _xmpp_connlist_t {
type _xmpp_ctx_t (line 93) | struct _xmpp_ctx_t {
type xmpp_conn_state_t (line 155) | typedef enum {
type xmpp_send_queue_owner_t (line 161) | typedef enum {
type xmpp_send_queue_t (line 168) | typedef struct _xmpp_send_queue_t xmpp_send_queue_t;
type _xmpp_send_queue_t (line 169) | struct _xmpp_send_queue_t {
type xmpp_queue_t (line 211) | typedef struct {
type _xmpp_sm_t (line 215) | struct _xmpp_sm_t {
type conn_interface (line 228) | struct conn_interface {
type conn_interface (line 238) | struct conn_interface
type conn_interface (line 241) | struct conn_interface
type _xmpp_conn_t (line 247) | struct _xmpp_conn_t {
type xmpp_stanza_type_t (line 354) | typedef enum {
type _xmpp_stanza_t (line 360) | struct _xmpp_stanza_t {
FILE: src/compression.c
type zlib_compression (line 30) | struct zlib_compression {
type xmpp_compression (line 35) | struct xmpp_compression {
function _conn_decompress (line 41) | static int _conn_decompress(struct xmpp_compression *comp,
function compression_read (line 76) | static int compression_read(struct conn_interface *intf, void *buff, siz...
function _try_compressed_write_to_network (line 94) | static int _try_compressed_write_to_network(xmpp_conn_t *conn, int force)
function _compression_write (line 112) | static int
function compression_write (line 150) | static int
function compression_flush (line 156) | static int compression_flush(struct conn_interface *intf)
function compression_pending (line 165) | static int compression_pending(struct conn_interface *intf)
function compression_get_error (line 173) | static int compression_get_error(struct conn_interface *intf)
function compression_is_recoverable (line 179) | static int compression_is_recoverable(struct conn_interface *intf, int err)
type conn_interface (line 185) | struct conn_interface
function _init_zlib_compression (line 204) | static void _init_zlib_compression(xmpp_ctx_t *ctx, struct zlib_compress...
function compression_init (line 214) | int compression_init(xmpp_conn_t *conn)
function compression_free (line 253) | void compression_free(xmpp_conn_t *conn)
function compression_handle_feature_children (line 268) | void compression_handle_feature_children(xmpp_conn_t *conn, const char *...
FILE: src/compression_dummy.c
function compression_init (line 21) | int compression_init(xmpp_conn_t *conn)
function compression_free (line 27) | void compression_free(xmpp_conn_t *conn)
function compression_handle_feature_children (line 32) | void compression_handle_feature_children(xmpp_conn_t *conn, const char *...
FILE: src/conn.c
function xmpp_send_error (line 123) | void xmpp_send_error(xmpp_conn_t *conn, xmpp_error_type_t type, char *text)
function xmpp_conn_t (line 138) | xmpp_conn_t *xmpp_conn_new(xmpp_ctx_t *ctx)
function xmpp_conn_t (line 217) | xmpp_conn_t *xmpp_conn_clone(xmpp_conn_t *conn)
function xmpp_conn_set_sockopt_callback (line 241) | void xmpp_conn_set_sockopt_callback(xmpp_conn_t *conn,
function xmpp_conn_release (line 259) | int xmpp_conn_release(xmpp_conn_t *conn)
function xmpp_conn_set_jid (line 414) | void xmpp_conn_set_jid(xmpp_conn_t *conn, const char *jid)
function xmpp_conn_set_certfail_handler (line 429) | void xmpp_conn_set_certfail_handler(xmpp_conn_t *const conn,
function xmpp_conn_set_cafile (line 442) | void xmpp_conn_set_cafile(xmpp_conn_t *const conn, const char *path)
function xmpp_conn_set_capath (line 456) | void xmpp_conn_set_capath(xmpp_conn_t *const conn, const char *path)
function xmpp_tlscert_t (line 474) | xmpp_tlscert_t *xmpp_conn_get_peer_cert(xmpp_conn_t *const conn)
function xmpp_conn_set_password_callback (line 488) | void xmpp_conn_set_password_callback(xmpp_conn_t *conn,
function xmpp_conn_set_password_retries (line 506) | void xmpp_conn_set_password_retries(xmpp_conn_t *conn, unsigned int retr...
function xmpp_conn_set_client_cert (line 549) | void xmpp_conn_set_client_cert(xmpp_conn_t *const conn,
function xmpp_conn_cert_xmppaddr_num (line 581) | unsigned int xmpp_conn_cert_xmppaddr_num(xmpp_conn_t *const conn)
function xmpp_conn_set_pass (line 622) | void xmpp_conn_set_pass(xmpp_conn_t *conn, const char *pass)
function xmpp_ctx_t (line 636) | xmpp_ctx_t *xmpp_conn_get_context(xmpp_conn_t *conn)
function xmpp_connect_client (line 662) | int xmpp_connect_client(xmpp_conn_t *conn,
function xmpp_connect_component (line 751) | int xmpp_connect_component(xmpp_conn_t *conn,
function xmpp_connect_raw (line 804) | int xmpp_connect_raw(xmpp_conn_t *conn,
function conn_established (line 815) | void conn_established(xmpp_conn_t *conn)
function xmpp_conn_open_stream_default (line 850) | int xmpp_conn_open_stream_default(xmpp_conn_t *conn)
function xmpp_conn_open_stream (line 877) | int xmpp_conn_open_stream(xmpp_conn_t *conn,
function xmpp_conn_tls_start (line 895) | int xmpp_conn_tls_start(xmpp_conn_t *conn)
function conn_disconnect_clean (line 906) | void conn_disconnect_clean(xmpp_conn_t *conn)
function conn_disconnect (line 920) | void conn_disconnect(xmpp_conn_t *conn)
function conn_prepare_reset (line 941) | void conn_prepare_reset(xmpp_conn_t *conn, xmpp_open_handler handler)
function conn_parser_reset (line 948) | void conn_parser_reset(xmpp_conn_t *conn)
function xmpp_disconnect (line 963) | void xmpp_disconnect(xmpp_conn_t *conn)
function xmpp_send_raw_string (line 989) | void xmpp_send_raw_string(xmpp_conn_t *conn, const char *fmt, ...)
function xmpp_send_raw (line 1013) | void xmpp_send_raw(xmpp_conn_t *conn, const char *data, size_t len)
function xmpp_send (line 1027) | void xmpp_send(xmpp_conn_t *conn, xmpp_stanza_t *stanza)
function conn_open_stream (line 1038) | void conn_open_stream(xmpp_conn_t *conn)
function conn_interface_write (line 1068) | int conn_interface_write(struct conn_interface *intf,
function conn_int_nop (line 1079) | int conn_int_nop(struct conn_interface *intf)
function conn_tls_start (line 1085) | int conn_tls_start(xmpp_conn_t *conn)
function xmpp_conn_get_flags (line 1129) | long xmpp_conn_get_flags(const xmpp_conn_t *conn)
function xmpp_conn_set_flags (line 1171) | int xmpp_conn_set_flags(xmpp_conn_t *conn, long flags)
function xmpp_conn_is_secured (line 1215) | int xmpp_conn_is_secured(xmpp_conn_t *conn)
function xmpp_conn_is_connecting (line 1225) | int xmpp_conn_is_connecting(xmpp_conn_t *conn)
function _is_connected (line 1232) | static int _is_connected(xmpp_conn_t *conn, xmpp_send_queue_owner_t owner)
function xmpp_conn_is_connected (line 1244) | int xmpp_conn_is_connected(xmpp_conn_t *conn)
function xmpp_conn_is_disconnected (line 1254) | int xmpp_conn_is_disconnected(xmpp_conn_t *conn)
function xmpp_conn_set_sm_callback (line 1276) | void xmpp_conn_set_sm_callback(xmpp_conn_t *conn,
type sm_restore (line 1284) | struct sm_restore {
function sm_load_u32 (line 1290) | static int sm_load_u32(struct sm_restore *sm, uint8_t type, uint32_t *val)
function sm_load_string (line 1312) | static int sm_load_string(struct sm_restore *sm, char **val, size_t *len)
function xmpp_conn_restore_sm_state (line 1349) | int xmpp_conn_restore_sm_state(xmpp_conn_t *conn,
function sm_store_u32 (line 1470) | static int sm_store_u32(unsigned char **next_,
function sm_state_serialize (line 1486) | static size_t sm_state_serialize(xmpp_conn_t *conn, unsigned char **buf)
function trigger_sm_callback (line 1579) | void trigger_sm_callback(xmpp_conn_t *conn)
function _reset_sm_state_for_reconnect (line 1590) | static void _reset_sm_state_for_reconnect(xmpp_conn_t *conn)
function xmpp_sm_state_t (line 1635) | xmpp_sm_state_t *xmpp_conn_get_sm_state(xmpp_conn_t *conn)
function xmpp_conn_set_sm_state (line 1658) | int xmpp_conn_set_sm_state(xmpp_conn_t *conn, xmpp_sm_state_t *sm_state)
function reset_sm_state (line 1684) | void reset_sm_state(xmpp_sm_state_t *sm_state)
function xmpp_free_sm_state (line 1706) | void xmpp_free_sm_state(xmpp_sm_state_t *sm_state)
function xmpp_conn_send_queue_len (line 1729) | int xmpp_conn_send_queue_len(const xmpp_conn_t *conn)
function _disconnect_cleanup (line 1833) | static int _disconnect_cleanup(xmpp_conn_t *conn, void *userdata)
function _conn_open_stream_with_attributes (line 1889) | static int _conn_open_stream_with_attributes(xmpp_conn_t *conn,
function _conn_attributes_new (line 1905) | static void _conn_attributes_new(xmpp_conn_t *conn,
function _conn_attributes_destroy (line 1935) | static void _conn_attributes_destroy(xmpp_conn_t *conn,
function _log_open_tag (line 1948) | static void _log_open_tag(xmpp_conn_t *conn, char **attrs)
function _handle_stream_start (line 1977) | static void _handle_stream_start(char *name, char **attrs, void *userdata)
function _handle_stream_end (line 2013) | static void _handle_stream_end(char *name, void *userdata)
function _handle_stream_stanza (line 2027) | static void _handle_stream_stanza(xmpp_stanza_t *stanza, void *userdata)
function _conn_sm_handle_stanza (line 2044) | static void _conn_sm_handle_stanza(xmpp_conn_t *const conn,
function _conn_default_port (line 2102) | static unsigned short _conn_default_port(xmpp_conn_t *conn,
function _conn_reset (line 2126) | static void _conn_reset(xmpp_conn_t *conn)
function _conn_connect (line 2175) | static int _conn_connect(xmpp_conn_t *conn,
function send_raw (line 2219) | void send_raw(xmpp_conn_t *conn,
function _send_valist (line 2239) | static void _send_valist(xmpp_conn_t *conn,
function send_raw_string (line 2278) | void send_raw_string(xmpp_conn_t *conn, const char *fmt, ...)
function send_stanza (line 2290) | void send_stanza(xmpp_conn_t *conn,
function add_queue_back (line 2310) | void add_queue_back(xmpp_queue_t *queue, xmpp_send_queue_t *item)
function xmpp_send_queue_t (line 2324) | xmpp_send_queue_t *peek_queue_front(xmpp_queue_t *queue)
function xmpp_send_queue_t (line 2329) | xmpp_send_queue_t *pop_queue_front(xmpp_queue_t *queue)
function _send_raw (line 2344) | static int _send_raw(xmpp_conn_t *conn,
FILE: src/crypto.c
type _xmpp_sha1_t (line 32) | struct _xmpp_sha1_t {
function xmpp_sha1_digest (line 95) | void xmpp_sha1_digest(const unsigned char *data,
function xmpp_sha1_t (line 122) | xmpp_sha1_t *xmpp_sha1_new(xmpp_ctx_t *ctx)
function xmpp_sha1_free (line 141) | void xmpp_sha1_free(xmpp_sha1_t *sha1)
function xmpp_sha1_update (line 155) | void xmpp_sha1_update(xmpp_sha1_t *sha1, const unsigned char *data, size...
function xmpp_sha1_final (line 168) | void xmpp_sha1_final(xmpp_sha1_t *sha1)
function xmpp_sha1_to_digest (line 213) | void xmpp_sha1_to_digest(xmpp_sha1_t *sha1, unsigned char *digest)
function base64_encoded_len (line 248) | static size_t base64_encoded_len(size_t len)
function base64_decoded_len (line 307) | static size_t base64_decoded_len(const char *buffer, size_t len)
function base64_decode (line 333) | static void base64_decode(xmpp_ctx_t *ctx,
function xmpp_base64_decode_bin (line 502) | void xmpp_base64_decode_bin(xmpp_ctx_t *ctx,
FILE: src/ctx.c
function xmpp_initialize (line 78) | void xmpp_initialize(void)
function xmpp_shutdown (line 89) | void xmpp_shutdown(void)
function xmpp_version_check (line 128) | int xmpp_version_check(int major, int minor)
function _free (line 144) | static void _free(void *p, void *userdata)
function xmpp_default_logger (line 175) | static void xmpp_default_logger(void *userdata,
function xmpp_log_t (line 206) | xmpp_log_t *xmpp_get_default_logger(xmpp_log_level_t level)
function strophe_free (line 238) | void strophe_free(const xmpp_ctx_t *ctx, void *p)
function xmpp_free (line 248) | void xmpp_free(const xmpp_ctx_t *ctx, void *p)
function _strophe_log (line 280) | static void _strophe_log(const xmpp_ctx_t *ctx,
function strophe_log_internal (line 329) | void strophe_log_internal(const xmpp_ctx_t *ctx,
function strophe_error (line 348) | void strophe_error(const xmpp_ctx_t *ctx,
function strophe_warn (line 370) | void strophe_warn(const xmpp_ctx_t *ctx, const char *area, const char *f...
function strophe_info (line 389) | void strophe_info(const xmpp_ctx_t *ctx, const char *area, const char *f...
function strophe_debug (line 408) | void strophe_debug(const xmpp_ctx_t *ctx,
function strophe_debug_verbose (line 431) | void strophe_debug_verbose(
function xmpp_ctx_t (line 458) | xmpp_ctx_t *xmpp_ctx_new(const xmpp_mem_t *mem, const xmpp_log_t *log)
function xmpp_ctx_free (line 498) | void xmpp_ctx_free(xmpp_ctx_t *ctx)
function xmpp_ctx_set_verbosity (line 512) | void xmpp_ctx_set_verbosity(xmpp_ctx_t *ctx, int level)
FILE: src/deprecated.c
function xmpp_log (line 89) | void xmpp_log(const xmpp_ctx_t *ctx,
function xmpp_error (line 110) | void xmpp_error(const xmpp_ctx_t *ctx, const char *area, const char *fmt...
function xmpp_warn (line 131) | void xmpp_warn(const xmpp_ctx_t *ctx, const char *area, const char *fmt,...
function xmpp_info (line 152) | void xmpp_info(const xmpp_ctx_t *ctx, const char *area, const char *fmt,...
function xmpp_debug (line 173) | void xmpp_debug(const xmpp_ctx_t *ctx, const char *area, const char *fmt...
function xmpp_debug_verbose (line 195) | void xmpp_debug_verbose(
function xmpp_snprintf (line 220) | int xmpp_snprintf(char *str, size_t count, const char *fmt, ...)
function xmpp_vsnprintf (line 231) | int xmpp_vsnprintf(char *str, size_t count, const char *fmt, va_list arg)
function xmpp_conn_set_keepalive (line 251) | void xmpp_conn_set_keepalive(xmpp_conn_t *conn, int timeout, int interval)
function xmpp_conn_disable_tls (line 270) | void xmpp_conn_disable_tls(xmpp_conn_t *conn)
FILE: src/event.c
function _connect_next (line 66) | static int _connect_next(xmpp_conn_t *conn)
function xmpp_run_once (line 91) | void xmpp_run_once(xmpp_ctx_t *ctx, unsigned long timeout)
function xmpp_run (line 360) | void xmpp_run(xmpp_ctx_t *ctx)
function xmpp_stop (line 384) | void xmpp_stop(xmpp_ctx_t *ctx)
function xmpp_ctx_set_timeout (line 399) | void xmpp_ctx_set_timeout(xmpp_ctx_t *ctx, unsigned long timeout)
FILE: src/handler.c
function _handler_item_remove (line 37) | static void _handler_item_remove(xmpp_handlist_t **head, xmpp_handlist_t...
function _free_handlist_item (line 48) | static void _free_handlist_item(xmpp_ctx_t *ctx, xmpp_handlist_t *item)
function handler_fire_stanza (line 66) | void handler_fire_stanza(xmpp_conn_t *conn, xmpp_stanza_t *stanza)
function handler_fire_timed (line 152) | uint64_t handler_fire_timed(xmpp_ctx_t *ctx)
function handler_reset_timed (line 245) | void handler_reset_timed(xmpp_conn_t *conn, int user_only)
function _timed_handler_add (line 258) | static void _timed_handler_add(xmpp_ctx_t *ctx,
function _timed_handler_delete (line 295) | static void _timed_handler_delete(xmpp_ctx_t *ctx,
function xmpp_timed_handler_delete (line 319) | void xmpp_timed_handler_delete(xmpp_conn_t *conn, xmpp_timed_handler han...
function _id_handler_add (line 324) | static void _id_handler_add(xmpp_conn_t *conn,
function xmpp_id_handler_delete (line 380) | void xmpp_id_handler_delete(xmpp_conn_t *conn,
function _dup_string (line 412) | static int _dup_string(xmpp_ctx_t *ctx, const char *src, char **dest)
function _handler_add (line 423) | static void _handler_add(xmpp_conn_t *conn,
function xmpp_handler_delete (line 485) | void xmpp_handler_delete(xmpp_conn_t *conn, xmpp_handler handler)
function xmpp_timed_handler_add (line 526) | void xmpp_timed_handler_add(xmpp_conn_t *conn,
function handler_add_timed (line 544) | void handler_add_timed(xmpp_conn_t *conn,
function xmpp_id_handler_add (line 569) | void xmpp_id_handler_add(xmpp_conn_t *conn,
function handler_add_id (line 586) | void handler_add_id(xmpp_conn_t *conn,
function xmpp_handler_add (line 616) | void xmpp_handler_add(xmpp_conn_t *conn,
function handler_add (line 637) | void handler_add(xmpp_conn_t *conn,
function handler_system_delete_all (line 652) | void handler_system_delete_all(xmpp_conn_t *conn)
function xmpp_global_timed_handler_add (line 743) | void xmpp_global_timed_handler_add(xmpp_ctx_t *ctx,
function xmpp_global_timed_handler_delete (line 758) | void xmpp_global_timed_handler_delete(xmpp_ctx_t *ctx,
FILE: src/hash.c
type hashentry_t (line 25) | typedef struct _hashentry_t hashentry_t;
type _hashentry_t (line 27) | struct _hashentry_t {
type _hash_t (line 33) | struct _hash_t {
type _hash_iterator_t (line 42) | struct _hash_iterator_t {
function hash_t (line 50) | hash_t *hash_new(xmpp_ctx_t *ctx, int size, hash_free_func free_func)
function hash_t (line 75) | hash_t *hash_clone(hash_t *table)
function hash_release (line 82) | void hash_release(hash_t *table)
function _hash_key (line 108) | static int _hash_key(hash_t *table, const char *key)
function hashentry_t (line 124) | hashentry_t *_hash_entry_find(hash_t *table, const char *key)
function hash_add (line 146) | int hash_add(hash_t *table, const char *key, void *data)
function hash_drop (line 189) | int hash_drop(hash_t *table, const char *key)
function hash_num_keys (line 221) | int hash_num_keys(hash_t *table)
function hash_iterator_t (line 227) | hash_iterator_t *hash_iter_new(hash_t *table)
function hash_iter_release (line 244) | void hash_iter_release(hash_iterator_t *iter)
FILE: src/hash.h
type hash_t (line 20) | typedef struct _hash_t hash_t;
type hash_iterator_t (line 49) | typedef struct _hash_iterator_t hash_iterator_t;
FILE: src/md5.c
function MD5Init (line 52) | void MD5Init(struct MD5Context *ctx)
function MD5Update (line 69) | void MD5Update(struct MD5Context *ctx, unsigned char const *buf, uint32_...
function MD5Final (line 115) | void MD5Final(unsigned char digest[16], struct MD5Context *ctx)
function MD5Transform (line 182) | static void MD5Transform(uint32_t buf[4], const unsigned char inext[64])
FILE: src/md5.h
type MD5Context (line 17) | struct MD5Context {
type MD5Context (line 23) | struct MD5Context
type MD5Context (line 24) | struct MD5Context
type MD5Context (line 27) | struct MD5Context
FILE: src/ostypes.h
type __int64 (line 27) | typedef __int64 int64_t;
FILE: src/parser.h
type parser_t (line 22) | typedef struct _parser_t parser_t;
FILE: src/parser_expat.c
type _parser_t (line 33) | struct _parser_t {
function parser_mem_free (line 77) | static void parser_mem_free(void *ptr)
function _set_attributes (line 130) | static void _set_attributes(xmpp_stanza_t *stanza, const XML_Char **attrs)
function complete_inner_text (line 146) | static void complete_inner_text(parser_t *parser)
function _start_element (line 165) | static void
function _end_element (line 212) | static void _end_element(void *userdata, const XML_Char *name)
function _characters (line 236) | static void _characters(void *userdata, const XML_Char *s, int len)
function parser_t (line 265) | parser_t *parser_new(xmpp_ctx_t *ctx,
function _free_parent_stanza (line 298) | static void _free_parent_stanza(xmpp_stanza_t *stanza)
function parser_free (line 308) | void parser_free(parser_t *parser)
function parser_reset (line 327) | int parser_reset(parser_t *parser)
function parser_feed (line 368) | int parser_feed(parser_t *parser, char *chunk, int len)
FILE: src/parser_libxml2.c
type _parser_t (line 28) | struct _parser_t {
function _set_attributes (line 40) | static void
function _free_cbattrs (line 96) | static void _free_cbattrs(parser_t *parser, char **attrs)
function _start_element (line 113) | static void _start_element(void *userdata,
function _end_element (line 178) | static void _end_element(void *userdata,
function _characters (line 207) | static void _characters(void *userdata, const xmlChar *chr, int len)
function parser_t (line 228) | parser_t *parser_new(xmpp_ctx_t *ctx,
function _free_parent_stanza (line 263) | static void _free_parent_stanza(xmpp_stanza_t *stanza)
function parser_free (line 273) | void parser_free(parser_t *parser)
function parser_reset (line 283) | int parser_reset(parser_t *parser)
function parser_feed (line 300) | int parser_feed(parser_t *parser, char *chunk, int len)
FILE: src/rand.c
type Hash_DRBG_CTX_struc (line 57) | struct Hash_DRBG_CTX_struc {
type Hash_DRBG_CTX (line 62) | typedef struct Hash_DRBG_CTX_struc Hash_DRBG_CTX;
type _xmpp_rand_t (line 64) | struct _xmpp_rand_t {
function arr_add (line 78) | static void
function store_be32 (line 97) | static void store_be32(uint32_t val, uint8_t be[4])
function Hash_df (line 105) | static void Hash_df(uint8_t *input_string,
function Hash_DRBG_Instantiate (line 134) | static void Hash_DRBG_Instantiate(Hash_DRBG_CTX *ctx,
function Hash_DRBG_Reseed (line 160) | static void Hash_DRBG_Reseed(Hash_DRBG_CTX *ctx,
function Hashgen (line 181) | static void
function Hash_DRBG_Generate (line 206) | static int Hash_DRBG_Generate(Hash_DRBG_CTX *ctx,
function xmpp_rand_reseed (line 240) | static void xmpp_rand_reseed(xmpp_rand_t *rand)
function xmpp_rand_t (line 275) | xmpp_rand_t *xmpp_rand_new(xmpp_ctx_t *ctx)
function xmpp_rand_free (line 284) | void xmpp_rand_free(xmpp_ctx_t *ctx, xmpp_rand_t *rand)
function xmpp_rand_bytes (line 289) | void xmpp_rand_bytes(xmpp_rand_t *rand, unsigned char *output, size_t len)
function _read_getrandom (line 309) | static int _read_getrandom(void *p, size_t n)
type _xmpp_rand_t (line 326) | struct _xmpp_rand_t {
function xmpp_rand_t (line 332) | xmpp_rand_t *xmpp_rand_new(xmpp_ctx_t *ctx)
function xmpp_rand_free (line 338) | void xmpp_rand_free(xmpp_ctx_t *ctx, xmpp_rand_t *rand)
function xmpp_rand_bytes (line 344) | void xmpp_rand_bytes(xmpp_rand_t *rand, unsigned char *output, size_t len)
function xmpp_rand (line 352) | int xmpp_rand(xmpp_rand_t *rand)
function rand_byte2hex (line 360) | static void rand_byte2hex(unsigned char byte, char *hex)
function xmpp_rand_nonce (line 369) | void xmpp_rand_nonce(xmpp_rand_t *rand, char *output, size_t len)
FILE: src/resolver.c
function resolver_initialize (line 81) | void resolver_initialize(void)
function resolver_shutdown (line 88) | void resolver_shutdown(void)
function resolver_srv_rr_t (line 95) | resolver_srv_rr_t *resolver_srv_rr_new(xmpp_ctx_t *ctx,
function resolver_srv_list_sort (line 114) | static void resolver_srv_list_sort(resolver_srv_rr_t **srv_rr_list)
function resolver_srv_lookup_buf (line 170) | int resolver_srv_lookup_buf(xmpp_ctx_t *ctx,
function resolver_srv_lookup (line 191) | int resolver_srv_lookup(xmpp_ctx_t *ctx,
function resolver_srv_free (line 244) | void resolver_srv_free(xmpp_ctx_t *ctx, resolver_srv_rr_t *srv_rr_list)
type message_header (line 262) | struct message_header {
function xmpp_ntohs_ptr (line 273) | static uint16_t xmpp_ntohs_ptr(const void *ptr)
function message_header_qr (line 280) | static uint8_t message_header_qr(const struct message_header *header)
function message_header_rcode (line 285) | static uint8_t message_header_rcode(const struct message_header *header)
function message_name_append_safe (line 295) | static size_t message_name_append_safe(char *name,
function message_name_get (line 312) | static unsigned message_name_get(const unsigned char *buf,
function message_name_len (line 390) | static unsigned
function resolver_raw_srv_lookup_buf (line 406) | static int resolver_raw_srv_lookup_buf(xmpp_ctx_t *ctx,
type resolver_ares_ctx (line 488) | struct resolver_ares_ctx {
function resolver_ares_srv_lookup_buf (line 494) | static int resolver_ares_srv_lookup_buf(xmpp_ctx_t *ctx,
function ares_srv_lookup_callback (line 529) | static void ares_srv_lookup_callback(
function resolver_ares_srv_lookup (line 543) | static int resolver_ares_srv_lookup(xmpp_ctx_t *ctx,
type dnsquery_header (line 601) | struct dnsquery_header {
type dnsquery_question (line 617) | struct dnsquery_question {
function netbuf_add_16bitnum (line 623) | static void netbuf_add_16bitnum(unsigned char *buf,
function netbuf_add_domain_name (line 638) | static void
function netbuf_add_dnsquery_header (line 676) | static void netbuf_add_dnsquery_header(unsigned char *buf,
function netbuf_add_dnsquery_question (line 699) | static void netbuf_add_dnsquery_question(unsigned char *buf,
function resolver_win32_srv_lookup (line 709) | static int resolver_win32_srv_lookup(xmpp_ctx_t *ctx,
function resolver_win32_srv_query (line 762) | static int
FILE: src/resolver.h
type xmpp_domain_state_t (line 23) | typedef enum {
type resolver_srv_rr_t (line 29) | typedef struct resolver_srv_rr_struc {
FILE: src/sasl.c
function hash_t (line 97) | static hash_t *_parse_digest_challenge(xmpp_ctx_t *ctx, const char *msg)
function _digest_to_hex (line 163) | static void _digest_to_hex(const char *digest, char *hex)
type MD5Context (line 239) | struct MD5Context
type hash_alg (line 377) | struct hash_alg
FILE: src/sasl.h
type hash_alg (line 31) | struct hash_alg
FILE: src/scram.c
type hash_alg (line 36) | struct hash_alg
type hash_alg (line 45) | struct hash_alg
type hash_alg (line 54) | struct hash_alg
type hash_alg (line 63) | struct hash_alg
type hash_alg (line 72) | struct hash_alg
type hash_alg (line 81) | struct hash_alg
type hash_alg (line 95) | struct hash_alg
function crypto_HMAC (line 124) | static void crypto_HMAC(const struct hash_alg *alg,
function SCRAM_Hi (line 166) | static void SCRAM_Hi(const struct hash_alg *alg,
function SCRAM_ClientKey (line 203) | void SCRAM_ClientKey(const struct hash_alg *alg,
function SCRAM_ClientSignature (line 220) | void SCRAM_ClientSignature(const struct hash_alg *alg,
function SCRAM_ClientProof (line 232) | void SCRAM_ClientProof(const struct hash_alg *alg,
FILE: src/scram.h
type hash_alg (line 27) | struct hash_alg {
type hash_alg (line 37) | struct hash_alg
type hash_alg (line 40) | struct hash_alg
type hash_alg (line 48) | struct hash_alg
type hash_alg (line 54) | struct hash_alg
FILE: src/sha1.c
function host_to_be (line 108) | static uint32_t host_to_be(uint32_t i)
function SHA1_cleanse (line 131) | static void SHA1_cleanse(void *p, size_t len)
function SHA1_Transform (line 137) | static void SHA1_Transform(uint32_t state[5], const uint8_t buffer[64])
function crypto_SHA1_Init (line 197) | void crypto_SHA1_Init(SHA1_CTX *context)
function crypto_SHA1_Update (line 209) | void crypto_SHA1_Update(SHA1_CTX *context, const uint8_t *data, size_t len)
function crypto_SHA1_Final (line 230) | void crypto_SHA1_Final(SHA1_CTX *context, uint8_t *digest)
function crypto_SHA1 (line 260) | void crypto_SHA1(const uint8_t *data, size_t len, uint8_t *digest)
FILE: src/sha1.h
type SHA1_CTX (line 18) | typedef struct {
FILE: src/sha256.c
function sha256_compress (line 18) | static void sha256_compress(sha256_context *md, const uint8_t *buf)
function sha256_init (line 118) | void sha256_init(sha256_context *md)
function sha256_process (line 132) | void sha256_process(sha256_context *md, const uint8_t *in, size_t inlen)
function sha256_done (line 163) | void sha256_done(sha256_context *md, uint8_t *out)
function sha256_hash (line 204) | void sha256_hash(const uint8_t *data, size_t len, uint8_t *digest)
FILE: src/sha256.h
type sha256_context (line 17) | typedef struct {
FILE: src/sha512.c
function sha512_compress (line 62) | static void sha512_compress(sha512_context *md, const uint8_t *buf)
function sha512_init (line 106) | void sha512_init(sha512_context *md)
function sha512_process (line 120) | void sha512_process(sha512_context *md, const uint8_t *in, size_t inlen)
function sha512_done (line 151) | void sha512_done(sha512_context *md, uint8_t *out)
function sha512_hash (line 195) | void sha512_hash(const uint8_t *data, size_t len, uint8_t *digest)
FILE: src/sha512.h
type sha512_context (line 17) | typedef struct {
FILE: src/snprintf.c
function dopr (line 145) | static int dopr(char *buffer, size_t maxlen, const char *format, va_list...
function fmtstr (line 392) | static int fmtstr(char *buffer,
function fmtint (line 435) | static int fmtint(char *buffer,
function LDOUBLE (line 529) | static LDOUBLE abs_val(LDOUBLE value)
function LDOUBLE (line 539) | static LDOUBLE _snp_pow10(int exp)
function _snp_round (line 551) | static long _snp_round(LDOUBLE value)
function fmtfp (line 563) | static int fmtfp(char *buffer,
function dopr_outch (line 702) | static int dopr_outch(char *buffer, size_t *currlen, size_t maxlen, char c)
function strophe_vsnprintf (line 709) | int strophe_vsnprintf(char *str, size_t count, const char *fmt, va_list ...
function strophe_snprintf (line 719) | int strophe_snprintf(char *str, size_t count, const char *fmt, ...)
FILE: src/sock.c
type conn_interface (line 41) | struct conn_interface
type _xmpp_sock_t (line 53) | struct _xmpp_sock_t {
function sock_initialize (line 64) | void sock_initialize(void)
function sock_shutdown (line 72) | void sock_shutdown(void)
function sock_error (line 79) | int sock_error(struct conn_interface *intf)
function _in_progress (line 89) | static int _in_progress(int error)
function sock_getaddrinfo (line 98) | static void sock_getaddrinfo(xmpp_sock_t *xsock)
function xmpp_sock_t (line 136) | xmpp_sock_t *sock_new(xmpp_conn_t *conn,
function sock_free (line 177) | void sock_free(xmpp_sock_t *xsock)
type sockaddr (line 189) | struct sockaddr
type sockaddr_in (line 195) | struct sockaddr_in
type sockaddr_in6 (line 198) | struct sockaddr_in6
function sock_t (line 207) | sock_t sock_connect(xmpp_sock_t *xsock)
function sock_set_keepalive (line 262) | int sock_set_keepalive(sock_t sock,
function xmpp_sockopt_cb_keepalive (line 347) | int xmpp_sockopt_cb_keepalive(xmpp_conn_t *conn, void *socket)
function sock_close (line 358) | int sock_close(sock_t sock)
function _sock_set_blocking_mode (line 367) | static int _sock_set_blocking_mode(sock_t sock, int blocking)
function sock_set_blocking (line 384) | int sock_set_blocking(sock_t sock)
function sock_set_nonblocking (line 389) | int sock_set_nonblocking(sock_t sock)
function sock_read (line 394) | int sock_read(struct conn_interface *intf, void *buff, size_t len)
function sock_write (line 399) | int sock_write(struct conn_interface *intf, const void *buff, size_t len)
function sock_is_recoverable (line 404) | int sock_is_recoverable(struct conn_interface *intf, int error)
function sock_connect_error (line 415) | int sock_connect_error(sock_t sock)
FILE: src/sock.h
type sock_t (line 23) | typedef int sock_t;
type SOCKET (line 30) | typedef SOCKET sock_t;
type conn_interface (line 33) | struct conn_interface
type xmpp_sock_t (line 35) | typedef struct _xmpp_sock_t xmpp_sock_t;
type conn_interface (line 40) | struct conn_interface
type conn_interface (line 52) | struct conn_interface
type conn_interface (line 53) | struct conn_interface
type conn_interface (line 54) | struct conn_interface
FILE: src/stanza.c
function xmpp_stanza_t (line 39) | xmpp_stanza_t *xmpp_stanza_new(xmpp_ctx_t *ctx)
function xmpp_stanza_t (line 63) | xmpp_stanza_t *xmpp_stanza_clone(xmpp_stanza_t *stanza)
function _stanza_copy_attributes (line 73) | static int _stanza_copy_attributes(xmpp_stanza_t *dst, const xmpp_stanza...
function xmpp_stanza_t (line 112) | xmpp_stanza_t *xmpp_stanza_copy(const xmpp_stanza_t *stanza)
function xmpp_stanza_release (line 167) | int xmpp_stanza_release(xmpp_stanza_t *stanza)
function xmpp_ctx_t (line 204) | xmpp_ctx_t *xmpp_stanza_get_context(const xmpp_stanza_t *stanza)
function xmpp_stanza_is_text (line 217) | int xmpp_stanza_is_text(xmpp_stanza_t *stanza)
function xmpp_stanza_is_tag (line 230) | int xmpp_stanza_is_tag(xmpp_stanza_t *stanza)
function _render_update (line 294) | static void _render_update(
function _render_stanza_recursive (line 313) | static int
function xmpp_stanza_to_text (line 439) | int xmpp_stanza_to_text(xmpp_stanza_t *stanza, char **buf, size_t *buflen)
function xmpp_stanza_set_name (line 500) | int xmpp_stanza_set_name(xmpp_stanza_t *stanza, const char *name)
function xmpp_stanza_get_attribute_count (line 539) | int xmpp_stanza_get_attribute_count(xmpp_stanza_t *stanza)
function xmpp_stanza_get_attributes (line 562) | int xmpp_stanza_get_attributes(xmpp_stanza_t *stanza,
function xmpp_stanza_set_attribute (line 604) | int xmpp_stanza_set_attribute(xmpp_stanza_t *stanza,
function xmpp_stanza_set_ns (line 645) | int xmpp_stanza_set_ns(xmpp_stanza_t *stanza, const char *ns)
function xmpp_stanza_add_child_ex (line 665) | int xmpp_stanza_add_child_ex(xmpp_stanza_t *stanza,
function xmpp_stanza_add_child (line 702) | int xmpp_stanza_add_child(xmpp_stanza_t *stanza, xmpp_stanza_t *child)
function xmpp_stanza_set_text (line 720) | int xmpp_stanza_set_text(xmpp_stanza_t *stanza, const char *text)
function xmpp_stanza_set_text_with_size (line 748) | int xmpp_stanza_set_text_with_size(xmpp_stanza_t *stanza,
function xmpp_stanza_t (line 867) | xmpp_stanza_t *xmpp_stanza_get_child_by_path(xmpp_stanza_t *stanza, ...)
function xmpp_stanza_t (line 931) | xmpp_stanza_t *xmpp_stanza_get_child_by_name(xmpp_stanza_t *stanza,
function xmpp_stanza_t (line 957) | xmpp_stanza_t *xmpp_stanza_get_child_by_ns(xmpp_stanza_t *stanza,
function xmpp_stanza_t (line 985) | xmpp_stanza_t *xmpp_stanza_get_child_by_name_and_ns(xmpp_stanza_t *stanza,
function xmpp_stanza_t (line 1016) | xmpp_stanza_t *xmpp_stanza_get_children(xmpp_stanza_t *stanza)
function xmpp_stanza_t (line 1029) | xmpp_stanza_t *xmpp_stanza_get_next(xmpp_stanza_t *stanza)
function xmpp_stanza_set_id (line 1115) | int xmpp_stanza_set_id(xmpp_stanza_t *stanza, const char *id)
function xmpp_stanza_set_type (line 1131) | int xmpp_stanza_set_type(xmpp_stanza_t *stanza, const char *type)
function xmpp_stanza_set_to (line 1148) | int xmpp_stanza_set_to(xmpp_stanza_t *stanza, const char *to)
function xmpp_stanza_set_from (line 1165) | int xmpp_stanza_set_from(xmpp_stanza_t *stanza, const char *from)
function xmpp_stanza_del_attribute (line 1201) | int xmpp_stanza_del_attribute(xmpp_stanza_t *stanza, const char *name)
function xmpp_stanza_t (line 1224) | xmpp_stanza_t *xmpp_stanza_reply(xmpp_stanza_t *stanza)
function xmpp_stanza_t (line 1279) | xmpp_stanza_t *xmpp_stanza_reply_error(xmpp_stanza_t *stanza,
function xmpp_stanza_t (line 1361) | static xmpp_stanza_t *_stanza_new_with_attrs(xmpp_ctx_t *ctx,
function xmpp_stanza_t (line 1398) | xmpp_stanza_t *xmpp_message_new(xmpp_ctx_t *ctx,
function xmpp_message_set_body (line 1441) | int xmpp_message_set_body(xmpp_stanza_t *msg, const char *text)
function xmpp_stanza_t (line 1487) | xmpp_stanza_t *xmpp_iq_new(xmpp_ctx_t *ctx, const char *type, const char...
function xmpp_stanza_t (line 1500) | xmpp_stanza_t *xmpp_presence_new(xmpp_ctx_t *ctx)
function xmpp_stanza_t (line 1518) | xmpp_stanza_t *
function _stub_stream_start (line 1622) | static void _stub_stream_start(char *name, char **attrs, void *userdata)
function _stub_stream_end (line 1629) | static void _stub_stream_end(char *name, void *userdata)
function _stream_stanza (line 1635) | static void _stream_stanza(xmpp_stanza_t *stanza, void *userdata)
function xmpp_stanza_t (line 1657) | xmpp_stanza_t *xmpp_stanza_new_from_string(xmpp_ctx_t *ctx, const char *...
FILE: src/tls.c
type SSIZE_T (line 34) | typedef SSIZE_T ssize_t;
type conn_interface (line 37) | struct conn_interface
type _dnsname_t (line 48) | struct _dnsname_t {
function xmpp_ctx_t (line 63) | xmpp_ctx_t *xmpp_tlscert_get_ctx(const xmpp_tlscert_t *cert)
function xmpp_conn_t (line 76) | xmpp_conn_t *xmpp_tlscert_get_conn(const xmpp_tlscert_t *cert)
function xmpp_tlscert_t (line 185) | xmpp_tlscert_t *tlscert_new(xmpp_ctx_t *ctx)
function xmpp_tlscert_free (line 210) | void xmpp_tlscert_free(xmpp_tlscert_t *cert)
function tlscert_add_dnsname (line 237) | int tlscert_add_dnsname(xmpp_tlscert_t *cert, const char *dnsname)
function tls_caching_password_callback (line 254) | int tls_caching_password_callback(char *pw, size_t pw_max, xmpp_conn_t *...
function tls_clear_password_cache (line 286) | void tls_clear_password_cache(xmpp_conn_t *conn)
FILE: src/tls.h
type tls_t (line 23) | typedef struct _tls tls_t;
type dnsname_t (line 25) | typedef struct _dnsname_t dnsname_t;
type _xmpp_tlscert_t (line 27) | struct _xmpp_tlscert_t {
type conn_interface (line 56) | struct conn_interface
type conn_interface (line 57) | struct conn_interface
type conn_interface (line 58) | struct conn_interface
type conn_interface (line 59) | struct conn_interface
type conn_interface (line 61) | struct conn_interface
type conn_interface (line 62) | struct conn_interface
type conn_interface (line 65) | struct conn_interface
FILE: src/tls_dummy.c
type _tls (line 21) | struct _tls {
function tls_initialize (line 27) | void tls_initialize(void)
function tls_shutdown (line 32) | void tls_shutdown(void)
function tls_id_on_xmppaddr_num (line 45) | unsigned int tls_id_on_xmppaddr_num(xmpp_conn_t *conn)
function tls_t (line 52) | tls_t *tls_new(xmpp_conn_t *conn)
function tls_free (line 59) | void tls_free(tls_t *tls)
function xmpp_tlscert_t (line 65) | xmpp_tlscert_t *tls_peer_cert(xmpp_conn_t *conn)
function tls_set_credentials (line 71) | int tls_set_credentials(tls_t *tls, const char *cafilename)
function tls_init_channel_binding (line 78) | int tls_init_channel_binding(tls_t *tls,
function tls_start (line 95) | int tls_start(tls_t *tls)
function tls_stop (line 101) | int tls_stop(tls_t *tls)
function tls_error (line 107) | int tls_error(struct conn_interface *intf)
function tls_pending (line 113) | int tls_pending(struct conn_interface *intf)
function tls_read (line 119) | int tls_read(struct conn_interface *intf, void *buff, size_t len)
function tls_write (line 127) | int tls_write(struct conn_interface *intf, const void *buff, size_t len)
function tls_clear_pending_write (line 135) | int tls_clear_pending_write(struct conn_interface *intf)
function tls_is_recoverable (line 141) | int tls_is_recoverable(struct conn_interface *intf, int error)
FILE: src/tls_gnutls.c
type _tls (line 41) | struct _tls {
function tls_initialize (line 51) | void tls_initialize(void)
function tls_shutdown (line 61) | void tls_shutdown(void)
function _tls_password_callback (line 67) | static int _tls_password_callback(void *userdata,
function gnutls_x509_crt_t (line 84) | static gnutls_x509_crt_t _tls_load_cert_x509(xmpp_conn_t *conn)
function gnutls_x509_crt_t (line 103) | static gnutls_x509_crt_t _tls_load_cert_p12(xmpp_conn_t *conn)
function gnutls_x509_crt_t (line 182) | static gnutls_x509_crt_t _tls_load_cert(xmpp_conn_t *conn)
function _tls_free_cert (line 192) | static void _tls_free_cert(xmpp_conn_t *conn, gnutls_x509_crt_t cert)
function _tls_get_id_on_xmppaddr (line 199) | static int _tls_get_id_on_xmppaddr(xmpp_conn_t *conn,
function _tls_id_on_xmppaddr (line 244) | static int _tls_id_on_xmppaddr(xmpp_conn_t *conn,
function tls_id_on_xmppaddr_num (line 278) | unsigned int tls_id_on_xmppaddr_num(xmpp_conn_t *conn)
function xmpp_tlscert_t (line 294) | static xmpp_tlscert_t *_x509_to_tlscert(xmpp_ctx_t *ctx, gnutls_x509_crt...
function _tls_verify (line 374) | static int _tls_verify(gnutls_session_t session)
function tls_t (line 446) | tls_t *tls_new(xmpp_conn_t *conn)
function tls_free (line 530) | void tls_free(tls_t *tls)
function xmpp_tlscert_t (line 539) | xmpp_tlscert_t *tls_peer_cert(xmpp_conn_t *conn)
function tls_set_credentials (line 559) | int tls_set_credentials(tls_t *tls, const char *cafilename)
function tls_init_channel_binding (line 580) | int tls_init_channel_binding(tls_t *tls,
function tls_start (line 629) | int tls_start(tls_t *tls)
function tls_stop (line 638) | int tls_stop(tls_t *tls)
function tls_error (line 644) | int tls_error(struct conn_interface *intf)
function tls_is_recoverable (line 649) | int tls_is_recoverable(struct conn_interface *intf, int error)
function tls_pending (line 655) | int tls_pending(struct conn_interface *intf)
function tls_read (line 660) | int tls_read(struct conn_interface *intf, void *buff, size_t len)
function tls_write (line 671) | int tls_write(struct conn_interface *intf, const void *buff, size_t len)
function tls_clear_pending_write (line 682) | int tls_clear_pending_write(struct conn_interface *intf)
FILE: src/tls_openssl.c
function SSL_CTX_use_cert_and_key (line 68) | static int SSL_CTX_use_cert_and_key(SSL_CTX *ctx,
function GENERAL_NAME_get0_otherName (line 92) | static int GENERAL_NAME_get0_otherName(const GENERAL_NAME *gen,
type _tls (line 106) | struct _tls {
function tls_initialize (line 254) | void tls_initialize(void)
function tls_shutdown (line 266) | void tls_shutdown(void)
function tls_error (line 289) | int tls_error(struct conn_interface *intf)
function tls_id_on_xmppaddr_num (line 328) | unsigned int tls_id_on_xmppaddr_num(xmpp_conn_t *conn)
function _convert_ASN1TIME (line 347) | static int _convert_ASN1TIME(ASN1_TIME *ansi_time, char *buf, size_t len)
function xmpp_tlscert_t (line 446) | static xmpp_tlscert_t *_x509_to_tlscert(xmpp_ctx_t *ctx, X509 *cert)
function _tls_verify (line 531) | static int _tls_verify(int preverify_ok, X509_STORE_CTX *x509_ctx)
function _tls_password_callback (line 568) | static int _tls_password_callback(char *buf, int size, int rwflag, void *u)
function _keylog_cb (line 575) | static void _keylog_cb(const SSL *ssl, const char *line)
function _try_open_keylogfile (line 584) | static void _try_open_keylogfile(tls_t *tls)
function tls_t (line 604) | tls_t *tls_new(xmpp_conn_t *conn)
function tls_free (line 765) | void tls_free(tls_t *tls)
function xmpp_tlscert_t (line 776) | xmpp_tlscert_t *tls_peer_cert(xmpp_conn_t *conn)
function tls_set_credentials (line 789) | int tls_set_credentials(tls_t *tls, const char *cafilename)
function tls_init_channel_binding (line 796) | int tls_init_channel_binding(tls_t *tls,
function tls_start (line 873) | int tls_start(tls_t *tls)
function tls_stop (line 911) | int tls_stop(tls_t *tls)
function tls_is_recoverable (line 945) | int tls_is_recoverable(struct conn_interface *intf, int error)
function tls_pending (line 953) | int tls_pending(struct conn_interface *intf)
function tls_read (line 958) | int tls_read(struct conn_interface *intf, void *buff, size_t len)
function tls_write (line 969) | int tls_write(struct conn_interface *intf, const void *buff, size_t len)
function tls_clear_pending_write (line 980) | int tls_clear_pending_write(struct conn_interface *intf)
function _tls_sock_wait (line 986) | static void _tls_sock_wait(tls_t *tls, int error)
function _tls_set_error (line 1018) | static void _tls_set_error(tls_t *tls, int error)
function _tls_log_error (line 1032) | static void _tls_log_error(xmpp_ctx_t *ctx)
function _tls_dump_cert_info (line 1046) | static void _tls_dump_cert_info(tls_t *tls)
function X509 (line 1069) | static X509 *_tls_cert_read_x509(xmpp_conn_t *conn)
function _tls_parse_p12 (line 1086) | static int _tls_parse_p12(PKCS12 *p12,
function X509 (line 1105) | static X509 *
function X509 (line 1168) | static X509 *_tls_cert_read(xmpp_conn_t *conn)
function _tls_xaddr_nid (line 1178) | static int _tls_xaddr_nid(void)
function GENERAL_NAMES (line 1191) | static GENERAL_NAMES *_tls_conn_get_names(xmpp_conn_t *conn)
function GENERAL_NAMES (line 1204) | static GENERAL_NAMES *_tls_cert_get_names(X509 *client_cert)
function _tls_xmppaddr_to_string (line 1233) | static int _tls_xmppaddr_to_string(GENERAL_NAME *name, char **res)
function _tls_dnsname_to_string (line 1250) | static int _tls_dnsname_to_string(GENERAL_NAME *name, char **res)
FILE: src/tls_schannel.c
type _tls (line 25) | struct _tls {
function tls_initialize (line 55) | void tls_initialize(void)
function tls_shutdown (line 60) | void tls_shutdown(void)
function tls_id_on_xmppaddr_num (line 73) | unsigned int tls_id_on_xmppaddr_num(xmpp_conn_t *conn)
function tls_t (line 80) | tls_t *tls_new(xmpp_conn_t *conn)
function tls_free (line 197) | void tls_free(tls_t *tls)
function xmpp_tlscert_t (line 226) | xmpp_tlscert_t *tls_peer_cert(xmpp_conn_t *conn)
function tls_set_credentials (line 233) | int tls_set_credentials(tls_t *tls, const char *cafilename)
function tls_init_channel_binding (line 240) | int tls_init_channel_binding(tls_t *tls,
function tls_start (line 257) | int tls_start(tls_t *tls)
function tls_stop (line 422) | int tls_stop(tls_t *tls)
function tls_error (line 428) | int tls_error(struct conn_interface *intf)
function tls_is_recoverable (line 433) | int tls_is_recoverable(struct conn_interface *intf, int error)
function tls_pending (line 441) | int tls_pending(struct conn_interface *intf)
function tls_read (line 459) | int tls_read(struct conn_interface *intf, void *buff, size_t len)
function tls_clear_pending_write (line 582) | int tls_clear_pending_write(struct conn_interface *intf)
function tls_write (line 606) | int tls_write(struct conn_interface *intf, const void *buff, size_t len)
FILE: src/util.c
function time_stamp (line 109) | uint64_t time_stamp(void)
function time_elapsed (line 148) | uint64_t time_elapsed(uint64_t t1, uint64_t t2)
function disconnect_mem_error (line 160) | void disconnect_mem_error(xmpp_conn_t *conn)
function string_to_ul (line 166) | int string_to_ul(const char *s, unsigned long *ul)
function hex_encode (line 173) | void hex_encode(char *writebuf, void *readbuf, size_t len)
FILE: src/uuid.c
function crypto_uuid_gen (line 30) | static void crypto_uuid_gen(xmpp_ctx_t *ctx, char *uuid)
FILE: strophe.h
type xmpp_mem_t (line 131) | typedef struct _xmpp_mem_t xmpp_mem_t;
type xmpp_log_t (line 134) | typedef struct _xmpp_log_t xmpp_log_t;
type xmpp_ctx_t (line 137) | typedef struct _xmpp_ctx_t xmpp_ctx_t;
type xmpp_tlscert_t (line 139) | typedef struct _xmpp_tlscert_t xmpp_tlscert_t;
type _xmpp_mem_t (line 151) | struct _xmpp_mem_t {
type xmpp_log_level_t (line 158) | typedef enum {
type xmpp_conn_type_t (line 165) | typedef enum { XMPP_UNKNOWN, XMPP_CLIENT, XMPP_COMPONENT } xmpp_conn_typ...
type _xmpp_log_t (line 172) | struct _xmpp_log_t {
type xmpp_conn_t (line 183) | typedef struct _xmpp_conn_t xmpp_conn_t;
type xmpp_stanza_t (line 184) | typedef struct _xmpp_stanza_t xmpp_stanza_t;
type xmpp_sm_state_t (line 185) | typedef struct _xmpp_sm_t xmpp_sm_state_t;
type xmpp_conn_event_t (line 215) | typedef enum {
type xmpp_error_type_t (line 222) | typedef enum {
type xmpp_cert_element_t (line 253) | typedef enum {
type xmpp_stream_error_t (line 268) | typedef struct {
type xmpp_queue_element_t (line 413) | typedef enum {
type xmpp_sha1_t (line 666) | typedef struct _xmpp_sha1_t xmpp_sha1_t;
type xmpp_rand_t (line 694) | typedef struct _xmpp_rand_t xmpp_rand_t;
FILE: tests/check_parser.c
function create_destroy (line 32) | static void create_destroy(void)
function cbtest_handle_start (line 45) | void cbtest_handle_start(char *name, char **attrs, void *userdata)
function cbtest_handle_end (line 55) | void cbtest_handle_end(char *name, void *userdata)
function cbtest_handle_stanza (line 64) | void cbtest_handle_stanza(xmpp_stanza_t *stanza, void *userdata)
function callbacks (line 72) | static void callbacks(void)
function main (line 97) | int main()
FILE: tests/res_query_dump.c
function main (line 41) | int main(int argc, char **argv)
FILE: tests/test.c
function char_to_bin (line 18) | static uint8_t char_to_bin(char c)
function test_hex_to_bin (line 25) | void test_hex_to_bin(const char *hex, uint8_t *bin, size_t *bin_len)
FILE: tests/test_base64.c
function main (line 117) | int main()
FILE: tests/test_ctx.c
function my_free (line 34) | void my_free(void *p, void *userdata)
function my_logger (line 50) | void my_logger(void *userdata,
function main (line 60) | int main()
FILE: tests/test_fuzz_parser.c
function cbtest_handle_start (line 11) | void cbtest_handle_start(char *name, char **attrs, void *userdata)
function cbtest_handle_end (line 18) | void cbtest_handle_end(char *name, void *userdata)
function cbtest_handle_stanza (line 24) | void cbtest_handle_stanza(xmpp_stanza_t *stanza, void *userdata)
function LLVMFuzzerTestOneInput (line 30) | int LLVMFuzzerTestOneInput(const uint8_t *Data, size_t Size)
FILE: tests/test_fuzz_resolver.c
function cbtest_handle_start (line 11) | void cbtest_handle_start(char *name, char **attrs, void *userdata)
function cbtest_handle_end (line 18) | void cbtest_handle_end(char *name, void *userdata)
function cbtest_handle_stanza (line 24) | void cbtest_handle_stanza(xmpp_stanza_t *stanza, void *userdata)
function LLVMFuzzerTestOneInput (line 45) | int LLVMFuzzerTestOneInput(const uint8_t *Data, size_t Size)
FILE: tests/test_hash.c
function main (line 30) | int main(int argc, char **argv)
FILE: tests/test_jid.c
function test_jid (line 26) | static int test_jid(xmpp_ctx_t *ctx)
function test_jid_new (line 97) | int test_jid_new(xmpp_ctx_t *ctx)
function main (line 129) | int main()
FILE: tests/test_md5.c
function main (line 61) | int main()
FILE: tests/test_rand.c
function strophe_free (line 32) | void strophe_free(const xmpp_ctx_t *ctx, void *p)
function strophe_snprintf (line 39) | int strophe_snprintf(char *str, size_t count, const char *fmt, ...)
function time_stamp (line 48) | uint64_t time_stamp(void)
function main (line 127) | int main()
function main (line 169) | int main()
FILE: tests/test_resolver.c
function srv_rr_list_len (line 163) | static int srv_rr_list_len(resolver_srv_rr_t *list)
function main (line 173) | int main()
FILE: tests/test_sasl.c
function test_plain (line 34) | int test_plain(xmpp_ctx_t *ctx)
function test_digest_md5 (line 52) | int test_digest_md5(xmpp_ctx_t *ctx)
function main (line 67) | int main()
FILE: tests/test_scram.c
function test_df (line 62) | static void test_df(const struct hash_alg *alg)
function test_scram (line 105) | static void test_scram(const struct hash_alg *alg)
function test_hmac (line 175) | static void test_hmac(const struct hash_alg *alg)
function main (line 207) | int main()
FILE: tests/test_send_queue.c
function main (line 22) | int main()
FILE: tests/test_serialize_sm.c
function callback (line 22) | void callback(xmpp_conn_t *conn,
function fake_read (line 97) | int fake_read(struct conn_interface *intf, void *buff, size_t len)
function fake_write (line 102) | int fake_write(struct conn_interface *intf, const void *buff, size_t len)
function fake_flush (line 107) | int fake_flush(struct conn_interface *intf)
function fake_error_is_recoverable (line 112) | int fake_error_is_recoverable(struct conn_interface *intf, int err)
function main (line 117) | int main()
FILE: tests/test_sha1.c
function digest_to_hex (line 24) | static void digest_to_hex(const uint8_t *digest, char *output)
function main (line 40) | int main()
FILE: tests/test_sha256.c
function main (line 13) | int main()
FILE: tests/test_sha512.c
function main (line 21) | int main()
FILE: tests/test_snprintf.c
function main (line 20) | int main(void)
FILE: tests/test_sock.c
function wait_for_connect (line 22) | int wait_for_connect(sock_t sock)
function main (line 44) | int main()
FILE: tests/test_stanza.c
function stanza_free (line 34) | static void stanza_free(void *ptr, void *userdata)
function test_stanza_add_child (line 67) | static void test_stanza_add_child(xmpp_ctx_t *ctx)
function test_stanza_from_string (line 96) | static void test_stanza_from_string(xmpp_ctx_t *ctx)
function test_stanza_error (line 138) | static void test_stanza_error(xmpp_ctx_t *ctx)
function test_stanza_bookmark (line 240) | static void test_stanza_bookmark(xmpp_ctx_t *ctx)
function test_stanza_copy (line 262) | static void test_stanza_copy(xmpp_ctx_t *ctx)
function main (line 284) | int main()
FILE: tests/test_string.c
function test_strtok_r (line 34) | static int test_strtok_r(void)
function test_strdup_one (line 69) | static int test_strdup_one(xmpp_ctx_t *ctx, const char *s)
function test_strdup (line 90) | static int test_strdup(void)
function main (line 110) | int main()
FILE: tests/test_xmppaddr.c
function password_callback (line 23) | static int
function main (line 33) | int main()
Condensed preview — 117 files, each showing path, character count, and a content snippet. Download the .json file or copy for the full structured content (1,037K chars).
[
{
"path": ".git-blame-ignore-revs",
"chars": 80,
"preview": "# Unify coding style with clang-format\n562a06425b96450481cdbc88e8872a2bf5a7d8aa\n"
},
{
"path": ".github/ISSUE_TEMPLATE/01-bug_report.md",
"chars": 1763,
"preview": "---\nname: Bug report\nabout: Create a bug report\ntitle: ''\nlabels: bug\nassignees: ''\n\n---\n\n<!--\n\nProvide a general summar"
},
{
"path": ".github/workflows/main.yml",
"chars": 7058,
"preview": "name: CI\n\non:\n push:\n branches:\n - master\n - next\n pull_request:\n branches: [master]\n\nconcurrency:\n g"
},
{
"path": ".gitignore",
"chars": 1142,
"preview": "*.swp\n*.orig\nMakefile\ntest-driver\n.libs\nMakefile.in\nconfigure\nlibtool\nltmain.sh\nconfig.guess\nconfig.sub\ninstall-sh\nmissi"
},
{
"path": "AUTHORS",
"chars": 198,
"preview": "Current maintainer:\nSteffen Jaeckel <gh@jaeckel.eu>\n\nPrevious maintainers:\nDmitry Podgorny <pasis.ua@gmail.com>\nJack Mof"
},
{
"path": "COPYING",
"chars": 36211,
"preview": " GNU GENERAL PUBLIC LICENSE\n Version 3, 29 June 2007\n\n Copyright (C) 2007 Free "
},
{
"path": "ChangeLog",
"chars": 8132,
"preview": "0.14.0\n\t- Add SM-state serialization mechanism (#239)\n\t- Add support for `SCRAM-SHA-512-PLUS` (da122981)\n\t- Add support "
},
{
"path": "Doxyfile",
"chars": 134038,
"preview": "# Doxyfile 1.16.1\n\n# This file describes the settings to be used by the documentation system\n# Doxygen (www.doxygen.org)"
},
{
"path": "GPL-LICENSE.txt",
"chars": 35147,
"preview": " GNU GENERAL PUBLIC LICENSE\n Version 3, 29 June 2007\n\n Copyright (C) 2007 Free "
},
{
"path": "LICENSE.txt",
"chars": 200,
"preview": "libstrophe XMPP client library\nCopyright (C) 2005-2009 Collecta, Inc.\n\nThis program is dual licensed under the MIT or GP"
},
{
"path": "MIT-LICENSE.txt",
"chars": 1063,
"preview": "Copyright (c) 2005-2009 Collecta, Inc.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof "
},
{
"path": "Makefile.am",
"chars": 10551,
"preview": "AUTOMAKE_OPTIONS = subdir-objects\n\nACLOCAL_AMFLAGS = -I m4\n\nCOVERAGE_CFLAGS=@COVERAGE_CFLAGS@\nCOVERAGE_LDFLAGS=@COVERAGE"
},
{
"path": "NEWS",
"chars": 0,
"preview": ""
},
{
"path": "README.markdown",
"chars": 2519,
"preview": "libstrophe [](h"
},
{
"path": "TODO",
"chars": 0,
"preview": ""
},
{
"path": "_clang-format",
"chars": 414,
"preview": "---\nAlignConsecutiveAssignments: 'false'\nAlignEscapedNewlines: Left\nAllowShortBlocksOnASingleLine: 'true'\nAllowShortFun"
},
{
"path": "bootstrap.sh",
"chars": 90,
"preview": "#!/bin/sh\n\n# Some versions of aclocal fail if m4/ doesn't exist\nmkdir -p m4\nautoreconf -i\n"
},
{
"path": "build-android.sh",
"chars": 961,
"preview": "#!/bin/sh\n\nDIR=`dirname $0`\nEXPAT_PATH=\"$DIR/expat\"\nEXPAT_FILE='lib/expat.h'\n\necho\necho Attention: libstrophe will be bu"
},
{
"path": "configure.ac",
"chars": 10471,
"preview": "m4_define([v_maj], [0])\nm4_define([v_min], [14])\nm4_define([v_patch], [0])\nm4_define([project_version], [v_maj.v_min.v_p"
},
{
"path": "docs/.keep",
"chars": 0,
"preview": ""
},
{
"path": "examples/README.md",
"chars": 156,
"preview": "Build Instructions\n==================\n\nCompile example files with the following gcc flags:\n```\ngcc -o bot bot.c `pkg-con"
},
{
"path": "examples/active.c",
"chars": 3446,
"preview": "/* SPDX-License-Identifier: MIT OR GPL-3.0-only */\n/* active.c\n** libstrophe XMPP client library -- basic usage example\n"
},
{
"path": "examples/basic.c",
"chars": 4074,
"preview": "/* SPDX-License-Identifier: MIT OR GPL-3.0-only */\n/* basic.c\n** libstrophe XMPP client library -- basic usage example\n*"
},
{
"path": "examples/bot.c",
"chars": 10176,
"preview": "/* SPDX-License-Identifier: MIT OR GPL-3.0-only */\n/* bot.c\n** libstrophe XMPP client library -- basic usage example\n**\n"
},
{
"path": "examples/complex.c",
"chars": 11443,
"preview": "/* SPDX-License-Identifier: MIT OR GPL-3.0-only */\n/* complex.c\n** libstrophe XMPP client library -- more complex usage "
},
{
"path": "examples/component.c",
"chars": 2610,
"preview": "/* SPDX-License-Identifier: MIT OR GPL-3.0-only */\n/* component.c\n** libstrophe XMPP client library -- external componen"
},
{
"path": "examples/perf.c",
"chars": 4792,
"preview": "/* SPDX-License-Identifier: MIT OR GPL-3.0-only */\n/* perf.c\n * strophe XMPP client library -- performance measure\n *\n *"
},
{
"path": "examples/register.c",
"chars": 10255,
"preview": "/* SPDX-License-Identifier: MIT OR GPL-3.0-only */\n/* register.c\n * strophe XMPP client library -- In-band registration "
},
{
"path": "examples/roster.c",
"chars": 3570,
"preview": "/* SPDX-License-Identifier: MIT OR GPL-3.0-only */\n/* roster.c\n** libstrophe XMPP client library -- handler example\n**\n*"
},
{
"path": "examples/uuid.c",
"chars": 393,
"preview": "#include <stdio.h>\n#include <strophe.h>\n\nint main()\n{\n xmpp_ctx_t *ctx;\n char *uuid;\n int rc = 0;\n\n ctx = xm"
},
{
"path": "examples/vcard.c",
"chars": 7432,
"preview": "/* SPDX-License-Identifier: MIT OR GPL-3.0-only */\n/* vcard.c\n * strophe XMPP client library -- vCard example\n *\n * Copy"
},
{
"path": "jni/Android.mk",
"chars": 1377,
"preview": "LOCAL_PATH:= $(call my-dir)\n\n#\n# examples/basic\n#\n\ninclude $(CLEAR_VARS)\nLOCAL_MODULE := basic\nLOCAL_CFLAGS :=\nLOCAL_C_I"
},
{
"path": "jni/Application.mk",
"chars": 60,
"preview": "APP_ABI := armeabi-v7a arm64-v8a\nAPP_PLATFORM := android-19\n"
},
{
"path": "libstrophe.pc.in",
"chars": 355,
"preview": "prefix=@prefix@\nexec_prefix=@exec_prefix@\nlibdir=@libdir@\nincludedir=@includedir@\n\nName: libstrophe\nDescription: A simpl"
},
{
"path": "m4/ac_try_compile2.m4",
"chars": 812,
"preview": "dnl Like AC_TRY_EVAL but also errors out if the compiler generates\ndnl _any_ output. Some compilers might issue warnings"
},
{
"path": "m4/ax_valgrind_check.m4",
"chars": 8938,
"preview": "# ===========================================================================\n# https://www.gnu.org/software/autoconf"
},
{
"path": "src/auth.c",
"chars": 57733,
"preview": "/* SPDX-License-Identifier: MIT OR GPL-3.0-only */\n/* auth.c\n** strophe XMPP client library -- auth functions and handle"
},
{
"path": "src/common.h",
"chars": 11921,
"preview": "/* SPDX-License-Identifier: MIT OR GPL-3.0-only */\n/* common.h\n** strophe XMPP client library -- internal common structu"
},
{
"path": "src/compression.c",
"chars": 8399,
"preview": "/* SPDX-License-Identifier: MIT OR GPL-3.0-only */\n/* compression.c\n** strophe XMPP client library -- XEP-0138 Stream Co"
},
{
"path": "src/compression_dummy.c",
"chars": 759,
"preview": "/* SPDX-License-Identifier: MIT OR GPL-3.0-only */\n/* compression_dummy.c\n** strophe XMPP client library -- Dummy Compre"
},
{
"path": "src/conn.c",
"chars": 72632,
"preview": "/* SPDX-License-Identifier: MIT OR GPL-3.0-only */\n/* conn.c\n** strophe XMPP client library -- connection object functio"
},
{
"path": "src/crypto.c",
"chars": 15584,
"preview": "/* SPDX-License-Identifier: MIT OR GPL-3.0-only */\n/* crypto.c\n * strophe XMPP client library -- public interface for di"
},
{
"path": "src/ctx.c",
"chars": 15060,
"preview": "/* SPDX-License-Identifier: MIT OR GPL-3.0-only */\n/* ctx.c\n** strophe XMPP client library -- run-time context implement"
},
{
"path": "src/deprecated.c",
"chars": 7972,
"preview": "/* SPDX-License-Identifier: MIT OR GPL-3.0-only */\n/* deprecated.c\n** strophe XMPP client library -- File with deprecate"
},
{
"path": "src/event.c",
"chars": 12505,
"preview": "/* SPDX-License-Identifier: MIT OR GPL-3.0-only */\n/* event.c\n** strophe XMPP client library -- event loop and managemen"
},
{
"path": "src/handler.c",
"chars": 24099,
"preview": "/* SPDX-License-Identifier: MIT OR GPL-3.0-only */\n/* handler.c\n** strophe XMPP client library -- event handler manageme"
},
{
"path": "src/hash.c",
"chars": 6962,
"preview": "/* SPDX-License-Identifier: MIT OR GPL-3.0-only */\n/* hash.c\n** strophe XMPP client library -- hash table implementation"
},
{
"path": "src/hash.h",
"chars": 1720,
"preview": "/* SPDX-License-Identifier: MIT OR GPL-3.0-only */\n/* hash.h\n** strophe XMPP client library -- hash table interface\n**\n*"
},
{
"path": "src/jid.c",
"chars": 5068,
"preview": "/* SPDX-License-Identifier: MIT OR GPL-3.0-only */\n/* jid.c\n** strophe XMPP client library -- helper functions for parsi"
},
{
"path": "src/md5.c",
"chars": 9029,
"preview": "/* md5.c\n** MD5 hash function implemention, adapted for local use\n**\n** This code is in the Public Domain\n*/\n\n/*\n * This"
},
{
"path": "src/md5.h",
"chars": 560,
"preview": "/* md5.h\n** interface to MD5 hash function\n**\n** This code is in the Public Domain.\n*/\n\n/** @file\n * MD5 hash API.\n */\n"
},
{
"path": "src/ostypes.h",
"chars": 1113,
"preview": "/* SPDX-License-Identifier: MIT OR GPL-3.0-only */\n/* ostypes.h\n** strophe XMPP client library -- type definitions for p"
},
{
"path": "src/parser.h",
"chars": 1198,
"preview": "/* SPDX-License-Identifier: MIT OR GPL-3.0-only */\n/* parser.h\n** strophe XMPP client library -- parser structures and f"
},
{
"path": "src/parser_expat.c",
"chars": 9991,
"preview": "/* SPDX-License-Identifier: MIT OR GPL-3.0-only */\n/* parser.c\n** strophe XMPP client library -- xml parser handlers and"
},
{
"path": "src/parser_libxml2.c",
"chars": 8486,
"preview": "/* SPDX-License-Identifier: MIT OR GPL-3.0-only */\n/* parser.c\n** strophe XMPP client library -- xml parser handlers and"
},
{
"path": "src/rand.c",
"chars": 10906,
"preview": "/* SPDX-License-Identifier: MIT OR GPL-3.0-only */\n/* rand.c\n * strophe XMPP client library -- pseudo-random number gene"
},
{
"path": "src/resolver.c",
"chars": 31731,
"preview": "/* SPDX-License-Identifier: MIT OR GPL-3.0-only */\n/* resolver.c\n * strophe XMPP client library -- DNS resolver\n *\n * Co"
},
{
"path": "src/resolver.h",
"chars": 2530,
"preview": "/* SPDX-License-Identifier: MIT OR GPL-3.0-only */\n/* resolver.h\n * strophe XMPP client library -- DNS resolver\n *\n * Co"
},
{
"path": "src/sasl.c",
"chars": 14440,
"preview": "/* SPDX-License-Identifier: MIT OR GPL-3.0-only */\n/* sasl.c\n** strophe XMPP client library -- SASL authentication helpe"
},
{
"path": "src/sasl.h",
"chars": 1068,
"preview": "/* SPDX-License-Identifier: MIT OR GPL-3.0-only */\n/* sasl.h\n** strophe XMPP client library -- SASL authentication helpe"
},
{
"path": "src/scram.c",
"chars": 7366,
"preview": "/* SPDX-License-Identifier: MIT OR GPL-3.0-only */\n/* scram.c\n * strophe XMPP client library\n *\n * SCRAM-SHA1 helper fun"
},
{
"path": "src/scram.h",
"chars": 1748,
"preview": "/* SPDX-License-Identifier: MIT OR GPL-3.0-only */\n/* scram.h\n * strophe XMPP client library -- SCRAM helper functions\n "
},
{
"path": "src/sha.h",
"chars": 3873,
"preview": "/* public api for steve reid's public domain SHA-1 implementation */\n/* this file is in the public domain */\n\n/** @file\n"
},
{
"path": "src/sha1.c",
"chars": 9388,
"preview": "/** @file\n * SHA-1 hash.\n */\n\n/*\nSHA-1 in C\nBy Steve Reid <sreid@sea-to-sky.net>\n100% Public Domain\n\n-----------------\n"
},
{
"path": "src/sha1.h",
"chars": 758,
"preview": "/* public api for steve reid's public domain SHA-1 implementation */\n/* this file is in the public domain */\n\n/** @file\n"
},
{
"path": "src/sha256.c",
"chars": 8394,
"preview": "/*\n * Code originally from LibTomCrypt -- Licensed under the Public Domain/WTFPL2.0\n */\n\n#include \"sha256.h\"\n#include \"s"
},
{
"path": "src/sha256.h",
"chars": 709,
"preview": "/* public api for LibTomCrypt SHA-256 implementation */\n\n/** @file\n * SHA-256 hash API.\n */\n\n#ifndef __LIBSTROPHE_SHA25"
},
{
"path": "src/sha512.c",
"chars": 7173,
"preview": "/*\n * Code originally from LibTomCrypt -- Licensed under the Public Domain/WTFPL2.0\n */\n\n#include \"sha512.h\"\n#include \"s"
},
{
"path": "src/sha512.h",
"chars": 709,
"preview": "/* public api for LibTomCrypt SHA-512 implementation */\n\n/** @file\n * SHA-512 hash API.\n */\n\n#ifndef __LIBSTROPHE_SHA51"
},
{
"path": "src/snprintf.c",
"chars": 20436,
"preview": "/*\n * Copyright Patrick Powell 1995\n * This code is based on code written by Patrick Powell (papowell@astart.com)\n * It "
},
{
"path": "src/snprintf.h",
"chars": 837,
"preview": "/*\n * Copyright Patrick Powell 1995\n * This code is based on code written by Patrick Powell (papowell@astart.com)\n * It "
},
{
"path": "src/sock.c",
"chars": 11490,
"preview": "/* SPDX-License-Identifier: MIT OR GPL-3.0-only */\n/* sock.c\n** strophe XMPP client library -- socket abstraction implem"
},
{
"path": "src/sock.h",
"chars": 1745,
"preview": "/* SPDX-License-Identifier: MIT OR GPL-3.0-only */\n/* sock.h\n** strophe XMPP client library -- socket abstraction header"
},
{
"path": "src/stanza.c",
"chars": 47040,
"preview": "/* SPDX-License-Identifier: MIT OR GPL-3.0-only */\n/* stanza.c\n** strophe XMPP client library -- XMPP stanza object and "
},
{
"path": "src/tls.c",
"chars": 7780,
"preview": "/* SPDX-License-Identifier: MIT OR GPL-3.0-only */\n/* tls.c\n** strophe XMPP client library -- generic TLS functions\n**\n*"
},
{
"path": "src/tls.h",
"chars": 2060,
"preview": "/* SPDX-License-Identifier: MIT OR GPL-3.0-only */\n/* tls.h\n** strophe XMPP client library -- TLS abstraction header\n**\n"
},
{
"path": "src/tls_dummy.c",
"chars": 2416,
"preview": "/* SPDX-License-Identifier: MIT OR GPL-3.0-only */\n/* tls_dummy.c\n** strophe XMPP client library -- TLS abstraction dumm"
},
{
"path": "src/tls_gnutls.c",
"chars": 22044,
"preview": "/* SPDX-License-Identifier: MIT OR GPL-3.0-only */\n/* tls.c\n** strophe XMPP client library -- TLS abstraction header\n**\n"
},
{
"path": "src/tls_openssl.c",
"chars": 39986,
"preview": "/* SPDX-License-Identifier: MIT OR GPL-3.0-only */\n/* tls_openssl.c\n** strophe XMPP client library -- TLS abstraction op"
},
{
"path": "src/tls_schannel.c",
"chars": 18378,
"preview": "/* SPDX-License-Identifier: MIT OR GPL-3.0-only */\n/* tls_schannel.c\n** strophe XMPP client library -- TLS abstraction s"
},
{
"path": "src/util.c",
"chars": 4579,
"preview": "/* SPDX-License-Identifier: MIT OR GPL-3.0-only */\n/* util.c\n** strophe XMPP client library -- various utility functions"
},
{
"path": "src/util.h",
"chars": 1013,
"preview": "/* SPDX-License-Identifier: MIT OR GPL-3.0-only */\n/* util.h\n** strophe XMPP client library -- various utility functions"
},
{
"path": "src/uuid.c",
"chars": 1832,
"preview": "/* SPDX-License-Identifier: MIT OR GPL-3.0-only */\n/* uuid.c\n * strophe XMPP client library -- UUID generation\n *\n * Cop"
},
{
"path": "strophe.h",
"chars": 29051,
"preview": "/* SPDX-License-Identifier: MIT OR GPL-3.0-only */\n/* strophe.h\n** strophe XMPP client library C API\n**\n** Copyright (C)"
},
{
"path": "testbuild.sh",
"chars": 286,
"preview": "#!/bin/sh\n\nlogfile=\"../../testbuild.log\"\nerrfile=\"../../testerr.log\"\n\nerr_out() {\n tail $logfile\n exit 1\n}\n\n./bootstra"
},
{
"path": "tests/cert.pem",
"chars": 1143,
"preview": "-----BEGIN CERTIFICATE-----\nMIIDIDCCAqagAwIBAgIIddFxfQ2VcRIwCgYIKoZIzj0EAwQwSzFJMEcGA1UEAwxA\ndmVyeS5sb25nLnVzZXJuYW1lQHN"
},
{
"path": "tests/check_parser.c",
"chars": 2734,
"preview": "/* SPDX-License-Identifier: MIT OR GPL-3.0-only */\n/* check_parser.h\n** strophe XMPP client library -- parser tests\n**\n*"
},
{
"path": "tests/key.pem",
"chars": 288,
"preview": "-----BEGIN EC PRIVATE KEY-----\nMIGkAgEBBDBZ90AXrC5n1ZxFGq4WpqMgvH7qw2YddaUzzPFtf9qDRDrRe3xW6nTr\nIywpxdh26GWgBwYFK4EEACKh"
},
{
"path": "tests/key_encrypted.pem",
"chars": 379,
"preview": "-----BEGIN EC PRIVATE KEY-----\nProc-Type: 4,ENCRYPTED\nDEK-Info: AES-256-CBC,D1537075EE9323A68A08B79257D87D53\n\nfaIortcMN9"
},
{
"path": "tests/res_query_dump.c",
"chars": 2377,
"preview": "/* SPDX-License-Identifier: MIT OR GPL-3.0-only */\n/* res_query_dump.c\n * Simple program to dump res_query(3) response\n "
},
{
"path": "tests/test.c",
"chars": 1338,
"preview": "/* SPDX-License-Identifier: MIT OR GPL-3.0-only */\n/* test.c\n * strophe XMPP client library -- common routines for tests"
},
{
"path": "tests/test.h",
"chars": 4112,
"preview": "/* SPDX-License-Identifier: MIT OR GPL-3.0-only */\n/* test.h\n** libstrophe XMPP client library -- common routines for te"
},
{
"path": "tests/test_base64.c",
"chars": 5574,
"preview": "/* SPDX-License-Identifier: MIT OR GPL-3.0-only */\n/* test_base64.c\n** libstrophe XMPP client library -- test routines f"
},
{
"path": "tests/test_ctx.c",
"chars": 2388,
"preview": "/* SPDX-License-Identifier: MIT OR GPL-3.0-only */\n/* test_ctx.c\n** libstrophe XMPP client library -- test routines for "
},
{
"path": "tests/test_fuzz_parser.c",
"chars": 920,
"preview": "#include <stdlib.h>\n#include <stdint.h>\n#include <stdio.h>\n#include <string.h>\n\n#include \"strophe.h\"\n#include \"parser.h\""
},
{
"path": "tests/test_fuzz_resolver.c",
"chars": 1834,
"preview": "#include <stdlib.h>\n#include <stdint.h>\n#include <stdio.h>\n#include <string.h>\n\n#include \"strophe.h\"\n#include \"resolver."
},
{
"path": "tests/test_hash.c",
"chars": 3907,
"preview": "/* SPDX-License-Identifier: MIT OR GPL-3.0-only */\n/* test_hash.c\n** libstrophe XMPP client library -- self-test for the"
},
{
"path": "tests/test_jid.c",
"chars": 4057,
"preview": "/* SPDX-License-Identifier: MIT OR GPL-3.0-only */\n/* test_jid.c\n** libstrophe XMPP client library -- test routines for "
},
{
"path": "tests/test_md5.c",
"chars": 1899,
"preview": "/* SPDX-License-Identifier: MIT OR GPL-3.0-only */\n/* test_md5.c\n * strophe XMPP client library -- test vectors for MD5\n"
},
{
"path": "tests/test_rand.c",
"chars": 5901,
"preview": "/* SPDX-License-Identifier: MIT OR GPL-3.0-only */\n/* check_rand.c\n * strophe XMPP client library -- test vectors for Ha"
},
{
"path": "tests/test_resolver.c",
"chars": 9958,
"preview": "/* SPDX-License-Identifier: MIT OR GPL-3.0-only */\n/* test_resolver.c\n * strophe XMPP client library -- tests for resolv"
},
{
"path": "tests/test_sasl.c",
"chars": 2496,
"preview": "/* SPDX-License-Identifier: MIT OR GPL-3.0-only */\n/* test_sasl.c\n** libstrophe XMPP client library -- test routines for"
},
{
"path": "tests/test_scram.c",
"chars": 6990,
"preview": "/* SPDX-License-Identifier: MIT OR GPL-3.0-only */\n/* test_scram.c\n * strophe XMPP client library -- test vectors for SC"
},
{
"path": "tests/test_send_queue.c",
"chars": 2394,
"preview": "/* SPDX-License-Identifier: MIT OR GPL-3.0-only */\n/* test_send_queue.c\n** libstrophe XMPP client library -- test routin"
},
{
"path": "tests/test_serialize_sm.c",
"chars": 5537,
"preview": "/* SPDX-License-Identifier: MIT OR GPL-3.0-only */\n/* test_serialize_sm.c\n** libstrophe XMPP client library -- test rout"
},
{
"path": "tests/test_sha1.c",
"chars": 2970,
"preview": "/* Tests for Steve Reid's public domain SHA-1 implementation */\n/* This file is in the public domain */\n\n/* gcc -o test_"
},
{
"path": "tests/test_sha256.c",
"chars": 1404,
"preview": "/* Tests for SHA-256 from LibTomCrypt */\n/* This file is in the public domain */\n\n/* gcc -o test_sha256 -I./src tests/te"
},
{
"path": "tests/test_sha512.c",
"chars": 2571,
"preview": "/* Tests for SHA-512 from LibTomCrypt */\n/* This file is in the public domain */\n\n/* gcc -o test_sha512 -I./src tests/te"
},
{
"path": "tests/test_snprintf.c",
"chars": 3221,
"preview": "/*\n * Copyright Patrick Powell 1995\n * This code is based on code written by Patrick Powell (papowell@astart.com)\n * It "
},
{
"path": "tests/test_sock.c",
"chars": 1205,
"preview": "/* SPDX-License-Identifier: MIT OR GPL-3.0-only */\n/* test_sock.c\n** libstrophe XMPP client library -- test routines for"
},
{
"path": "tests/test_stanza.c",
"chars": 9194,
"preview": "/* SPDX-License-Identifier: MIT OR GPL-3.0-only */\n/* test_stanza.c\n * libstrophe XMPP client library -- test routines f"
},
{
"path": "tests/test_string.c",
"chars": 2729,
"preview": "/* SPDX-License-Identifier: MIT OR GPL-3.0-only */\n/* test_string.c\n * strophe XMPP client library -- tests for re-imple"
},
{
"path": "tests/test_xmppaddr.c",
"chars": 3171,
"preview": "/* SPDX-License-Identifier: MIT OR GPL-3.0-only */\n/* test_xmppaddr.c\n** libstrophe XMPP client library -- test routines"
},
{
"path": "travis/before_script.sh",
"chars": 608,
"preview": "#!/bin/sh\n\nset -e\n\n[ \"x$XSSL_COMMITISH\" != \"x\" ]\n\nif [ \"x$LIBRESSL\" = \"xtrue\" ]; then\n REPO_URL=\"https://github.com/l"
}
]
// ... and 3 more files (download for full content)
About this extraction
This page contains the full source code of the strophe/libstrophe GitHub repository, extracted and formatted as plain text for AI agents and large language models (LLMs). The extraction includes 117 files (972.4 KB), approximately 272.6k tokens, and a symbol index with 719 extracted functions, classes, methods, constants, and types. Use this with OpenClaw, Claude, ChatGPT, Cursor, Windsurf, or any other AI tool that accepts text input. You can copy the full output to your clipboard or download it as a .txt file.
Extracted by GitExtract — free GitHub repo to text converter for AI. Built by Nikandr Surkov.