2
0
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:
Jarrod Johnon 2015-01-13 15:01:55 -05:00
parent fa2b845b55
commit c86e1af750

View File

@ -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):