Commit 27a2394115286ed3fce465943d6c8f95cf088769
1 parent
35c0394c
修正启动提示错误(UDP误为TCP)
Showing
1 changed file
with
1 additions
and
1 deletions
src/main/java/com/genersoft/iot/vmp/gb28181/SipLayer.java
| ... | ... | @@ -103,7 +103,7 @@ public class SipLayer implements SipListener { |
| 103 | 103 | ListeningPoint udpListeningPoint = sipStack.createListeningPoint(sipConfig.getSipIp(), sipConfig.getSipPort(), "UDP"); |
| 104 | 104 | SipProvider udpSipProvider = sipStack.createSipProvider(udpListeningPoint); |
| 105 | 105 | udpSipProvider.addSipListener(this); |
| 106 | - logger.info("Sip Server TCP 启动成功 port {" + sipConfig.getSipPort() + "}"); | |
| 106 | + logger.info("Sip Server UDP 启动成功 port {" + sipConfig.getSipPort() + "}"); | |
| 107 | 107 | return udpSipProvider; |
| 108 | 108 | } |
| 109 | 109 | ... | ... |