Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
multicast-study
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nexedi
multicast-study
Commits
66a19431
Commit
66a19431
authored
May 06, 2022
by
Kirill Smelkov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
tmcast: Cosmetics
parent
4dc50bc8
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
4 deletions
+2
-4
namespace_demo/tmcast.py
namespace_demo/tmcast.py
+2
-4
No files found.
namespace_demo/tmcast.py
View file @
66a19431
...
...
@@ -30,7 +30,7 @@ def _udpsockfor(ipaddr): # -> (sk, isipv6)
return
(
sk
,
ip6
)
# mjoin_tx returns socket prepated to send
/receive to/from
multicast group:port.
# mjoin_tx returns socket prepated to send
to
multicast group:port.
def
mjoin_tx
(
group
,
port
,
ttl
=
100
):
sk
,
ip6
=
_udpsockfor
(
group
)
...
...
@@ -50,13 +50,12 @@ def mjoin_tx(group, port, ttl=100):
return
sk
# mjoin_rx returns socket prepated to
send/receive to/
from multicast group:port.
# mjoin_rx returns socket prepated to
receive
from multicast group:port.
def
mjoin_rx
(
group
,
port
):
sk
,
ip6
=
_udpsockfor
(
group
)
sk
.
setsockopt
(
SOL_SOCKET
,
SO_REUSEADDR
,
1
)
sk
.
bind
((
group
,
port
))
# works for reception even from multiple ifaces
#sk.bind(('', port)) # XXX and later IP_MULTICAST_ALL=0 ?
# join the group on all interfaces
for
ifidx
,
ifname
in
net
.
if_nameindex
():
...
...
@@ -70,7 +69,6 @@ def mjoin_rx(group, port):
mreq
=
inet_pton
(
AF_INET
,
group
)
+
\
inet_pton
(
AF_INET
,
'0.0.0.0'
)
+
\
bifidx
#print(repr(mreq), len(mreq))
sk
.
setsockopt
(
IPPROTO_IP
,
IP_ADD_MEMBERSHIP
,
mreq
)
return
sk
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment