mirror of
				https://gitea.osmocom.org/cellular-infrastructure/osmo-mgw.git
				synced 2025-11-04 05:53:26 +00:00 
			
		
		
		
	osmo-bsc change bsc_handle_dt1() to bsc_handle_dt()
_dt1() is not applicable with the current setup, _dt() is more accurate
This commit is contained in:
		
				
					committed by
					
						
						Neels Hofmeyr
					
				
			
			
				
	
			
			
			
						parent
						
							9b0db3860c
						
					
				
				
					commit
					3ae6040afd
				
			@@ -64,7 +64,7 @@ int bsc_scan_msc_msg(struct gsm_subscriber_connection *conn, struct msgb *msg);
 | 
			
		||||
int bsc_send_welcome_ussd(struct gsm_subscriber_connection *conn);
 | 
			
		||||
 | 
			
		||||
int bsc_handle_udt(struct bsc_msc_data *msc, struct msgb *msg, unsigned int length);
 | 
			
		||||
int bsc_handle_dt1(struct osmo_bsc_sccp_con *conn, struct msgb *msg, unsigned int len);
 | 
			
		||||
int bsc_handle_dt(struct osmo_bsc_sccp_con *conn, struct msgb *msg, unsigned int len);
 | 
			
		||||
 | 
			
		||||
int bsc_ctrl_cmds_install();
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
@@ -696,8 +696,8 @@ int bsc_handle_udt(struct bsc_msc_data *msc,
 | 
			
		||||
	return 0;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
int bsc_handle_dt1(struct osmo_bsc_sccp_con *conn,
 | 
			
		||||
		   struct msgb *msg, unsigned int len)
 | 
			
		||||
int bsc_handle_dt(struct osmo_bsc_sccp_con *conn,
 | 
			
		||||
		  struct msgb *msg, unsigned int len)
 | 
			
		||||
{
 | 
			
		||||
	if (len < sizeof(struct bssmap_header)) {
 | 
			
		||||
		LOGP(DMSC, LOGL_ERROR, "The header is too short.\n");
 | 
			
		||||
 
 | 
			
		||||
@@ -124,7 +124,7 @@ static int handle_data_from_msc(int conn_id, struct msgb *msg)
 | 
			
		||||
 | 
			
		||||
	if (bsc_con) {
 | 
			
		||||
		msg->l3h = msgb_l2(msg);
 | 
			
		||||
		rc = bsc_handle_dt1(bsc_con, msg, msgb_l2len(msg));
 | 
			
		||||
		rc = bsc_handle_dt(bsc_con, msg, msgb_l2len(msg));
 | 
			
		||||
	} else
 | 
			
		||||
		LOGP(DMSC, LOGL_NOTICE, "incoming data from unknown connection id: %i\n", conn_id);
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user