aboutsummaryrefslogtreecommitdiffstats
path: root/openbsc/src/abis_nm.c
diff options
context:
space:
mode:
authorHolger Hans Peter Freyther <zecke@selfish.org>2009-12-29 11:26:38 +0100
committerHolger Hans Peter Freyther <zecke@selfish.org>2009-12-30 04:40:50 +0100
commit086ffa51b4f56eb875e4918a2ee1802581c6cd67 (patch)
treee2069805789d2bc41ea74edd03eb5e78f38c4688 /openbsc/src/abis_nm.c
parente5198967a6745e36b164fb1d18314c9d1a251719 (diff)
[abis] Add ACK signal and send it on SET NVATTR ACK
* Add the signal definition to signal.h * Dispatch the signal from abis_nm.c * Handle it in ipaccess-config.c and say we are done with work
Diffstat (limited to 'openbsc/src/abis_nm.c')
-rw-r--r--openbsc/src/abis_nm.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/openbsc/src/abis_nm.c b/openbsc/src/abis_nm.c
index 211f70ee4..9dedcaf5d 100644
--- a/openbsc/src/abis_nm.c
+++ b/openbsc/src/abis_nm.c
@@ -2805,6 +2805,9 @@ static int abis_nm_rx_ipacc(struct msgb *msg)
case NM_MT_IPACC_GET_NVATTR_NACK:
dispatch_signal(SS_NM, S_NM_IPACC_NACK, &foh->msg_type);
break;
+ case NM_MT_IPACC_SET_NVATTR_ACK:
+ dispatch_signal(SS_NM, S_NM_IPACC_ACK, &foh->msg_type);
+ break;
default:
break;
}