重构28181信令的message结构

This commit is contained in:
648540858
2021-11-09 11:56:21 +08:00
parent 7997e40ef6
commit 3745c80567
40 changed files with 2200 additions and 204 deletions

View File

@@ -77,7 +77,7 @@ public class SipLayer{
return sipStack;
}
@Bean("tcpSipProvider")
@Bean(name = "tcpSipProvider")
@DependsOn("sipStack")
private SipProviderImpl startTcpListener() {
ListeningPoint tcpListeningPoint = null;
@@ -100,7 +100,7 @@ public class SipLayer{
return tcpSipProvider;
}
@Bean("udpSipProvider")
@Bean(name = "udpSipProvider")
@DependsOn("sipStack")
private SipProviderImpl startUdpListener() {
ListeningPoint udpListeningPoint = null;