Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
P
pim_dm
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
pim_dm
Commits
6454d350
Commit
6454d350
authored
Feb 01, 2022
by
Léo-Paul Géneau
👾
Committed by
GitHub
Feb 01, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
tree/data_packets_socket: fix ip_group address (#9)
parent
aaa9d6a6
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
pimdm/tree/data_packets_socket.py
pimdm/tree/data_packets_socket.py
+1
-1
No files found.
pimdm/tree/data_packets_socket.py
View file @
6454d350
...
@@ -12,7 +12,7 @@ SO_RCVBUFFORCE = 33
...
@@ -12,7 +12,7 @@ SO_RCVBUFFORCE = 33
def
get_s_g_bpf_filter_code
(
source
,
group
,
interface_name
):
def
get_s_g_bpf_filter_code
(
source
,
group
,
interface_name
):
ip_source_version
=
ipaddress
.
ip_address
(
source
).
version
ip_source_version
=
ipaddress
.
ip_address
(
source
).
version
ip_group_version
=
ipaddress
.
ip_address
(
source
).
version
ip_group_version
=
ipaddress
.
ip_address
(
group
).
version
if
ip_source_version
==
ip_group_version
==
4
:
if
ip_source_version
==
ip_group_version
==
4
:
# cmd = "tcpdump -ddd \"(udp or icmp) and host %s and dst %s\"" % (source, group)
# cmd = "tcpdump -ddd \"(udp or icmp) and host %s and dst %s\"" % (source, group)
cmd
=
"tcpdump -ddd
\
"
(ip proto not 2) and host %s and dst %s
\
"
"
%
(
source
,
group
)
cmd
=
"tcpdump -ddd
\
"
(ip proto not 2) and host %s and dst %s
\
"
"
%
(
source
,
group
)
...
...
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