[GPRS] add missing header file gprs_gmm.h

This commit is contained in:
Harald Welte 2010-05-18 11:07:34 +02:00
parent a7c262ad96
commit 75827d65a4
2 changed files with 11 additions and 1 deletions

View File

@ -7,7 +7,7 @@ noinst_HEADERS = abis_nm.h abis_rsl.h db.h gsm_04_08.h gsm_data.h \
silent_call.h mgcp.h meas_rep.h rest_octets.h \
system_information.h handover.h mgcp_internal.h \
vty.h \
crc24.h gprs_bssgp.h gprs_llc.h gprs_ns.h \
crc24.h gprs_bssgp.h gprs_llc.h gprs_ns.h gprs_gmm.h \
gb_proxy.h gprs_sgsn.h gsm_04_08_gprs.h sgsn.h
openbsc_HEADERS = gsm_04_08.h meas_rep.h bsc_api.h

View File

@ -0,0 +1,10 @@
#ifndef _GPRS_GMM_H
#define _GPRS_GMM_H
int gsm48_tx_gsm_act_pdp_rej(struct sgsn_mm_ctx *mm, uint8_t tid,
uint8_t cause, uint8_t pco_len, uint8_t *pco_v);
int gsm48_tx_gsm_act_pdp_acc(struct sgsn_pdp_ctx *pdp);
int gsm0408_gprs_rcvmsg(struct msgb *msg);
#endif /* _GPRS_GMM_H */