Lawrence
2020-12-18 28d17b04b1fe07aa6f769c6ff3e5782f2bf50228
1
2
3
4
5
6
7
8
9
10
11
12
13
package com.genersoft.iot.vmp.gb28181.transmit.cmd;
 
import com.genersoft.iot.vmp.gb28181.bean.ParentPlatform;
 
public interface ISIPCommanderForPlatform {
 
    /**
     * 向上级平台注册
     * @param parentPlatform
     * @return
     */
    boolean register(ParentPlatform parentPlatform, String callId, String realm, String nonce, String scheme);
}