Skip to content

Commit

Permalink
connector: Merge pull request #1210 from sigint2/master
Browse files Browse the repository at this point in the history
switch euid/ruid field names for uid/gid events

Bug-Url: #1210
  • Loading branch information
svinota authored Sep 28, 2024
2 parents a876138 + dc15941 commit 8433814
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pyroute2/netlink/connector/cn_proc.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,15 +59,15 @@ class proc_event_uid(proc_event_base):
('process_pid', 'I'),
('process_tgid', 'I'),
('ruid', 'I'),
('rgid', 'I'),
('euid', 'I'),
)


class proc_event_gid(proc_event_base):
fields = proc_event_base.fields + (
('process_pid', 'I'),
('process_tgid', 'I'),
('euid', 'I'),
('rgid', 'I'),
('egid', 'I'),
)

Expand Down

0 comments on commit 8433814

Please sign in to comment.