Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
T
tinydtls-cython
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Jannis Konrad
tinydtls-cython
Commits
a50a9855
Unverified
Commit
a50a9855
authored
10 months ago
by
Jannis Konrad
Committed by
GitHub
10 months ago
Browse files
Options
Downloads
Plain Diff
Merge pull request #13 from chrysn-pull-requests/fix-12
Fix #12
parents
648091b8
82e3539d
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
DTLSSocket/dtls.pyx
+11
-7
11 additions, 7 deletions
DTLSSocket/dtls.pyx
with
11 additions
and
7 deletions
DTLSSocket/dtls.pyx
+
11
−
7
View file @
a50a9855
...
...
@@ -156,18 +156,20 @@ cdef class Connection(Session):
def
__init__
(
self
,
DTLS
dtls
,
Session
s
):
super
().
__init__
(
addr
=
s
.
addr
,
port
=
s
.
port
,
flowinfo
=
s
.
flowinfo
,
scope_id
=
s
.
scope_id
)
self
.
d
=
dtls
def
__del__
(
self
):
self
.
d
.
close
(
self
)
self
.
d
.
resetPeer
(
self
)
def
__dealloc__
(
self
):
peer
=
tdtls
.
dtls_get_peer
(
self
.
d
.
ctx
,
&
self
.
session
)
if
peer
:
tdtls
.
dtls_reset_peer
(
self
.
d
.
ctx
,
peer
)
cdef
class
MCConnection
(
Session
):
cdef
DTLS
d
def
__init__
(
self
,
DTLS
dtls
,
Session
s
):
super
().
__init__
(
addr
=
s
.
addr
,
port
=
s
.
port
,
flowinfo
=
s
.
flowinfo
,
scope_id
=
s
.
scope_id
)
self
.
d
=
dtls
def
__del__
(
self
):
self
.
d
.
joinLeaveGroupe
(
self
.
addr
,
self
.
d
.
_sock
,
join
=
False
)
self
.
d
.
resetPeer
(
self
)
def
__dealloc__
(
self
):
peer
=
tdtls
.
dtls_get_peer
(
self
.
d
.
ctx
,
&
self
.
session
)
if
peer
:
tdtls
.
dtls_reset_peer
(
self
.
d
.
ctx
,
peer
)
cdef
class
DTLS
:
cdef
dtls_context_t
*
ctx
...
...
@@ -242,7 +244,9 @@ cdef class DTLS:
#dtls_peer_t *dtls_get_peer(const dtls_context_t *context, const session_t *session);
#void dtls_reset_peer(dtls_context_t *ctx, dtls_peer_t *peer)
def
resetPeer
(
self
,
Session
session
:
Session
):
tdtls
.
dtls_reset_peer
(
self
.
ctx
,
tdtls
.
dtls_get_peer
(
self
.
ctx
,
session
.
getSession
()))
peer
=
tdtls
.
dtls_get_peer
(
self
.
ctx
,
&
session
.
session
)
if
peer
:
tdtls
.
dtls_reset_peer
(
self
.
ctx
,
peer
)
#int dtls_write(dtls_context_t *ctx, session_t *session, uint8 *buf, size_t len)
def
write
(
self
,
Session
remote
:
Session
,
data
:
bytes
):
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment