648540858
2020-11-13 33b51c40ddd9750a19b2c6a6618fb22386f87cd7
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package com.genersoft.iot.vmp.gb28181.transmit.response;
 
import java.text.ParseException;
 
import javax.sip.ResponseEvent;
 
import com.genersoft.iot.vmp.conf.SipConfig;
import com.genersoft.iot.vmp.gb28181.SipLayer;
 
/**    
 * @Description:处理接收IPCamera发来的SIP协议响应消息
 * @author: swwheihei
 * @date:   2020年5月3日 下午4:42:22     
 */
public interface ISIPResponseProcessor {
 
    public void process(ResponseEvent evt, SipLayer layer, SipConfig config) throws ParseException;
 
}