songww
2020-05-16 817fc86c3cd7026064a6e3ba0ca5a5b61fc68546
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package com.genersoft.iot.vmp.gb28181.transmit.request;
 
import javax.sip.RequestEvent;
 
import com.genersoft.iot.vmp.gb28181.SipLayer;
 
/**    
 * @Description:处理接收IPCamera发来的SIP协议请求消息
 * @author: songww
 * @date:   2020年5月3日 下午4:42:22     
 */
public interface ISIPRequestProcessor {
 
    public void process(RequestEvent evt, SipLayer layer);
 
}