Skip to content
Snippets Groups Projects
Commit c1e5b6ef authored by Martin's avatar Martin
Browse files

Update for the tinyDTLS submodule using a different source repo

Squashed commit of the following:

commit f25b8a4ab68165883a4d22032994e51cd4367ed9
Author: Martin <martinbrandthilde@gmail.com>
Date:   Thu Sep 5 23:32:44 2024 +0200

    add submodule tinydtls new version

commit 945a4e09b90a831713f948d567186f7d4382c891
Author: Martin <martinbrandthilde@gmail.com>
Date:   Thu Sep 5 23:31:41 2024 +0200

    removed submodule tinydtls old version

commit 1876aa3a1916fd447153d2cbd3ff934bf3d55cba
Author: Martin <martinbrandthilde@gmail.com>
Date:   Thu Sep 5 23:07:07 2024 +0200

    update submodule

commit 16f310c7337c20e8dee9523b57c39b8f91516317
Author: Martin <martinbrandthilde@gmail.com>
Date:   Thu Sep 5 22:54:26 2024 +0200

    fix build errors, add uint8_t for tinydtls/sha2.c
parent e31e52b9
No related branches found
No related tags found
No related merge requests found
[submodule "tinydtls"]
[submodule "DTLSSocket/tinydtls"]
path = DTLSSocket/tinydtls
url = https://git.eclipse.org/r/tinydtls/org.eclipse.tinydtls
url = https://github.com/eclipse/tinydtls.git
Metadata-Version: 2.1
Name: DTLSSocket
Version: 0.1.19
Summary: DTLSSocket is a cython wrapper for tinydtls with a Socket like interface
Home-page: https://git.fslab.de/jkonra2m/tinydtls-cython
Author: Jannis Konrad
Author-email: Kabel42@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: License :: OSI Approved :: Eclipse Public License 1.0 (EPL-1.0)
Description-Content-Type: text/markdown
License-File: LICENSE
This is a cython wrapper for tinydtls.
It currently implements a socket like Interface with sendmsg and readmsg.
All other calls are passt to the underlying socket.
For more info of tinydtls see https://projects.eclipse.org/projects/iot.tinydtls
This Code was created at the [Multimedia Communication Laboratory](http://mc-lab.de) of the [Bonn-Rhein-Sieg University of Applied Sciences](http://h-brs.de)
The Repo is hostet in our [GitLab](https://git.fslab.de/jkonra2m/tinydtls-cython)
There is now also a mirror on [GitHub](https://github.com/kabel42/DTLSSocket)
LICENSE
MANIFEST.in
README.md
pyproject.toml
setup.py
DTLSSocket/DTLSSocket.py
DTLSSocket/__init__.py
DTLSSocket/dtls.pyx
DTLSSocket/tdtls.pxd
DTLSSocket.egg-info/PKG-INFO
DTLSSocket.egg-info/SOURCES.txt
DTLSSocket.egg-info/dependency_links.txt
DTLSSocket.egg-info/top_level.txt
\ No newline at end of file
DTLSSocket
Subproject commit 9a3496119688047b6d8b79826f13425397d92e10
Subproject commit 1f1bc2ab571ad67df55f3723b8d4aac98710acb9
File added
......@@ -17,8 +17,7 @@ class prepare_tinydtls(build_ext):
sys.exit(1)
commands = [
["sh", "-c", "autoconf"],
["sh", "-c", "autoheader"],
["sh", "-c", "./autogen.sh"],
["sh", "-c", "./configure"], # no --without-ecc
]
if not os.path.exists(os.path.join(os.path.dirname(__file__), 'DTLSSocket','tinydtls','dtls.c')):
......@@ -56,6 +55,7 @@ setup(
"DTLSSocket/tinydtls/peer.c",
"DTLSSocket/tinydtls/session.c",
"DTLSSocket/tinydtls/aes/rijndael.c",
"DTLSSocket/tinydtls/aes/rijndael_wrap.c",
"DTLSSocket/tinydtls/sha2/sha2.c",
"DTLSSocket/tinydtls/platform-specific/dtls_prng_posix.c",
],
......@@ -65,6 +65,7 @@ setup(
('DTLS_CHECK_CONTENTTYPE', '1'),
('_GNU_SOURCE', '1'),
('NDEBUG', '1'),
('uint8_t', 'u_int8_t'),
],
# undef_macros = [ "NDEBUG" ],
),]
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment