Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • jkonra2m/tinydtls-cython
1 result
Show changes
Commits on Source (3)
  • Martin's avatar
    Update for the tinyDTLS submodule using a different source repo · c1e5b6ef
    Martin authored
    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
    c1e5b6ef
  • Martin's avatar
    remove autogenerated egg files / folders · a738e944
    Martin authored
    a738e944
  • Jannis Konrad's avatar
    Merge pull request #14 from marthilda/tinyDtlsUpdate · ec4b129c
    Jannis Konrad authored
    Update for the tinyDTLS submodule using a github source repo
    Unverified
    ec4b129c
[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
Subproject commit 9a3496119688047b6d8b79826f13425397d92e10
Subproject commit 1f1bc2ab571ad67df55f3723b8d4aac98710acb9
......@@ -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" ],
),]
......