aboutsummaryrefslogtreecommitdiffstats
path: root/include/osmocom
diff options
context:
space:
mode:
authorPau Espin Pedrol <pespin@sysmocom.de>2018-08-28 18:25:02 +0200
committerPau Espin Pedrol <pespin@sysmocom.de>2018-08-28 18:25:02 +0200
commited122f3c25070252c44819767adf67bf3b006260 (patch)
treee028f51d1dd37bd5a41dd6ebf7d155ea9cceb43f /include/osmocom
parent7ad2b15bc767f471ae12d4d72b5c734bde163d2a (diff)
ipaccess: Allow passing return code in e1inp_line_ops->sign_link()
Diffstat (limited to 'include/osmocom')
-rw-r--r--include/osmocom/abis/e1_input.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/include/osmocom/abis/e1_input.h b/include/osmocom/abis/e1_input.h
index 3fbce5b..79455e1 100644
--- a/include/osmocom/abis/e1_input.h
+++ b/include/osmocom/abis/e1_input.h
@@ -173,6 +173,7 @@ struct e1inp_line_ops {
struct e1inp_sign_link * (*sign_link_up)(void *unit_info, struct e1inp_line *line, enum e1inp_sign_type type);
void (*sign_link_down)(struct e1inp_line *line);
+ /* Called when a new message arrives. -EBADF must be returned if the osmo_fd in link (msg->dst) is destroyed. */
int (*sign_link)(struct msgb *msg);
};