You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Several compiling errors occur when trying to install serval on Ubuntu (kernel version: 3.13).
Compiling errors for serval_sal.c, e.g.,
serval-master/src/stack/serval_sal.c:1686:49: error: ‘struct inet_request_sock’ has no member named ‘rmt_addr’
ireq->rmt_addr,
^
serval_sal.c:1687:49: error: ‘struct inet_request_sock’ has no member named ‘loc_addr’
ireq->loc_addr,
^
and so on.
The text was updated successfully, but these errors were encountered:
@tenmalin give it a try with Ubuntu 11.04 and kernel version 2.6.38.
Alternatively, you can skip compilation of the serval kernel module by using the "--disable-kernel" flag at configuration. You will still be able to test serval in the user space.
In order to fix those issues, serval has to be updated to use the new Linux Kernel APIs.
Several compiling errors occur when trying to install serval on Ubuntu (kernel version: 3.13).
Compiling errors for serval_sal.c, e.g.,
serval-master/src/stack/serval_sal.c:1686:49: error: ‘struct inet_request_sock’ has no member named ‘rmt_addr’
ireq->rmt_addr,
^
serval_sal.c:1687:49: error: ‘struct inet_request_sock’ has no member named ‘loc_addr’
ireq->loc_addr,
^
and so on.
The text was updated successfully, but these errors were encountered: