fuse_get_context()
I have a personal preference because of familiarity for nodejs, but the fuse binding seems to be missing one critical function: fuse_get_context(). I can't find it anywhere in the binding.
This is what the python binding has:
https://code.google.com/p/fusepy/source/browse/trunk/context.py
uid, gid, pid = fuse_get_context()
I really need this feature, but I would not want to move the entire project to Python just for this one missing function. Is there a reason why it could be added? That would spare me from trying to do it by myself ;-)
+1, I'm also interested on that feature. How much would cost to implement it ourselves? Should be done globally or on a per Fuse instance basis?