set use_errno to True for libbcc.so
authorJincheng Miao <jincheng.miao@gmail.com>
Sun, 29 May 2016 05:17:03 +0000 (13:17 +0800)
committerJincheng Miao <jincheng.miao@gmail.com>
Sun, 29 May 2016 05:17:03 +0000 (13:17 +0800)
commitf4a3e41a418d20bae162ed0665ba4b9e08f33953
tree91e57236c256600b4cf182244f159c9097c74f70
parentdd60805db388480cd092a3e2aa770dec84855811
set use_errno to True for libbcc.so

Currently, errno could not be accessed by libbcc.py, like:
```
binding socket to 'eth0'
cannot create raw socket: Operation not permitted
Traceback (most recent call last):
  File "/home/ryan/Software/bcc/examples/networking/http_filter/http-parse-simple.py", line 73, in <module>
    BPF.attach_raw_socket(function_http_filter, interface)
  File "/usr/lib/python2.7/site-packages/bcc/__init__.py", line 330, in attach_raw_socket
    raise Exception("Failed to open raw device %s: %s" % (dev, errstr))
Exception: Failed to open raw device eth0: Success
```
The exception prints the errno as `Success`, instead of `EPERM`.

This patch would fix this problem.

Signed-off-by: Jincheng Miao <jincheng.miao@gmail.com>
src/python/bcc/libbcc.py