mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-06 13:22:48 +00:00
fields in /proc/net/tcp* are not always delimited by single space
This commit is contained in:
@@ -228,7 +228,7 @@ class LinuxTCPConnectionInfo(TCPConnectionInfo):
|
||||
active_connections = 0
|
||||
f = open(self.source_file[self.family])
|
||||
for tcp_connection in f.readlines():
|
||||
tcp_connection = tcp_connection.strip().split(' ')
|
||||
tcp_connection = tcp_connection.strip().split()
|
||||
if tcp_connection[self.local_address_field] == 'local_address':
|
||||
continue
|
||||
if tcp_connection[self.connection_state_field] not in self.connection_states:
|
||||
|
||||
Reference in New Issue
Block a user