bsc: Add a method to scan messages coming from the MSC.

This commit is contained in:
Holger Hans Peter Freyther 2010-11-05 18:11:19 +01:00
parent d65305f5b4
commit a54732d19d
2 changed files with 9 additions and 0 deletions

View File

@ -16,5 +16,6 @@ int bsc_create_new_connection(struct gsm_subscriber_connection *conn,
struct msgb *msg, uint16_t chosen_channel);
int bsc_scan_bts_msg(struct gsm_subscriber_connection *conn, struct msgb *msg);
int bsc_scan_msc_msg(struct gsm_subscriber_connection *conn, struct msgb *msg);
#endif

View File

@ -66,3 +66,11 @@ int bsc_scan_bts_msg(struct gsm_subscriber_connection *conn, struct msgb *msg)
return 0;
}
/**
* Messages coming back from the MSC.
*/
int bsc_scan_msc_msg(struct gsm_subscriber_connection *conn, struct msgb *msg)
{
return 0;
}