mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
c60d8df5e4
Archive obtained from https://psutil.googlecode.com/files/psutil-1.0.1.tar.gz and extracted over existing source code without modifications.
53 lines
1.5 KiB
Python
Executable File
53 lines
1.5 KiB
Python
Executable File
#!/usr/bin/env python
|
|
|
|
# Copyright (c) 2009, Giampaolo Rodola'. All rights reserved.
|
|
# Use of this source code is governed by a BSD-style license that can be
|
|
# found in the LICENSE file.
|
|
|
|
"""
|
|
A clone of 'netstat'.
|
|
"""
|
|
|
|
import socket
|
|
from socket import AF_INET, SOCK_STREAM, SOCK_DGRAM
|
|
|
|
import psutil
|
|
from psutil._compat import print_
|
|
|
|
|
|
AD = "-"
|
|
AF_INET6 = getattr(socket, 'AF_INET6', object())
|
|
proto_map = {(AF_INET, SOCK_STREAM) : 'tcp',
|
|
(AF_INET6, SOCK_STREAM) : 'tcp6',
|
|
(AF_INET, SOCK_DGRAM) : 'udp',
|
|
(AF_INET6, SOCK_DGRAM) : 'udp6'}
|
|
|
|
def main():
|
|
templ = "%-5s %-22s %-22s %-13s %-6s %s"
|
|
print_(templ % ("Proto", "Local addr", "Remote addr", "Status", "PID",
|
|
"Program name"))
|
|
for p in psutil.process_iter():
|
|
name = '?'
|
|
try:
|
|
name = p.name
|
|
cons = p.get_connections(kind='inet')
|
|
except psutil.AccessDenied:
|
|
print_(templ % (AD, AD, AD, AD, p.pid, name))
|
|
except psutil.NoSuchProcess:
|
|
continue
|
|
else:
|
|
for c in cons:
|
|
raddr = ""
|
|
laddr = "%s:%s" % (c.laddr)
|
|
if c.raddr:
|
|
raddr = "%s:%s" % (c.raddr)
|
|
print_(templ % (proto_map[(c.family, c.type)],
|
|
laddr,
|
|
raddr,
|
|
str(c.status),
|
|
p.pid,
|
|
name[:15]))
|
|
|
|
if __name__ == '__main__':
|
|
main()
|