mirror of
https://github.com/evilsocket/opensnitch.git
synced 2025-03-04 08:34:40 +01:00
Showing PID in UI
This commit is contained in:
parent
54856fc740
commit
df394a821c
1 changed files with 2 additions and 1 deletions
|
@ -59,9 +59,10 @@ class OpenSnitchDialog( QtGui.QDialog, dialog_ui ):
|
|||
def setup_labels(self):
|
||||
self.app_name_label.setText( self.connection.app.name )
|
||||
|
||||
message = "%s (%s) wants to connect to %s on %s port %s%s" % ( \
|
||||
message = "%s (%s, pid=%s) wants to connect to %s on %s port %s%s" % ( \
|
||||
self.connection.app.name,
|
||||
self.connection.app_path,
|
||||
self.connection.app.pid,
|
||||
self.connection.hostname,
|
||||
self.connection.proto.upper(),
|
||||
self.connection.dst_port,
|
||||
|
|
Loading…
Add table
Reference in a new issue