mirror of
https://github.com/xcat2/confluent.git
synced 2025-04-03 09:09:51 +00:00
Try to use socket to get SO_PEERCRED
Newer socket includes SO_PEERCRED. Try to use that before resorting to the 17 assumption.
This commit is contained in:
parent
fa2b845b55
commit
c86e1af750
@ -42,7 +42,10 @@ import confluent.core as pluginapi
|
||||
|
||||
tracelog = None
|
||||
auditlog = None
|
||||
SO_PEERCRED = 17
|
||||
try:
|
||||
SO_PEERCRED = socket.SO_PEERCRED
|
||||
except AttributeError:
|
||||
SO_PEERCRED = 17
|
||||
|
||||
|
||||
class ClientConsole(object):
|
||||
|
Loading…
x
Reference in New Issue
Block a user