blob: b91b489d3d1ad0d74f14bfffa4a86dc6445b425f [file] [log] [blame]
Harald Welte75827d62010-05-18 11:07:34 +02001#ifndef _GPRS_GMM_H
2#define _GPRS_GMM_H
3
Harald Welte807a5d82010-06-01 11:53:01 +02004#include <osmocore/msgb.h>
5#include <openbsc/gprs_sgsn.h>
6
Harald Welte75827d62010-05-18 11:07:34 +02007int gsm48_tx_gsm_act_pdp_rej(struct sgsn_mm_ctx *mm, uint8_t tid,
8 uint8_t cause, uint8_t pco_len, uint8_t *pco_v);
Harald Welte75827d62010-05-18 11:07:34 +02009int gsm48_tx_gsm_act_pdp_acc(struct sgsn_pdp_ctx *pdp);
Harald Welte77289c22010-05-18 14:32:29 +020010int gsm48_tx_gsm_deact_pdp_acc(struct sgsn_pdp_ctx *pdp);
11
Harald Welte807a5d82010-06-01 11:53:01 +020012int gsm0408_gprs_rcvmsg(struct msgb *msg, struct gprs_llc_llme *llme);
Harald Welte75827d62010-05-18 11:07:34 +020013
Harald Welte5bfe4992010-06-09 11:22:47 +020014int gprs_gmm_rx_suspend(struct gprs_ra_id *raid, uint32_t tlli);
15int gprs_gmm_rx_resume(struct gprs_ra_id *raid, uint32_t tlli,
16 uint8_t suspend_ref);
17
Harald Welte75827d62010-05-18 11:07:34 +020018#endif /* _GPRS_GMM_H */