| | |
| | | import org.slf4j.LoggerFactory;
|
| | | import org.springframework.beans.factory.annotation.Autowired;
|
| | | import org.springframework.context.annotation.Bean;
|
| | | import org.springframework.context.annotation.Configuration;
|
| | | import org.springframework.context.annotation.DependsOn;
|
| | | import org.springframework.stereotype.Component;
|
| | |
|
| | |
| | | import java.util.concurrent.ThreadPoolExecutor;
|
| | | import java.util.concurrent.TimeUnit;
|
| | |
|
| | | @Component
|
| | | @Configuration
|
| | | public class SipLayer{
|
| | |
|
| | | private final static Logger logger = LoggerFactory.getLogger(SipLayer.class);
|
| | |
| | |
|
| | |
|
| | | @Bean("sipFactory")
|
| | | private SipFactory createSipFactory() {
|
| | | SipFactory createSipFactory() {
|
| | | sipFactory = SipFactory.getInstance();
|
| | | sipFactory.setPathName("gov.nist");
|
| | | return sipFactory;
|
| | |
| | |
|
| | | @Bean("sipStack")
|
| | | @DependsOn({"sipFactory"})
|
| | | private SipStack createSipStack() throws PeerUnavailableException {
|
| | | SipStack createSipStack() throws PeerUnavailableException {
|
| | | Properties properties = new Properties();
|
| | | properties.setProperty("javax.sip.STACK_NAME", "GB28181_SIP");
|
| | | properties.setProperty("javax.sip.IP_ADDRESS", sipConfig.getMonitorIp());
|
| | |
| | |
|
| | | @Bean(name = "tcpSipProvider")
|
| | | @DependsOn("sipStack")
|
| | | private SipProviderImpl startTcpListener() {
|
| | | SipProviderImpl startTcpListener() {
|
| | | ListeningPoint tcpListeningPoint = null;
|
| | | SipProviderImpl tcpSipProvider = null;
|
| | | try {
|
| | |
| | |
|
| | | @Bean(name = "udpSipProvider")
|
| | | @DependsOn("sipStack")
|
| | | private SipProviderImpl startUdpListener() {
|
| | | SipProviderImpl startUdpListener() {
|
| | | ListeningPoint udpListeningPoint = null;
|
| | | SipProviderImpl udpSipProvider = null;
|
| | | try {
|