zhangmeng
2019-12-20 e0b3d1f0183c43e4395d85b0fbcc9db775cc834c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package sdkstruct
 
// SDKInfo db
type SDKInfo struct {
    IpcID   string
    SdkType string
}
 
// MsgSDK sdk msg
type MsgSDK struct {
    // protomsg.SdkMessage
    MsgData []byte
    // all sdk count
    SdkCount int
    // current sdk index
    SdkIndex int
    // current sdk result len
    SdkDataLen int
}