ss

package
v0.0.0-...-4345fab Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Apr 13, 2022 License: GPL-3.0 Imports: 8 Imported by: 0

Documentation

Index

Constants

View Source
const (
	MAX_SS_MSG_SIZE = (200 * 1024) //200k
)

Variables

View Source
var (
	SS_COMMON_RESULT_name = map[int32]string{
		0: "SUCCESS",
		1: "FAILED",
		2: "NOEXIST",
		3: "PERMISSION",
	}
	SS_COMMON_RESULT_value = map[string]int32{
		"SUCCESS":    0,
		"FAILED":     1,
		"NOEXIST":    2,
		"PERMISSION": 3,
	}
)

Enum value maps for SS_COMMON_RESULT.

View Source
var (
	SS_SPEC_UID_name = map[int32]string{
		0: "SYS_UID",
	}
	SS_SPEC_UID_value = map[string]int32{
		"SYS_UID": 0,
	}
)

Enum value maps for SS_SPEC_UID.

View Source
var (
	SS_COMMON_REASON_name = map[int32]string{
		0: "REASON_TICK",
		1: "REASON_UPDATE",
		2: "REASON_EXIT",
	}
	SS_COMMON_REASON_value = map[string]int32{
		"REASON_TICK":   0,
		"REASON_UPDATE": 1,
		"REASON_EXIT":   2,
	}
)

Enum value maps for SS_COMMON_REASON.

View Source
var (
	SS_COMMON_TYPE_name = map[int32]string{
		0: "COMM_TYPE_NORMAL",
		1: "COMM_TYPE_HISTORY",
	}
	SS_COMMON_TYPE_value = map[string]int32{
		"COMM_TYPE_NORMAL":  0,
		"COMM_TYPE_HISTORY": 1,
	}
)

Enum value maps for SS_COMMON_TYPE.

View Source
var (
	SS_OFFLINE_INFO_TYPE_name = map[int32]string{
		0: "OFT_KICK_GROUP",
	}
	SS_OFFLINE_INFO_TYPE_value = map[string]int32{
		"OFT_KICK_GROUP": 0,
	}
)

Enum value maps for SS_OFFLINE_INFO_TYPE.

View Source
var (
	SS_COMMON_QUERY_TYPE_name = map[int32]string{
		0: "QRY_OWN_SNAP",
		1: "QRY_SET_HEART",
	}
	SS_COMMON_QUERY_TYPE_value = map[string]int32{
		"QRY_OWN_SNAP":  0,
		"QRY_SET_HEART": 1,
	}
)

Enum value maps for SS_COMMON_QUERY_TYPE.

View Source
var (
	SS_GROUP_INFO_FIELD_name = map[int32]string{
		0: "GRP_FIELD_ALL",
		1: "GRP_FIELD_SNAP",
	}
	SS_GROUP_INFO_FIELD_value = map[string]int32{
		"GRP_FIELD_ALL":  0,
		"GRP_FIELD_SNAP": 1,
	}
)

Enum value maps for SS_GROUP_INFO_FIELD.

View Source
var (
	GROUP_ATTR_TYPE_name = map[int32]string{
		0: "GRP_ATTR_VISIBLE",
		1: "GRP_ATTR_INVISIBLE",
		2: "GRP_ATTR_DESC",
		3: "GRP_ATTR_GRP_NAME",
		4: "GRP_ATTR_HEAD_URL",
	}
	GROUP_ATTR_TYPE_value = map[string]int32{
		"GRP_ATTR_VISIBLE":   0,
		"GRP_ATTR_INVISIBLE": 1,
		"GRP_ATTR_DESC":      2,
		"GRP_ATTR_GRP_NAME":  3,
		"GRP_ATTR_HEAD_URL":  4,
	}
)

Enum value maps for GROUP_ATTR_TYPE.

View Source
var (
	CHAT_MSG_TYPE_name = map[int32]string{
		0: "CHAT_TYPE_TEXT",
		1: "CHAT_TYPE_IMG",
		2: "CHAT_TYPE_MP4",
		3: "CHAT_TYPE_VOICE",
	}
	CHAT_MSG_TYPE_value = map[string]int32{
		"CHAT_TYPE_TEXT":  0,
		"CHAT_TYPE_IMG":   1,
		"CHAT_TYPE_MP4":   2,
		"CHAT_TYPE_VOICE": 3,
	}
)

Enum value maps for CHAT_MSG_TYPE.

View Source
var (
	CHAT_MSG_FLAG_name = map[int32]string{
		0: "CHAT_FLAG_NORMAL",
		1: "CHAT_FLAG_DEL",
		2: "CHAT_FLAG_CANCELED",
		3: "CHAT_FLAG_CANCELLER",
	}
	CHAT_MSG_FLAG_value = map[string]int32{
		"CHAT_FLAG_NORMAL":    0,
		"CHAT_FLAG_DEL":       1,
		"CHAT_FLAG_CANCELED":  2,
		"CHAT_FLAG_CANCELLER": 3,
	}
)

Enum value maps for CHAT_MSG_FLAG.

View Source
var (
	DISP_MSG_TARGET_name = map[int32]string{
		0: "NON_SERVER",
		1: "LOGIC_SERVER",
		2: "CHAT_SERVER",
		3: "ONLINE_SERVER",
		4: "FILE_SERVER",
		5: "DIR_SERVER",
	}
	DISP_MSG_TARGET_value = map[string]int32{
		"NON_SERVER":    0,
		"LOGIC_SERVER":  1,
		"CHAT_SERVER":   2,
		"ONLINE_SERVER": 3,
		"FILE_SERVER":   4,
		"DIR_SERVER":    5,
	}
)

Enum value maps for DISP_MSG_TARGET.

View Source
var (
	DISP_MSG_METHOD_name = map[int32]string{
		0: "RAND",
		1: "HASH",
		2: "SPEC",
		3: "ALL",
	}
	DISP_MSG_METHOD_value = map[string]int32{
		"RAND": 0,
		"HASH": 1,
		"SPEC": 2,
		"ALL":  3,
	}
)

Enum value maps for DISP_MSG_METHOD.

View Source
var (
	DISP_PROTO_TYPE_name = map[int32]string{
		0:  "DISP_HELLO",
		1:  "DISP_KICK_DUPLICATE_USER",
		2:  "DISP_APPLY_GROUP_REQ",
		3:  "DISP_APPLY_GROUP_RSP",
		4:  "DISP_APPLY_GROUP_NOTIFY",
		5:  "DISP_APPLY_GROUP_AUDIT",
		6:  "DISP_COMMON_NOTIFY",
		7:  "DISP_ENTER_GROUP_REQ",
		8:  "DISP_ENTER_GROUP_RSP",
		9:  "DISP_SEND_CHAT_REQ",
		10: "DISP_SEND_CHAT_RSP",
		11: "DISP_QUERY_GROUP_REQ",
		12: "DISP_SYNC_GROUP_INFO",
		13: "DISP_CHG_GROUP_ATTR_REQ",
		14: "DISP_CHG_GROUP_ATTR_RSP",
		15: "DISP_COMMON_QUERY",
	}
	DISP_PROTO_TYPE_value = map[string]int32{
		"DISP_HELLO":               0,
		"DISP_KICK_DUPLICATE_USER": 1,
		"DISP_APPLY_GROUP_REQ":     2,
		"DISP_APPLY_GROUP_RSP":     3,
		"DISP_APPLY_GROUP_NOTIFY":  4,
		"DISP_APPLY_GROUP_AUDIT":   5,
		"DISP_COMMON_NOTIFY":       6,
		"DISP_ENTER_GROUP_REQ":     7,
		"DISP_ENTER_GROUP_RSP":     8,
		"DISP_SEND_CHAT_REQ":       9,
		"DISP_SEND_CHAT_RSP":       10,
		"DISP_QUERY_GROUP_REQ":     11,
		"DISP_SYNC_GROUP_INFO":     12,
		"DISP_CHG_GROUP_ATTR_REQ":  13,
		"DISP_CHG_GROUP_ATTR_RSP":  14,
		"DISP_COMMON_QUERY":        15,
	}
)

Enum value maps for DISP_PROTO_TYPE.

View Source
var (
	APPLY_GROUP_RESULT_name = map[int32]string{
		0: "APPLY_GRP_DONE",
		1: "APPLY_GRP_ALLOW",
		2: "APPLY_GRP_DENY",
		3: "APPLY_GRP_NONE",
		4: "APPLY_GRP_PASS",
		5: "APPLY_GRP_EXIST",
		6: "APPLY_GRP_ERR",
	}
	APPLY_GROUP_RESULT_value = map[string]int32{
		"APPLY_GRP_DONE":  0,
		"APPLY_GRP_ALLOW": 1,
		"APPLY_GRP_DENY":  2,
		"APPLY_GRP_NONE":  3,
		"APPLY_GRP_PASS":  4,
		"APPLY_GRP_EXIST": 5,
		"APPLY_GRP_ERR":   6,
	}
)

Enum value maps for APPLY_GROUP_RESULT.

View Source
var (
	COMMON_NOTIFY_TYPE_name = map[int32]string{
		0:  "NOTIFY_NEW_AUDIT",
		1:  "NOTIFY_USER_LOGIN",
		2:  "NOTIFY_USER_LOGOUT",
		3:  "NOTIFY_NEW_MSG",
		4:  "NOTIFY_UPLOAD_FILE",
		5:  "NOTIFY_SERV_LOAD",
		6:  "NOTIFY_EXIT_GROUP",
		7:  "NOTIFY_DEL_GROUP",
		8:  "NOTIFY_FILE_ADDR",
		9:  "NOTIFY_BATCH_USER_ONLINE",
		10: "NOTIFY_KICK_GROUP",
		11: "NOTIFY_ADD_MEMBER",
		12: "NOTIFY_DEL_MEMBER",
		13: "NOTIFY_FILE_TOKEN",
		14: "NOTIFY_HEAD_URL",
		15: "NOTIFY_ENTER_GROUP",
		16: "NOTIFY_SERVER_SET",
	}
	COMMON_NOTIFY_TYPE_value = map[string]int32{
		"NOTIFY_NEW_AUDIT":         0,
		"NOTIFY_USER_LOGIN":        1,
		"NOTIFY_USER_LOGOUT":       2,
		"NOTIFY_NEW_MSG":           3,
		"NOTIFY_UPLOAD_FILE":       4,
		"NOTIFY_SERV_LOAD":         5,
		"NOTIFY_EXIT_GROUP":        6,
		"NOTIFY_DEL_GROUP":         7,
		"NOTIFY_FILE_ADDR":         8,
		"NOTIFY_BATCH_USER_ONLINE": 9,
		"NOTIFY_KICK_GROUP":        10,
		"NOTIFY_ADD_MEMBER":        11,
		"NOTIFY_DEL_MEMBER":        12,
		"NOTIFY_FILE_TOKEN":        13,
		"NOTIFY_HEAD_URL":          14,
		"NOTIFY_ENTER_GROUP":       15,
		"NOTIFY_SERVER_SET":        16,
	}
)

Enum value maps for COMMON_NOTIFY_TYPE.

View Source
var (
	SEND_CHAT_RESULT_name = map[int32]string{
		0: "SEND_CHAT_SUCCESS",
		1: "SEND_CHAT_NONE_GROUP",
		2: "SEND_CHAT_FAIL",
	}
	SEND_CHAT_RESULT_value = map[string]int32{
		"SEND_CHAT_SUCCESS":    0,
		"SEND_CHAT_NONE_GROUP": 1,
		"SEND_CHAT_FAIL":       2,
	}
)

Enum value maps for SEND_CHAT_RESULT.

View Source
var (
	SS_PROTO_TYPE_name = map[int32]string{
		0:  "HEART_BEAT_REQ",
		1:  "HEART_BEAT_RSP",
		2:  "PING_REQ",
		3:  "PING_RSP",
		4:  "LOGIN_REQ",
		5:  "LOGIN_RSP",
		6:  "LOGOUT_REQ",
		7:  "LOGOUT_RSP",
		8:  "REG_REQ",
		9:  "REG_RSP",
		12: "CREATE_GROUP_REQ",
		13: "CREATE_GROUP_RSP",
		14: "USE_DISP_PROTO",
		16: "APPLY_GROUP_REQ",
		17: "APPLY_GROUP_RSP",
		18: "APPLY_GROUP_NOTIFY",
		19: "APPLY_GROUP_AUDIT",
		20: "FETCH_APPLY_GROUP_REQ",
		21: "FETCH_APPLY_GROUP_RSP",
		22: "COMMON_NOTIFY",
		23: "FETCH_AUDIT_GROUP_REQ",
		24: "FETCH_AUDIT_GROUP_RSP",
		25: "ENTER_GROUP_REQ",
		26: "ENTER_GROUP_RSP",
		27: "LOAD_GROUP_REQ",
		28: "LOAD_GROUP_RSP",
		29: "SEND_CHAT_REQ",
		30: "SEND_CHAT_RSP",
		31: "SAVE_GROUP_REQ",
		32: "SAVE_GROUP_RSP",
		33: "FETCH_CHAT_REQ",
		34: "FETCH_CHAT_RSP",
		35: "SYNC_CHAT_LIST",
		36: "EXIT_GROUP_REQ",
		37: "EXIT_GROUP_RSP",
		38: "KICK_GROUP_REQ",
		39: "KICK_GROUP_RSP",
		40: "FETCH_OFFLINE_INFO_REQ",
		41: "FETCH_OFFLINE_INFO_RSP",
		42: "QUERY_GROUP_REQ",
		43: "SYNC_GROUP_INFO",
		44: "FETCH_USER_PROFILE_REQ",
		45: "FETCH_USER_PROFILE_RSP",
		46: "SAVE_USER_PROFILE_REQ",
		47: "CHG_GROUP_ATTR_REQ",
		48: "CHG_GROUP_ATTR_RSP",
		49: "GROUP_GROUND_REQ",
		50: "GROUP_GROUND_RSP",
		51: "BATCH_QUERY_GROUP_SNAP",
		52: "COMMON_QUERY",
		53: "UPDATE_USER_REQ",
		54: "UPDATE_USER_RSP",
		55: "UPDATE_CHAT_REQ",
		56: "UPDATE_CHAT_RSP",
	}
	SS_PROTO_TYPE_value = map[string]int32{
		"HEART_BEAT_REQ":         0,
		"HEART_BEAT_RSP":         1,
		"PING_REQ":               2,
		"PING_RSP":               3,
		"LOGIN_REQ":              4,
		"LOGIN_RSP":              5,
		"LOGOUT_REQ":             6,
		"LOGOUT_RSP":             7,
		"REG_REQ":                8,
		"REG_RSP":                9,
		"CREATE_GROUP_REQ":       12,
		"CREATE_GROUP_RSP":       13,
		"USE_DISP_PROTO":         14,
		"APPLY_GROUP_REQ":        16,
		"APPLY_GROUP_RSP":        17,
		"APPLY_GROUP_NOTIFY":     18,
		"APPLY_GROUP_AUDIT":      19,
		"FETCH_APPLY_GROUP_REQ":  20,
		"FETCH_APPLY_GROUP_RSP":  21,
		"COMMON_NOTIFY":          22,
		"FETCH_AUDIT_GROUP_REQ":  23,
		"FETCH_AUDIT_GROUP_RSP":  24,
		"ENTER_GROUP_REQ":        25,
		"ENTER_GROUP_RSP":        26,
		"LOAD_GROUP_REQ":         27,
		"LOAD_GROUP_RSP":         28,
		"SEND_CHAT_REQ":          29,
		"SEND_CHAT_RSP":          30,
		"SAVE_GROUP_REQ":         31,
		"SAVE_GROUP_RSP":         32,
		"FETCH_CHAT_REQ":         33,
		"FETCH_CHAT_RSP":         34,
		"SYNC_CHAT_LIST":         35,
		"EXIT_GROUP_REQ":         36,
		"EXIT_GROUP_RSP":         37,
		"KICK_GROUP_REQ":         38,
		"KICK_GROUP_RSP":         39,
		"FETCH_OFFLINE_INFO_REQ": 40,
		"FETCH_OFFLINE_INFO_RSP": 41,
		"QUERY_GROUP_REQ":        42,
		"SYNC_GROUP_INFO":        43,
		"FETCH_USER_PROFILE_REQ": 44,
		"FETCH_USER_PROFILE_RSP": 45,
		"SAVE_USER_PROFILE_REQ":  46,
		"CHG_GROUP_ATTR_REQ":     47,
		"CHG_GROUP_ATTR_RSP":     48,
		"GROUP_GROUND_REQ":       49,
		"GROUP_GROUND_RSP":       50,
		"BATCH_QUERY_GROUP_SNAP": 51,
		"COMMON_QUERY":           52,
		"UPDATE_USER_REQ":        53,
		"UPDATE_USER_RSP":        54,
		"UPDATE_CHAT_REQ":        55,
		"UPDATE_CHAT_RSP":        56,
	}
)

Enum value maps for SS_PROTO_TYPE.

View Source
var (
	USER_LOGIN_FLAG_name = map[int32]string{
		0: "LOGIN_FLG_NORMAL",
		1: "LOGIN_FLG_RESET_CLIENT_KEY",
	}
	USER_LOGIN_FLAG_value = map[string]int32{
		"LOGIN_FLG_NORMAL":           0,
		"LOGIN_FLG_RESET_CLIENT_KEY": 1,
	}
)

Enum value maps for USER_LOGIN_FLAG.

View Source
var (
	USER_LOGIN_RET_name = map[int32]string{
		0: "LOGIN_SUCCESS",
		1: "LOGIN_EMPTY",
		2: "LOGIN_PASS",
		3: "LOGIN_ERR",
		4: "LOGIN_MULTI_ON",
	}
	USER_LOGIN_RET_value = map[string]int32{
		"LOGIN_SUCCESS":  0,
		"LOGIN_EMPTY":    1,
		"LOGIN_PASS":     2,
		"LOGIN_ERR":      3,
		"LOGIN_MULTI_ON": 4,
	}
)

Enum value maps for USER_LOGIN_RET.

View Source
var (
	USER_LOGOUT_REASON_name = map[int32]string{
		0: "LOGOUT_CLIENT_EXIT",
		1: "LOGOUT_CONN_CLOSED",
		2: "LOGOUT_SERVER_KICK_RECONN",
		3: "LOGOUT_SERVER_KICK_BAN",
		4: "LOGOUT_CLIENT_TIMEOUT",
		5: "LOGOUT_OFFLINE_USER",
		6: "LOGOUT_SERVER_SHUT",
	}
	USER_LOGOUT_REASON_value = map[string]int32{
		"LOGOUT_CLIENT_EXIT":        0,
		"LOGOUT_CONN_CLOSED":        1,
		"LOGOUT_SERVER_KICK_RECONN": 2,
		"LOGOUT_SERVER_KICK_BAN":    3,
		"LOGOUT_CLIENT_TIMEOUT":     4,
		"LOGOUT_OFFLINE_USER":       5,
		"LOGOUT_SERVER_SHUT":        6,
	}
)

Enum value maps for USER_LOGOUT_REASON.

View Source
var (
	REG_RESULT_name = map[int32]string{
		0: "REG_SUCCESS",
		1: "REG_DUP_NAME",
		2: "REG_DB_ERR",
	}
	REG_RESULT_value = map[string]int32{
		"REG_SUCCESS":  0,
		"REG_DUP_NAME": 1,
		"REG_DB_ERR":   2,
	}
)

Enum value maps for REG_RESULT.

View Source
var (
	CREATE_GROUP_RESULT_name = map[int32]string{
		0: "CREATE_RET_SUCCESS",
		1: "CREATE_RET_DUPLICATE",
		2: "CREATE_RET_DB_ERR",
		3: "CREATE_RET_MAX_NUM",
		4: "CREATE_RET_FAIL",
	}
	CREATE_GROUP_RESULT_value = map[string]int32{
		"CREATE_RET_SUCCESS":   0,
		"CREATE_RET_DUPLICATE": 1,
		"CREATE_RET_DB_ERR":    2,
		"CREATE_RET_MAX_NUM":   3,
		"CREATE_RET_FAIL":      4,
	}
)

Enum value maps for CREATE_GROUP_RESULT.

View Source
var (
	LOAD_GROUP_REASON_name = map[int32]string{
		0: "LOAD_GRP_SEND_CHAT",
		1: "LOAD_GRP_QUERY_INFO",
		2: "LOAD_GRP_CHG_GROUP_ATTR",
	}
	LOAD_GROUP_REASON_value = map[string]int32{
		"LOAD_GRP_SEND_CHAT":      0,
		"LOAD_GRP_QUERY_INFO":     1,
		"LOAD_GRP_CHG_GROUP_ATTR": 2,
	}
)

Enum value maps for LOAD_GROUP_REASON.

View Source
var (
	UPDATE_CHAT_TYPE_name = map[int32]string{
		0: "UPT_CHAT_DEL",
		1: "UPT_CHAT_CANCEL",
	}
	UPDATE_CHAT_TYPE_value = map[string]int32{
		"UPT_CHAT_DEL":    0,
		"UPT_CHAT_CANCEL": 1,
	}
)

Enum value maps for UPDATE_CHAT_TYPE.

View Source
var File_basic_proto protoreflect.FileDescriptor
View Source
var File_user_info_proto protoreflect.FileDescriptor

Functions

func Pack

func Pack(i interface{}) ([]byte, error)

func UnPack

func UnPack(b []byte, i interface{}) error

Types

type APPLY_GROUP_RESULT

type APPLY_GROUP_RESULT int32

apply group. this will exist in main and disp msg

const (
	APPLY_GROUP_RESULT_APPLY_GRP_DONE  APPLY_GROUP_RESULT = 0 //apply done
	APPLY_GROUP_RESULT_APPLY_GRP_ALLOW APPLY_GROUP_RESULT = 1
	APPLY_GROUP_RESULT_APPLY_GRP_DENY  APPLY_GROUP_RESULT = 2
	APPLY_GROUP_RESULT_APPLY_GRP_NONE  APPLY_GROUP_RESULT = 3 // not exist
	APPLY_GROUP_RESULT_APPLY_GRP_PASS  APPLY_GROUP_RESULT = 4 //pass error
	APPLY_GROUP_RESULT_APPLY_GRP_EXIST APPLY_GROUP_RESULT = 5 //already in
	APPLY_GROUP_RESULT_APPLY_GRP_ERR   APPLY_GROUP_RESULT = 6 //sys err
)

func (APPLY_GROUP_RESULT) Descriptor

func (APPLY_GROUP_RESULT) Enum

func (APPLY_GROUP_RESULT) EnumDescriptor deprecated

func (APPLY_GROUP_RESULT) EnumDescriptor() ([]byte, []int)

Deprecated: Use APPLY_GROUP_RESULT.Descriptor instead.

func (APPLY_GROUP_RESULT) Number

func (APPLY_GROUP_RESULT) String

func (x APPLY_GROUP_RESULT) String() string

func (APPLY_GROUP_RESULT) Type

type CHAT_MSG_FLAG

type CHAT_MSG_FLAG int32
const (
	CHAT_MSG_FLAG_CHAT_FLAG_NORMAL    CHAT_MSG_FLAG = 0 //normal chat
	CHAT_MSG_FLAG_CHAT_FLAG_DEL       CHAT_MSG_FLAG = 1 //deleted
	CHAT_MSG_FLAG_CHAT_FLAG_CANCELED  CHAT_MSG_FLAG = 2 //canceled chat
	CHAT_MSG_FLAG_CHAT_FLAG_CANCELLER CHAT_MSG_FLAG = 3 //cancel master chat
)

func (CHAT_MSG_FLAG) Descriptor

func (CHAT_MSG_FLAG) Enum

func (x CHAT_MSG_FLAG) Enum() *CHAT_MSG_FLAG

func (CHAT_MSG_FLAG) EnumDescriptor deprecated

func (CHAT_MSG_FLAG) EnumDescriptor() ([]byte, []int)

Deprecated: Use CHAT_MSG_FLAG.Descriptor instead.

func (CHAT_MSG_FLAG) Number

func (CHAT_MSG_FLAG) String

func (x CHAT_MSG_FLAG) String() string

func (CHAT_MSG_FLAG) Type

type CHAT_MSG_TYPE

type CHAT_MSG_TYPE int32
const (
	CHAT_MSG_TYPE_CHAT_TYPE_TEXT  CHAT_MSG_TYPE = 0 //text
	CHAT_MSG_TYPE_CHAT_TYPE_IMG   CHAT_MSG_TYPE = 1 //msg
	CHAT_MSG_TYPE_CHAT_TYPE_MP4   CHAT_MSG_TYPE = 2 //mp4
	CHAT_MSG_TYPE_CHAT_TYPE_VOICE CHAT_MSG_TYPE = 3 //voice
)

func (CHAT_MSG_TYPE) Descriptor

func (CHAT_MSG_TYPE) Enum

func (x CHAT_MSG_TYPE) Enum() *CHAT_MSG_TYPE

func (CHAT_MSG_TYPE) EnumDescriptor deprecated

func (CHAT_MSG_TYPE) EnumDescriptor() ([]byte, []int)

Deprecated: Use CHAT_MSG_TYPE.Descriptor instead.

func (CHAT_MSG_TYPE) Number

func (CHAT_MSG_TYPE) String

func (x CHAT_MSG_TYPE) String() string

func (CHAT_MSG_TYPE) Type

type COMMON_NOTIFY_TYPE

type COMMON_NOTIFY_TYPE int32

common notify

const (
	COMMON_NOTIFY_TYPE_NOTIFY_NEW_AUDIT         COMMON_NOTIFY_TYPE = 0  //new audit info
	COMMON_NOTIFY_TYPE_NOTIFY_USER_LOGIN        COMMON_NOTIFY_TYPE = 1  //user login
	COMMON_NOTIFY_TYPE_NOTIFY_USER_LOGOUT       COMMON_NOTIFY_TYPE = 2  //user logout
	COMMON_NOTIFY_TYPE_NOTIFY_NEW_MSG           COMMON_NOTIFY_TYPE = 3  //new chat msg
	COMMON_NOTIFY_TYPE_NOTIFY_UPLOAD_FILE       COMMON_NOTIFY_TYPE = 4  //upload file
	COMMON_NOTIFY_TYPE_NOTIFY_SERV_LOAD         COMMON_NOTIFY_TYPE = 5  //notify server load
	COMMON_NOTIFY_TYPE_NOTIFY_EXIT_GROUP        COMMON_NOTIFY_TYPE = 6  //notify exit group
	COMMON_NOTIFY_TYPE_NOTIFY_DEL_GROUP         COMMON_NOTIFY_TYPE = 7  //notify del group
	COMMON_NOTIFY_TYPE_NOTIFY_FILE_ADDR         COMMON_NOTIFY_TYPE = 8  //notify file addr
	COMMON_NOTIFY_TYPE_NOTIFY_BATCH_USER_ONLINE COMMON_NOTIFY_TYPE = 9  //notify batch user online serv
	COMMON_NOTIFY_TYPE_NOTIFY_KICK_GROUP        COMMON_NOTIFY_TYPE = 10 //notify kick group
	COMMON_NOTIFY_TYPE_NOTIFY_ADD_MEMBER        COMMON_NOTIFY_TYPE = 11 //group add member
	COMMON_NOTIFY_TYPE_NOTIFY_DEL_MEMBER        COMMON_NOTIFY_TYPE = 12 //group del member
	COMMON_NOTIFY_TYPE_NOTIFY_FILE_TOKEN        COMMON_NOTIFY_TYPE = 13 //file_server token to dir
	COMMON_NOTIFY_TYPE_NOTIFY_HEAD_URL          COMMON_NOTIFY_TYPE = 14 //change head url
	COMMON_NOTIFY_TYPE_NOTIFY_ENTER_GROUP       COMMON_NOTIFY_TYPE = 15 //user enter group
	COMMON_NOTIFY_TYPE_NOTIFY_SERVER_SET        COMMON_NOTIFY_TYPE = 16 //chat server set --> client
)

func (COMMON_NOTIFY_TYPE) Descriptor

func (COMMON_NOTIFY_TYPE) Enum

func (COMMON_NOTIFY_TYPE) EnumDescriptor deprecated

func (COMMON_NOTIFY_TYPE) EnumDescriptor() ([]byte, []int)

Deprecated: Use COMMON_NOTIFY_TYPE.Descriptor instead.

func (COMMON_NOTIFY_TYPE) Number

func (COMMON_NOTIFY_TYPE) String

func (x COMMON_NOTIFY_TYPE) String() string

func (COMMON_NOTIFY_TYPE) Type

type CREATE_GROUP_RESULT

type CREATE_GROUP_RESULT int32

create group

const (
	CREATE_GROUP_RESULT_CREATE_RET_SUCCESS   CREATE_GROUP_RESULT = 0
	CREATE_GROUP_RESULT_CREATE_RET_DUPLICATE CREATE_GROUP_RESULT = 1 //same name
	CREATE_GROUP_RESULT_CREATE_RET_DB_ERR    CREATE_GROUP_RESULT = 2 //db-error
	CREATE_GROUP_RESULT_CREATE_RET_MAX_NUM   CREATE_GROUP_RESULT = 3 //max group
	CREATE_GROUP_RESULT_CREATE_RET_FAIL      CREATE_GROUP_RESULT = 4 //other fail
)

func (CREATE_GROUP_RESULT) Descriptor

func (CREATE_GROUP_RESULT) Enum

func (CREATE_GROUP_RESULT) EnumDescriptor deprecated

func (CREATE_GROUP_RESULT) EnumDescriptor() ([]byte, []int)

Deprecated: Use CREATE_GROUP_RESULT.Descriptor instead.

func (CREATE_GROUP_RESULT) Number

func (CREATE_GROUP_RESULT) String

func (x CREATE_GROUP_RESULT) String() string

func (CREATE_GROUP_RESULT) Type

type ChatMsg

type ChatMsg struct {
	ChatType  CHAT_MSG_TYPE `protobuf:"varint,1,opt,name=chat_type,json=chatType,proto3,enum=ss.CHAT_MSG_TYPE" json:"chat_type,omitempty"` //chat type
	MsgId     int64         `protobuf:"varint,2,opt,name=msg_id,json=msgId,proto3" json:"msg_id,omitempty"`                                //msg id(filled by group svr)
	GroupId   int64         `protobuf:"varint,3,opt,name=group_id,json=groupId,proto3" json:"group_id,omitempty"`                          //chat group id
	SenderUid int64         `protobuf:"varint,4,opt,name=sender_uid,json=senderUid,proto3" json:"sender_uid,omitempty"`                    //sender uid
	Sender    string        `protobuf:"bytes,5,opt,name=sender,proto3" json:"sender,omitempty"`
	SendTs    int64         `protobuf:"varint,6,opt,name=send_ts,json=sendTs,proto3" json:"send_ts,omitempty"`
	Content   string        `protobuf:"bytes,7,opt,name=content,proto3" json:"content,omitempty"`                                           //chat content
	ChatFlag  CHAT_MSG_FLAG `protobuf:"varint,20,opt,name=chat_flag,json=chatFlag,proto3,enum=ss.CHAT_MSG_FLAG" json:"chat_flag,omitempty"` //flag
	// contains filtered or unexported fields
}

func (*ChatMsg) Descriptor deprecated

func (*ChatMsg) Descriptor() ([]byte, []int)

Deprecated: Use ChatMsg.ProtoReflect.Descriptor instead.

func (*ChatMsg) GetChatFlag

func (x *ChatMsg) GetChatFlag() CHAT_MSG_FLAG

func (*ChatMsg) GetChatType

func (x *ChatMsg) GetChatType() CHAT_MSG_TYPE

func (*ChatMsg) GetContent

func (x *ChatMsg) GetContent() string

func (*ChatMsg) GetGroupId

func (x *ChatMsg) GetGroupId() int64

func (*ChatMsg) GetMsgId

func (x *ChatMsg) GetMsgId() int64

func (*ChatMsg) GetSendTs

func (x *ChatMsg) GetSendTs() int64

func (*ChatMsg) GetSender

func (x *ChatMsg) GetSender() string

func (*ChatMsg) GetSenderUid

func (x *ChatMsg) GetSenderUid() int64

func (*ChatMsg) ProtoMessage

func (*ChatMsg) ProtoMessage()

func (*ChatMsg) ProtoReflect

func (x *ChatMsg) ProtoReflect() protoreflect.Message

func (*ChatMsg) Reset

func (x *ChatMsg) Reset()

func (*ChatMsg) String

func (x *ChatMsg) String() string

type DISP_MSG_METHOD

type DISP_MSG_METHOD int32

Choose Target Server Method

const (
	DISP_MSG_METHOD_RAND DISP_MSG_METHOD = 0
	DISP_MSG_METHOD_HASH DISP_MSG_METHOD = 1
	DISP_MSG_METHOD_SPEC DISP_MSG_METHOD = 2 //sepcify target
	DISP_MSG_METHOD_ALL  DISP_MSG_METHOD = 3 //all target
)

func (DISP_MSG_METHOD) Descriptor

func (DISP_MSG_METHOD) Enum

func (x DISP_MSG_METHOD) Enum() *DISP_MSG_METHOD

func (DISP_MSG_METHOD) EnumDescriptor deprecated

func (DISP_MSG_METHOD) EnumDescriptor() ([]byte, []int)

Deprecated: Use DISP_MSG_METHOD.Descriptor instead.

func (DISP_MSG_METHOD) Number

func (DISP_MSG_METHOD) String

func (x DISP_MSG_METHOD) String() string

func (DISP_MSG_METHOD) Type

type DISP_MSG_TARGET

type DISP_MSG_TARGET int32

Target Server Type

const (
	DISP_MSG_TARGET_NON_SERVER    DISP_MSG_TARGET = 0 //no target type specified
	DISP_MSG_TARGET_LOGIC_SERVER  DISP_MSG_TARGET = 1
	DISP_MSG_TARGET_CHAT_SERVER   DISP_MSG_TARGET = 2
	DISP_MSG_TARGET_ONLINE_SERVER DISP_MSG_TARGET = 3
	DISP_MSG_TARGET_FILE_SERVER   DISP_MSG_TARGET = 4
	DISP_MSG_TARGET_DIR_SERVER    DISP_MSG_TARGET = 5
)

func (DISP_MSG_TARGET) Descriptor

func (DISP_MSG_TARGET) Enum

func (x DISP_MSG_TARGET) Enum() *DISP_MSG_TARGET

func (DISP_MSG_TARGET) EnumDescriptor deprecated

func (DISP_MSG_TARGET) EnumDescriptor() ([]byte, []int)

Deprecated: Use DISP_MSG_TARGET.Descriptor instead.

func (DISP_MSG_TARGET) Number

func (DISP_MSG_TARGET) String

func (x DISP_MSG_TARGET) String() string

func (DISP_MSG_TARGET) Type

type DISP_PROTO_TYPE

type DISP_PROTO_TYPE int32

Disp Proto <serv1 -- disp -- serv2>

const (
	DISP_PROTO_TYPE_DISP_HELLO               DISP_PROTO_TYPE = 0
	DISP_PROTO_TYPE_DISP_KICK_DUPLICATE_USER DISP_PROTO_TYPE = 1 //kick duplicate user on other line
	DISP_PROTO_TYPE_DISP_APPLY_GROUP_REQ     DISP_PROTO_TYPE = 2
	DISP_PROTO_TYPE_DISP_APPLY_GROUP_RSP     DISP_PROTO_TYPE = 3
	DISP_PROTO_TYPE_DISP_APPLY_GROUP_NOTIFY  DISP_PROTO_TYPE = 4 //notify apply to group master
	DISP_PROTO_TYPE_DISP_APPLY_GROUP_AUDIT   DISP_PROTO_TYPE = 5 //master audit apply
	DISP_PROTO_TYPE_DISP_COMMON_NOTIFY       DISP_PROTO_TYPE = 6
	DISP_PROTO_TYPE_DISP_ENTER_GROUP_REQ     DISP_PROTO_TYPE = 7
	DISP_PROTO_TYPE_DISP_ENTER_GROUP_RSP     DISP_PROTO_TYPE = 8
	DISP_PROTO_TYPE_DISP_SEND_CHAT_REQ       DISP_PROTO_TYPE = 9
	DISP_PROTO_TYPE_DISP_SEND_CHAT_RSP       DISP_PROTO_TYPE = 10
	DISP_PROTO_TYPE_DISP_QUERY_GROUP_REQ     DISP_PROTO_TYPE = 11
	DISP_PROTO_TYPE_DISP_SYNC_GROUP_INFO     DISP_PROTO_TYPE = 12
	DISP_PROTO_TYPE_DISP_CHG_GROUP_ATTR_REQ  DISP_PROTO_TYPE = 13
	DISP_PROTO_TYPE_DISP_CHG_GROUP_ATTR_RSP  DISP_PROTO_TYPE = 14
	DISP_PROTO_TYPE_DISP_COMMON_QUERY        DISP_PROTO_TYPE = 15 //Add Proto Should Also Modify servers/comm/disp.go:GenDispMsg
)

func (DISP_PROTO_TYPE) Descriptor

func (DISP_PROTO_TYPE) Enum

func (x DISP_PROTO_TYPE) Enum() *DISP_PROTO_TYPE

func (DISP_PROTO_TYPE) EnumDescriptor deprecated

func (DISP_PROTO_TYPE) EnumDescriptor() ([]byte, []int)

Deprecated: Use DISP_PROTO_TYPE.Descriptor instead.

func (DISP_PROTO_TYPE) Number

func (DISP_PROTO_TYPE) String

func (x DISP_PROTO_TYPE) String() string

func (DISP_PROTO_TYPE) Type

type GROUP_ATTR_TYPE

type GROUP_ATTR_TYPE int32
const (
	GROUP_ATTR_TYPE_GRP_ATTR_VISIBLE   GROUP_ATTR_TYPE = 0 //cound be shown on panel
	GROUP_ATTR_TYPE_GRP_ATTR_INVISIBLE GROUP_ATTR_TYPE = 1 //only be searched by group id
	GROUP_ATTR_TYPE_GRP_ATTR_DESC      GROUP_ATTR_TYPE = 2 //change group desc
	GROUP_ATTR_TYPE_GRP_ATTR_GRP_NAME  GROUP_ATTR_TYPE = 3 //change group name
	GROUP_ATTR_TYPE_GRP_ATTR_HEAD_URL  GROUP_ATTR_TYPE = 4 //group head url
)

func (GROUP_ATTR_TYPE) Descriptor

func (GROUP_ATTR_TYPE) Enum

func (x GROUP_ATTR_TYPE) Enum() *GROUP_ATTR_TYPE

func (GROUP_ATTR_TYPE) EnumDescriptor deprecated

func (GROUP_ATTR_TYPE) EnumDescriptor() ([]byte, []int)

Deprecated: Use GROUP_ATTR_TYPE.Descriptor instead.

func (GROUP_ATTR_TYPE) Number

func (GROUP_ATTR_TYPE) String

func (x GROUP_ATTR_TYPE) String() string

func (GROUP_ATTR_TYPE) Type

type GroupBlobData

type GroupBlobData struct {
	Visible      int32  `protobuf:"varint,1,opt,name=visible,proto3" json:"visible,omitempty"` //default 0: group is invisible
	VisibleScore int32  `protobuf:"varint,2,opt,name=visible_score,json=visibleScore,proto3" json:"visible_score,omitempty"`
	GroupDesc    string `protobuf:"bytes,20,opt,name=group_desc,json=groupDesc,proto3" json:"group_desc,omitempty"`
	HeadUrl      string `protobuf:"bytes,21,opt,name=head_url,json=headUrl,proto3" json:"head_url,omitempty"`
	// contains filtered or unexported fields
}

func (*GroupBlobData) Descriptor deprecated

func (*GroupBlobData) Descriptor() ([]byte, []int)

Deprecated: Use GroupBlobData.ProtoReflect.Descriptor instead.

func (*GroupBlobData) GetGroupDesc

func (x *GroupBlobData) GetGroupDesc() string

func (*GroupBlobData) GetHeadUrl

func (x *GroupBlobData) GetHeadUrl() string

func (*GroupBlobData) GetVisible

func (x *GroupBlobData) GetVisible() int32

func (*GroupBlobData) GetVisibleScore

func (x *GroupBlobData) GetVisibleScore() int32

func (*GroupBlobData) ProtoMessage

func (*GroupBlobData) ProtoMessage()

func (*GroupBlobData) ProtoReflect

func (x *GroupBlobData) ProtoReflect() protoreflect.Message

func (*GroupBlobData) Reset

func (x *GroupBlobData) Reset()

func (*GroupBlobData) String

func (x *GroupBlobData) String() string

type GroupGroudItem

type GroupGroudItem struct {
	GrpId    int64  `protobuf:"varint,1,opt,name=grp_id,json=grpId,proto3" json:"grp_id,omitempty"`
	GrpName  string `protobuf:"bytes,2,opt,name=grp_name,json=grpName,proto3" json:"grp_name,omitempty"`
	MemCount int32  `protobuf:"varint,3,opt,name=mem_count,json=memCount,proto3" json:"mem_count,omitempty"`
	Desc     string `protobuf:"bytes,4,opt,name=desc,proto3" json:"desc,omitempty"`
	HeadUrl  string `protobuf:"bytes,5,opt,name=head_url,json=headUrl,proto3" json:"head_url,omitempty"`
	// contains filtered or unexported fields
}

func (*GroupGroudItem) Descriptor deprecated

func (*GroupGroudItem) Descriptor() ([]byte, []int)

Deprecated: Use GroupGroudItem.ProtoReflect.Descriptor instead.

func (*GroupGroudItem) GetDesc

func (x *GroupGroudItem) GetDesc() string

func (*GroupGroudItem) GetGrpId

func (x *GroupGroudItem) GetGrpId() int64

func (*GroupGroudItem) GetGrpName

func (x *GroupGroudItem) GetGrpName() string

func (*GroupGroudItem) GetHeadUrl

func (x *GroupGroudItem) GetHeadUrl() string

func (*GroupGroudItem) GetMemCount

func (x *GroupGroudItem) GetMemCount() int32

func (*GroupGroudItem) ProtoMessage

func (*GroupGroudItem) ProtoMessage()

func (*GroupGroudItem) ProtoReflect

func (x *GroupGroudItem) ProtoReflect() protoreflect.Message

func (*GroupGroudItem) Reset

func (x *GroupGroudItem) Reset()

func (*GroupGroudItem) String

func (x *GroupGroudItem) String() string

type GroupInfo

type GroupInfo struct {
	GroupId     int64           `protobuf:"varint,1,opt,name=group_id,json=groupId,proto3" json:"group_id,omitempty"`
	GroupName   string          `protobuf:"bytes,2,opt,name=group_name,json=groupName,proto3" json:"group_name,omitempty"`
	MasterUid   int64           `protobuf:"varint,3,opt,name=master_uid,json=masterUid,proto3" json:"master_uid,omitempty"`
	LatestMsgId int64           `protobuf:"varint,4,opt,name=latest_msg_id,json=latestMsgId,proto3" json:"latest_msg_id,omitempty"` //latest chat msg id
	CreatedTs   int64           `protobuf:"varint,5,opt,name=created_ts,json=createdTs,proto3" json:"created_ts,omitempty"`
	MemCount    int32           `protobuf:"varint,6,opt,name=mem_count,json=memCount,proto3" json:"mem_count,omitempty"`
	Members     map[int64]int32 `` /* 158-byte string literal not displayed */
	BlobInfo    *GroupBlobData  `protobuf:"bytes,21,opt,name=blob_info,json=blobInfo,proto3" json:"blob_info,omitempty"`
	// contains filtered or unexported fields
}

func (*GroupInfo) Descriptor deprecated

func (*GroupInfo) Descriptor() ([]byte, []int)

Deprecated: Use GroupInfo.ProtoReflect.Descriptor instead.

func (*GroupInfo) GetBlobInfo

func (x *GroupInfo) GetBlobInfo() *GroupBlobData

func (*GroupInfo) GetCreatedTs

func (x *GroupInfo) GetCreatedTs() int64

func (*GroupInfo) GetGroupId

func (x *GroupInfo) GetGroupId() int64

func (*GroupInfo) GetGroupName

func (x *GroupInfo) GetGroupName() string

func (*GroupInfo) GetLatestMsgId

func (x *GroupInfo) GetLatestMsgId() int64

func (*GroupInfo) GetMasterUid

func (x *GroupInfo) GetMasterUid() int64

func (*GroupInfo) GetMemCount

func (x *GroupInfo) GetMemCount() int32

func (*GroupInfo) GetMembers

func (x *GroupInfo) GetMembers() map[int64]int32

func (*GroupInfo) ProtoMessage

func (*GroupInfo) ProtoMessage()

func (*GroupInfo) ProtoReflect

func (x *GroupInfo) ProtoReflect() protoreflect.Message

func (*GroupInfo) Reset

func (x *GroupInfo) Reset()

func (*GroupInfo) String

func (x *GroupInfo) String() string

type LOAD_GROUP_REASON

type LOAD_GROUP_REASON int32

Load Group

const (
	LOAD_GROUP_REASON_LOAD_GRP_SEND_CHAT      LOAD_GROUP_REASON = 0 //send chat
	LOAD_GROUP_REASON_LOAD_GRP_QUERY_INFO     LOAD_GROUP_REASON = 1 //query group
	LOAD_GROUP_REASON_LOAD_GRP_CHG_GROUP_ATTR LOAD_GROUP_REASON = 2 //chg attr
)

func (LOAD_GROUP_REASON) Descriptor

func (LOAD_GROUP_REASON) Enum

func (LOAD_GROUP_REASON) EnumDescriptor deprecated

func (LOAD_GROUP_REASON) EnumDescriptor() ([]byte, []int)

Deprecated: Use LOAD_GROUP_REASON.Descriptor instead.

func (LOAD_GROUP_REASON) Number

func (LOAD_GROUP_REASON) String

func (x LOAD_GROUP_REASON) String() string

func (LOAD_GROUP_REASON) Type

type MsgApplyGroupAudit

type MsgApplyGroupAudit struct {
	Result    APPLY_GROUP_RESULT `protobuf:"varint,1,opt,name=result,proto3,enum=ss.APPLY_GROUP_RESULT" json:"result,omitempty"` //only use ALLOW&DENY
	GroupId   int64              `protobuf:"varint,2,opt,name=group_id,json=groupId,proto3" json:"group_id,omitempty"`
	GroupName string             `protobuf:"bytes,3,opt,name=group_name,json=groupName,proto3" json:"group_name,omitempty"`
	ApplyUid  int64              `protobuf:"varint,4,opt,name=apply_uid,json=applyUid,proto3" json:"apply_uid,omitempty"`
	Uid       int64              `protobuf:"varint,5,opt,name=uid,proto3" json:"uid,omitempty"`
	FromDb    int32              `protobuf:"varint,20,opt,name=from_db,json=fromDb,proto3" json:"from_db,omitempty"` //0: logic --> db 1:db --> logic
	Flag      int32              `protobuf:"varint,21,opt,name=flag,proto3" json:"flag,omitempty"`                   //0:normal 1:master activate invite
	// contains filtered or unexported fields
}

func (*MsgApplyGroupAudit) Descriptor deprecated

func (*MsgApplyGroupAudit) Descriptor() ([]byte, []int)

Deprecated: Use MsgApplyGroupAudit.ProtoReflect.Descriptor instead.

func (*MsgApplyGroupAudit) GetApplyUid

func (x *MsgApplyGroupAudit) GetApplyUid() int64

func (*MsgApplyGroupAudit) GetFlag

func (x *MsgApplyGroupAudit) GetFlag() int32

func (*MsgApplyGroupAudit) GetFromDb

func (x *MsgApplyGroupAudit) GetFromDb() int32

func (*MsgApplyGroupAudit) GetGroupId

func (x *MsgApplyGroupAudit) GetGroupId() int64

func (*MsgApplyGroupAudit) GetGroupName

func (x *MsgApplyGroupAudit) GetGroupName() string

func (*MsgApplyGroupAudit) GetResult

func (x *MsgApplyGroupAudit) GetResult() APPLY_GROUP_RESULT

func (*MsgApplyGroupAudit) GetUid

func (x *MsgApplyGroupAudit) GetUid() int64

func (*MsgApplyGroupAudit) ProtoMessage

func (*MsgApplyGroupAudit) ProtoMessage()

func (*MsgApplyGroupAudit) ProtoReflect

func (x *MsgApplyGroupAudit) ProtoReflect() protoreflect.Message

func (*MsgApplyGroupAudit) Reset

func (x *MsgApplyGroupAudit) Reset()

func (*MsgApplyGroupAudit) String

func (x *MsgApplyGroupAudit) String() string

type MsgApplyGroupNotify

type MsgApplyGroupNotify struct {
	GroupId    int64   `protobuf:"varint,1,opt,name=group_id,json=groupId,proto3" json:"group_id,omitempty"`
	GroupName  string  `protobuf:"bytes,2,opt,name=group_name,json=groupName,proto3" json:"group_name,omitempty"`
	MasterUid  int64   `protobuf:"varint,3,opt,name=master_uid,json=masterUid,proto3" json:"master_uid,omitempty"` //group master
	ApplyUid   int64   `protobuf:"varint,4,opt,name=apply_uid,json=applyUid,proto3" json:"apply_uid,omitempty"`    //apply uid
	ApplyName  string  `protobuf:"bytes,5,opt,name=apply_name,json=applyName,proto3" json:"apply_name,omitempty"`  //apply user
	ApplyMsg   string  `protobuf:"bytes,6,opt,name=apply_msg,json=applyMsg,proto3" json:"apply_msg,omitempty"`
	OccupySize int32   `protobuf:"varint,20,opt,name=occupy_size,json=occupySize,proto3" json:"occupy_size,omitempty"`
	Occupy     []int64 `protobuf:"varint,21,rep,packed,name=occupy,proto3" json:"occupy,omitempty"` //occupy data
	// contains filtered or unexported fields
}

func (*MsgApplyGroupNotify) Descriptor deprecated

func (*MsgApplyGroupNotify) Descriptor() ([]byte, []int)

Deprecated: Use MsgApplyGroupNotify.ProtoReflect.Descriptor instead.

func (*MsgApplyGroupNotify) GetApplyMsg

func (x *MsgApplyGroupNotify) GetApplyMsg() string

func (*MsgApplyGroupNotify) GetApplyName

func (x *MsgApplyGroupNotify) GetApplyName() string

func (*MsgApplyGroupNotify) GetApplyUid

func (x *MsgApplyGroupNotify) GetApplyUid() int64

func (*MsgApplyGroupNotify) GetGroupId

func (x *MsgApplyGroupNotify) GetGroupId() int64

func (*MsgApplyGroupNotify) GetGroupName

func (x *MsgApplyGroupNotify) GetGroupName() string

func (*MsgApplyGroupNotify) GetMasterUid

func (x *MsgApplyGroupNotify) GetMasterUid() int64

func (*MsgApplyGroupNotify) GetOccupy

func (x *MsgApplyGroupNotify) GetOccupy() []int64

func (*MsgApplyGroupNotify) GetOccupySize

func (x *MsgApplyGroupNotify) GetOccupySize() int32

func (*MsgApplyGroupNotify) ProtoMessage

func (*MsgApplyGroupNotify) ProtoMessage()

func (*MsgApplyGroupNotify) ProtoReflect

func (x *MsgApplyGroupNotify) ProtoReflect() protoreflect.Message

func (*MsgApplyGroupNotify) Reset

func (x *MsgApplyGroupNotify) Reset()

func (*MsgApplyGroupNotify) String

func (x *MsgApplyGroupNotify) String() string

type MsgApplyGroupReq

type MsgApplyGroupReq struct {
	GroupId   int64  `protobuf:"varint,1,opt,name=group_id,json=groupId,proto3" json:"group_id,omitempty"`
	GroupName string `protobuf:"bytes,2,opt,name=group_name,json=groupName,proto3" json:"group_name,omitempty"`
	Pass      string `protobuf:"bytes,3,opt,name=pass,proto3" json:"pass,omitempty"`
	ApplyUid  int64  `protobuf:"varint,4,opt,name=apply_uid,json=applyUid,proto3" json:"apply_uid,omitempty"`
	ApplyName string `protobuf:"bytes,5,opt,name=apply_name,json=applyName,proto3" json:"apply_name,omitempty"`
	ApplyMsg  string `protobuf:"bytes,6,opt,name=apply_msg,json=applyMsg,proto3" json:"apply_msg,omitempty"` //apply msg
	Occupy    int64  `protobuf:"varint,20,opt,name=occupy,proto3" json:"occupy,omitempty"`                   //payload
	// contains filtered or unexported fields
}

apply group

func (*MsgApplyGroupReq) Descriptor deprecated

func (*MsgApplyGroupReq) Descriptor() ([]byte, []int)

Deprecated: Use MsgApplyGroupReq.ProtoReflect.Descriptor instead.

func (*MsgApplyGroupReq) GetApplyMsg

func (x *MsgApplyGroupReq) GetApplyMsg() string

func (*MsgApplyGroupReq) GetApplyName

func (x *MsgApplyGroupReq) GetApplyName() string

func (*MsgApplyGroupReq) GetApplyUid

func (x *MsgApplyGroupReq) GetApplyUid() int64

func (*MsgApplyGroupReq) GetGroupId

func (x *MsgApplyGroupReq) GetGroupId() int64

func (*MsgApplyGroupReq) GetGroupName

func (x *MsgApplyGroupReq) GetGroupName() string

func (*MsgApplyGroupReq) GetOccupy

func (x *MsgApplyGroupReq) GetOccupy() int64

func (*MsgApplyGroupReq) GetPass

func (x *MsgApplyGroupReq) GetPass() string

func (*MsgApplyGroupReq) ProtoMessage

func (*MsgApplyGroupReq) ProtoMessage()

func (*MsgApplyGroupReq) ProtoReflect

func (x *MsgApplyGroupReq) ProtoReflect() protoreflect.Message

func (*MsgApplyGroupReq) Reset

func (x *MsgApplyGroupReq) Reset()

func (*MsgApplyGroupReq) String

func (x *MsgApplyGroupReq) String() string

type MsgApplyGroupRsp

type MsgApplyGroupRsp struct {
	Result    APPLY_GROUP_RESULT `protobuf:"varint,1,opt,name=result,proto3,enum=ss.APPLY_GROUP_RESULT" json:"result,omitempty"`
	GroupId   int64              `protobuf:"varint,2,opt,name=group_id,json=groupId,proto3" json:"group_id,omitempty"`
	GroupName string             `protobuf:"bytes,3,opt,name=group_name,json=groupName,proto3" json:"group_name,omitempty"`
	ApplyUid  int64              `protobuf:"varint,4,opt,name=apply_uid,json=applyUid,proto3" json:"apply_uid,omitempty"`
	ApplyName string             `protobuf:"bytes,5,opt,name=apply_name,json=applyName,proto3" json:"apply_name,omitempty"`
	Occupy    int64              `protobuf:"varint,20,opt,name=occupy,proto3" json:"occupy,omitempty"` //payload
	Flag      int32              `protobuf:"varint,21,opt,name=flag,proto3" json:"flag,omitempty"`     //0:normal 1:master activate invite
	// contains filtered or unexported fields
}

func (*MsgApplyGroupRsp) Descriptor deprecated

func (*MsgApplyGroupRsp) Descriptor() ([]byte, []int)

Deprecated: Use MsgApplyGroupRsp.ProtoReflect.Descriptor instead.

func (*MsgApplyGroupRsp) GetApplyName

func (x *MsgApplyGroupRsp) GetApplyName() string

func (*MsgApplyGroupRsp) GetApplyUid

func (x *MsgApplyGroupRsp) GetApplyUid() int64

func (*MsgApplyGroupRsp) GetFlag

func (x *MsgApplyGroupRsp) GetFlag() int32

func (*MsgApplyGroupRsp) GetGroupId

func (x *MsgApplyGroupRsp) GetGroupId() int64

func (*MsgApplyGroupRsp) GetGroupName

func (x *MsgApplyGroupRsp) GetGroupName() string

func (*MsgApplyGroupRsp) GetOccupy

func (x *MsgApplyGroupRsp) GetOccupy() int64

func (*MsgApplyGroupRsp) GetResult

func (x *MsgApplyGroupRsp) GetResult() APPLY_GROUP_RESULT

func (*MsgApplyGroupRsp) ProtoMessage

func (*MsgApplyGroupRsp) ProtoMessage()

func (*MsgApplyGroupRsp) ProtoReflect

func (x *MsgApplyGroupRsp) ProtoReflect() protoreflect.Message

func (*MsgApplyGroupRsp) Reset

func (x *MsgApplyGroupRsp) Reset()

func (*MsgApplyGroupRsp) String

func (x *MsgApplyGroupRsp) String() string

type MsgBatchQueryGroupSnap

type MsgBatchQueryGroupSnap struct {
	Uid        int64   `protobuf:"varint,1,opt,name=uid,proto3" json:"uid,omitempty"`
	Count      int32   `protobuf:"varint,2,opt,name=count,proto3" json:"count,omitempty"`
	TargetList []int64 `protobuf:"varint,3,rep,packed,name=target_list,json=targetList,proto3" json:"target_list,omitempty"`
	// contains filtered or unexported fields
}

Batch Qury GroupSnap

func (*MsgBatchQueryGroupSnap) Descriptor deprecated

func (*MsgBatchQueryGroupSnap) Descriptor() ([]byte, []int)

Deprecated: Use MsgBatchQueryGroupSnap.ProtoReflect.Descriptor instead.

func (*MsgBatchQueryGroupSnap) GetCount

func (x *MsgBatchQueryGroupSnap) GetCount() int32

func (*MsgBatchQueryGroupSnap) GetTargetList

func (x *MsgBatchQueryGroupSnap) GetTargetList() []int64

func (*MsgBatchQueryGroupSnap) GetUid

func (x *MsgBatchQueryGroupSnap) GetUid() int64

func (*MsgBatchQueryGroupSnap) ProtoMessage

func (*MsgBatchQueryGroupSnap) ProtoMessage()

func (*MsgBatchQueryGroupSnap) ProtoReflect

func (x *MsgBatchQueryGroupSnap) ProtoReflect() protoreflect.Message

func (*MsgBatchQueryGroupSnap) Reset

func (x *MsgBatchQueryGroupSnap) Reset()

func (*MsgBatchQueryGroupSnap) String

func (x *MsgBatchQueryGroupSnap) String() string

type MsgChgGroupAttrReq

type MsgChgGroupAttrReq struct {
	Attr     GROUP_ATTR_TYPE `protobuf:"varint,1,opt,name=attr,proto3,enum=ss.GROUP_ATTR_TYPE" json:"attr,omitempty"`
	Uid      int64           `protobuf:"varint,2,opt,name=uid,proto3" json:"uid,omitempty"`
	GrpId    int64           `protobuf:"varint,3,opt,name=grp_id,json=grpId,proto3" json:"grp_id,omitempty"`
	IntV     int64           `protobuf:"varint,4,opt,name=int_v,json=intV,proto3" json:"int_v,omitempty"`
	StrV     string          `protobuf:"bytes,5,opt,name=str_v,json=strV,proto3" json:"str_v,omitempty"`
	Occupy   int64           `protobuf:"varint,20,opt,name=occupy,proto3" json:"occupy,omitempty"`
	MemCount int32           `protobuf:"varint,21,opt,name=mem_count,json=memCount,proto3" json:"mem_count,omitempty"`
	Desc     string          `protobuf:"bytes,22,opt,name=desc,proto3" json:"desc,omitempty"`
	// contains filtered or unexported fields
}

GroupAttr

func (*MsgChgGroupAttrReq) Descriptor deprecated

func (*MsgChgGroupAttrReq) Descriptor() ([]byte, []int)

Deprecated: Use MsgChgGroupAttrReq.ProtoReflect.Descriptor instead.

func (*MsgChgGroupAttrReq) GetAttr

func (x *MsgChgGroupAttrReq) GetAttr() GROUP_ATTR_TYPE

func (*MsgChgGroupAttrReq) GetDesc

func (x *MsgChgGroupAttrReq) GetDesc() string

func (*MsgChgGroupAttrReq) GetGrpId

func (x *MsgChgGroupAttrReq) GetGrpId() int64

func (*MsgChgGroupAttrReq) GetIntV

func (x *MsgChgGroupAttrReq) GetIntV() int64

func (*MsgChgGroupAttrReq) GetMemCount

func (x *MsgChgGroupAttrReq) GetMemCount() int32

func (*MsgChgGroupAttrReq) GetOccupy

func (x *MsgChgGroupAttrReq) GetOccupy() int64

func (*MsgChgGroupAttrReq) GetStrV

func (x *MsgChgGroupAttrReq) GetStrV() string

func (*MsgChgGroupAttrReq) GetUid

func (x *MsgChgGroupAttrReq) GetUid() int64

func (*MsgChgGroupAttrReq) ProtoMessage

func (*MsgChgGroupAttrReq) ProtoMessage()

func (*MsgChgGroupAttrReq) ProtoReflect

func (x *MsgChgGroupAttrReq) ProtoReflect() protoreflect.Message

func (*MsgChgGroupAttrReq) Reset

func (x *MsgChgGroupAttrReq) Reset()

func (*MsgChgGroupAttrReq) String

func (x *MsgChgGroupAttrReq) String() string

type MsgChgGroupAttrRsp

type MsgChgGroupAttrRsp struct {
	Result SS_COMMON_RESULT `protobuf:"varint,1,opt,name=result,proto3,enum=ss.SS_COMMON_RESULT" json:"result,omitempty"`
	Attr   GROUP_ATTR_TYPE  `protobuf:"varint,2,opt,name=attr,proto3,enum=ss.GROUP_ATTR_TYPE" json:"attr,omitempty"`
	Uid    int64            `protobuf:"varint,3,opt,name=uid,proto3" json:"uid,omitempty"`
	GrpId  int64            `protobuf:"varint,4,opt,name=grp_id,json=grpId,proto3" json:"grp_id,omitempty"`
	IntV   int64            `protobuf:"varint,5,opt,name=int_v,json=intV,proto3" json:"int_v,omitempty"`
	StrV   string           `protobuf:"bytes,6,opt,name=str_v,json=strV,proto3" json:"str_v,omitempty"`
	Occupy int64            `protobuf:"varint,20,opt,name=occupy,proto3" json:"occupy,omitempty"`
	// contains filtered or unexported fields
}

GroupAttr

func (*MsgChgGroupAttrRsp) Descriptor deprecated

func (*MsgChgGroupAttrRsp) Descriptor() ([]byte, []int)

Deprecated: Use MsgChgGroupAttrRsp.ProtoReflect.Descriptor instead.

func (*MsgChgGroupAttrRsp) GetAttr

func (x *MsgChgGroupAttrRsp) GetAttr() GROUP_ATTR_TYPE

func (*MsgChgGroupAttrRsp) GetGrpId

func (x *MsgChgGroupAttrRsp) GetGrpId() int64

func (*MsgChgGroupAttrRsp) GetIntV

func (x *MsgChgGroupAttrRsp) GetIntV() int64

func (*MsgChgGroupAttrRsp) GetOccupy

func (x *MsgChgGroupAttrRsp) GetOccupy() int64

func (*MsgChgGroupAttrRsp) GetResult

func (x *MsgChgGroupAttrRsp) GetResult() SS_COMMON_RESULT

func (*MsgChgGroupAttrRsp) GetStrV

func (x *MsgChgGroupAttrRsp) GetStrV() string

func (*MsgChgGroupAttrRsp) GetUid

func (x *MsgChgGroupAttrRsp) GetUid() int64

func (*MsgChgGroupAttrRsp) ProtoMessage

func (*MsgChgGroupAttrRsp) ProtoMessage()

func (*MsgChgGroupAttrRsp) ProtoReflect

func (x *MsgChgGroupAttrRsp) ProtoReflect() protoreflect.Message

func (*MsgChgGroupAttrRsp) Reset

func (x *MsgChgGroupAttrRsp) Reset()

func (*MsgChgGroupAttrRsp) String

func (x *MsgChgGroupAttrRsp) String() string

type MsgCommonNotify

type MsgCommonNotify struct {
	NotifyType COMMON_NOTIFY_TYPE `protobuf:"varint,1,opt,name=notify_type,json=notifyType,proto3,enum=ss.COMMON_NOTIFY_TYPE" json:"notify_type,omitempty"`
	Uid        int64              `protobuf:"varint,2,opt,name=uid,proto3" json:"uid,omitempty"`
	IntV       int64              `protobuf:"varint,3,opt,name=int_v,json=intV,proto3" json:"int_v,omitempty"`
	StrV       string             `protobuf:"bytes,4,opt,name=str_v,json=strV,proto3" json:"str_v,omitempty"`
	GrpId      int64              `protobuf:"varint,5,opt,name=grp_id,json=grpId,proto3" json:"grp_id,omitempty"`
	Members    map[int64]int32    `` /* 158-byte string literal not displayed */
	ChatMsg    *ChatMsg           `protobuf:"bytes,21,opt,name=chat_msg,json=chatMsg,proto3" json:"chat_msg,omitempty"`
	Strs       []string           `protobuf:"bytes,22,rep,name=strs,proto3" json:"strs,omitempty"`
	Occupy     int64              `protobuf:"varint,23,opt,name=occupy,proto3" json:"occupy,omitempty"`
	// contains filtered or unexported fields
}

func (*MsgCommonNotify) Descriptor deprecated

func (*MsgCommonNotify) Descriptor() ([]byte, []int)

Deprecated: Use MsgCommonNotify.ProtoReflect.Descriptor instead.

func (*MsgCommonNotify) GetChatMsg

func (x *MsgCommonNotify) GetChatMsg() *ChatMsg

func (*MsgCommonNotify) GetGrpId

func (x *MsgCommonNotify) GetGrpId() int64

func (*MsgCommonNotify) GetIntV

func (x *MsgCommonNotify) GetIntV() int64

func (*MsgCommonNotify) GetMembers

func (x *MsgCommonNotify) GetMembers() map[int64]int32

func (*MsgCommonNotify) GetNotifyType

func (x *MsgCommonNotify) GetNotifyType() COMMON_NOTIFY_TYPE

func (*MsgCommonNotify) GetOccupy

func (x *MsgCommonNotify) GetOccupy() int64

func (*MsgCommonNotify) GetStrV

func (x *MsgCommonNotify) GetStrV() string

func (*MsgCommonNotify) GetStrs

func (x *MsgCommonNotify) GetStrs() []string

func (*MsgCommonNotify) GetUid

func (x *MsgCommonNotify) GetUid() int64

func (*MsgCommonNotify) ProtoMessage

func (*MsgCommonNotify) ProtoMessage()

func (*MsgCommonNotify) ProtoReflect

func (x *MsgCommonNotify) ProtoReflect() protoreflect.Message

func (*MsgCommonNotify) Reset

func (x *MsgCommonNotify) Reset()

func (*MsgCommonNotify) String

func (x *MsgCommonNotify) String() string

type MsgCommonQuery

type MsgCommonQuery struct {
	QueryType int32  `protobuf:"varint,1,opt,name=query_type,json=queryType,proto3" json:"query_type,omitempty"` //refer SS_COMMON_QUERY_TYPE_xx
	Uid       int64  `protobuf:"varint,2,opt,name=uid,proto3" json:"uid,omitempty"`
	GrpId     int64  `protobuf:"varint,3,opt,name=grp_id,json=grpId,proto3" json:"grp_id,omitempty"`
	IntV      int64  `protobuf:"varint,4,opt,name=int_v,json=intV,proto3" json:"int_v,omitempty"`
	StrV      string `protobuf:"bytes,5,opt,name=str_v,json=strV,proto3" json:"str_v,omitempty"`
	Occupy    int64  `protobuf:"varint,20,opt,name=occupy,proto3" json:"occupy,omitempty"`
	// contains filtered or unexported fields
}

CommonQuery client --> server

func (*MsgCommonQuery) Descriptor deprecated

func (*MsgCommonQuery) Descriptor() ([]byte, []int)

Deprecated: Use MsgCommonQuery.ProtoReflect.Descriptor instead.

func (*MsgCommonQuery) GetGrpId

func (x *MsgCommonQuery) GetGrpId() int64

func (*MsgCommonQuery) GetIntV

func (x *MsgCommonQuery) GetIntV() int64

func (*MsgCommonQuery) GetOccupy

func (x *MsgCommonQuery) GetOccupy() int64

func (*MsgCommonQuery) GetQueryType

func (x *MsgCommonQuery) GetQueryType() int32

func (*MsgCommonQuery) GetStrV

func (x *MsgCommonQuery) GetStrV() string

func (*MsgCommonQuery) GetUid

func (x *MsgCommonQuery) GetUid() int64

func (*MsgCommonQuery) ProtoMessage

func (*MsgCommonQuery) ProtoMessage()

func (*MsgCommonQuery) ProtoReflect

func (x *MsgCommonQuery) ProtoReflect() protoreflect.Message

func (*MsgCommonQuery) Reset

func (x *MsgCommonQuery) Reset()

func (*MsgCommonQuery) String

func (x *MsgCommonQuery) String() string

type MsgCreateGrpReq

type MsgCreateGrpReq struct {
	Uid     int64  `protobuf:"varint,1,opt,name=uid,proto3" json:"uid,omitempty"`
	GrpName string `protobuf:"bytes,2,opt,name=grp_name,json=grpName,proto3" json:"grp_name,omitempty"`
	GrpPass string `protobuf:"bytes,3,opt,name=grp_pass,json=grpPass,proto3" json:"grp_pass,omitempty"`
	Desc    string `protobuf:"bytes,4,opt,name=desc,proto3" json:"desc,omitempty"`
	// contains filtered or unexported fields
}

func (*MsgCreateGrpReq) Descriptor deprecated

func (*MsgCreateGrpReq) Descriptor() ([]byte, []int)

Deprecated: Use MsgCreateGrpReq.ProtoReflect.Descriptor instead.

func (*MsgCreateGrpReq) GetDesc

func (x *MsgCreateGrpReq) GetDesc() string

func (*MsgCreateGrpReq) GetGrpName

func (x *MsgCreateGrpReq) GetGrpName() string

func (*MsgCreateGrpReq) GetGrpPass

func (x *MsgCreateGrpReq) GetGrpPass() string

func (*MsgCreateGrpReq) GetUid

func (x *MsgCreateGrpReq) GetUid() int64

func (*MsgCreateGrpReq) ProtoMessage

func (*MsgCreateGrpReq) ProtoMessage()

func (*MsgCreateGrpReq) ProtoReflect

func (x *MsgCreateGrpReq) ProtoReflect() protoreflect.Message

func (*MsgCreateGrpReq) Reset

func (x *MsgCreateGrpReq) Reset()

func (*MsgCreateGrpReq) String

func (x *MsgCreateGrpReq) String() string

type MsgCreateGrpRsp

type MsgCreateGrpRsp struct {
	Ret      CREATE_GROUP_RESULT `protobuf:"varint,1,opt,name=ret,proto3,enum=ss.CREATE_GROUP_RESULT" json:"ret,omitempty"`
	Uid      int64               `protobuf:"varint,2,opt,name=uid,proto3" json:"uid,omitempty"`
	GrpId    int64               `protobuf:"varint,3,opt,name=grp_id,json=grpId,proto3" json:"grp_id,omitempty"`
	GrpName  string              `protobuf:"bytes,4,opt,name=grp_name,json=grpName,proto3" json:"grp_name,omitempty"`
	MemCount int32               `protobuf:"varint,5,opt,name=mem_count,json=memCount,proto3" json:"mem_count,omitempty"`
	CreateTs int64               `protobuf:"varint,6,opt,name=create_ts,json=createTs,proto3" json:"create_ts,omitempty"`
	Desc     string              `protobuf:"bytes,7,opt,name=desc,proto3" json:"desc,omitempty"`
	// contains filtered or unexported fields
}

func (*MsgCreateGrpRsp) Descriptor deprecated

func (*MsgCreateGrpRsp) Descriptor() ([]byte, []int)

Deprecated: Use MsgCreateGrpRsp.ProtoReflect.Descriptor instead.

func (*MsgCreateGrpRsp) GetCreateTs

func (x *MsgCreateGrpRsp) GetCreateTs() int64

func (*MsgCreateGrpRsp) GetDesc

func (x *MsgCreateGrpRsp) GetDesc() string

func (*MsgCreateGrpRsp) GetGrpId

func (x *MsgCreateGrpRsp) GetGrpId() int64

func (*MsgCreateGrpRsp) GetGrpName

func (x *MsgCreateGrpRsp) GetGrpName() string

func (*MsgCreateGrpRsp) GetMemCount

func (x *MsgCreateGrpRsp) GetMemCount() int32

func (*MsgCreateGrpRsp) GetRet

func (*MsgCreateGrpRsp) GetUid

func (x *MsgCreateGrpRsp) GetUid() int64

func (*MsgCreateGrpRsp) ProtoMessage

func (*MsgCreateGrpRsp) ProtoMessage()

func (*MsgCreateGrpRsp) ProtoReflect

func (x *MsgCreateGrpRsp) ProtoReflect() protoreflect.Message

func (*MsgCreateGrpRsp) Reset

func (x *MsgCreateGrpRsp) Reset()

func (*MsgCreateGrpRsp) String

func (x *MsgCreateGrpRsp) String() string

type MsgDisp

type MsgDisp struct {
	ProtoType  DISP_PROTO_TYPE `protobuf:"varint,1,opt,name=proto_type,json=protoType,proto3,enum=ss.DISP_PROTO_TYPE" json:"proto_type,omitempty"`
	Target     DISP_MSG_TARGET `protobuf:"varint,2,opt,name=target,proto3,enum=ss.DISP_MSG_TARGET" json:"target,omitempty"`
	Method     DISP_MSG_METHOD `protobuf:"varint,3,opt,name=method,proto3,enum=ss.DISP_MSG_METHOD" json:"method,omitempty"`
	SpecServer int32           `protobuf:"varint,4,opt,name=spec_server,json=specServer,proto3" json:"spec_server,omitempty"` //only for METHOD_SPEC
	FromServer int32           `protobuf:"varint,5,opt,name=from_server,json=fromServer,proto3" json:"from_server,omitempty"`
	HashV      int64           `protobuf:"varint,6,opt,name=hash_v,json=hashV,proto3" json:"hash_v,omitempty"` //only for METHOD_HASH
	// Types that are assignable to DispBody:
	//	*MsgDisp_Hello
	//	*MsgDisp_KickDupUser
	//	*MsgDisp_ApplyGroupReq
	//	*MsgDisp_ApplyGroupRsp
	//	*MsgDisp_ApplyGroupNotify
	//	*MsgDisp_ApplyGroupAudit
	//	*MsgDisp_CommonNotify
	//	*MsgDisp_EnterGroupReq
	//	*MsgDisp_EnterGroupRsp
	//	*MsgDisp_SendChatReq
	//	*MsgDisp_SendChatRsp
	//	*MsgDisp_QueryGroupReq
	//	*MsgDisp_SyncGroupInfo
	//	*MsgDisp_ChgGroupAttrReq
	//	*MsgDisp_ChgGroupAttrRsp
	//	*MsgDisp_CommonQuery
	DispBody isMsgDisp_DispBody `protobuf_oneof:"disp_body"`
	// contains filtered or unexported fields
}

DispMsg Tips:DisMsg mostly may carry occupy member to passthrough

func (*MsgDisp) Descriptor deprecated

func (*MsgDisp) Descriptor() ([]byte, []int)

Deprecated: Use MsgDisp.ProtoReflect.Descriptor instead.

func (*MsgDisp) GetApplyGroupAudit

func (x *MsgDisp) GetApplyGroupAudit() *MsgApplyGroupAudit

func (*MsgDisp) GetApplyGroupNotify

func (x *MsgDisp) GetApplyGroupNotify() *MsgApplyGroupNotify

func (*MsgDisp) GetApplyGroupReq

func (x *MsgDisp) GetApplyGroupReq() *MsgApplyGroupReq

func (*MsgDisp) GetApplyGroupRsp

func (x *MsgDisp) GetApplyGroupRsp() *MsgApplyGroupRsp

func (*MsgDisp) GetChgGroupAttrReq

func (x *MsgDisp) GetChgGroupAttrReq() *MsgChgGroupAttrReq

func (*MsgDisp) GetChgGroupAttrRsp

func (x *MsgDisp) GetChgGroupAttrRsp() *MsgChgGroupAttrRsp

func (*MsgDisp) GetCommonNotify

func (x *MsgDisp) GetCommonNotify() *MsgCommonNotify

func (*MsgDisp) GetCommonQuery

func (x *MsgDisp) GetCommonQuery() *MsgCommonQuery

func (*MsgDisp) GetDispBody

func (m *MsgDisp) GetDispBody() isMsgDisp_DispBody

func (*MsgDisp) GetEnterGroupReq

func (x *MsgDisp) GetEnterGroupReq() *MsgEnterGroupReq

func (*MsgDisp) GetEnterGroupRsp

func (x *MsgDisp) GetEnterGroupRsp() *MsgEnterGroupRsp

func (*MsgDisp) GetFromServer

func (x *MsgDisp) GetFromServer() int32

func (*MsgDisp) GetHashV

func (x *MsgDisp) GetHashV() int64

func (*MsgDisp) GetHello

func (x *MsgDisp) GetHello() *MsgDispHello

func (*MsgDisp) GetKickDupUser

func (x *MsgDisp) GetKickDupUser() *MsgDispKickDupUser

func (*MsgDisp) GetMethod

func (x *MsgDisp) GetMethod() DISP_MSG_METHOD

func (*MsgDisp) GetProtoType

func (x *MsgDisp) GetProtoType() DISP_PROTO_TYPE

func (*MsgDisp) GetQueryGroupReq

func (x *MsgDisp) GetQueryGroupReq() *MsgQueryGroupReq

func (*MsgDisp) GetSendChatReq

func (x *MsgDisp) GetSendChatReq() *MsgSendChatReq

func (*MsgDisp) GetSendChatRsp

func (x *MsgDisp) GetSendChatRsp() *MsgSendChatRsp

func (*MsgDisp) GetSpecServer

func (x *MsgDisp) GetSpecServer() int32

func (*MsgDisp) GetSyncGroupInfo

func (x *MsgDisp) GetSyncGroupInfo() *MsgSyncGroupInfo

func (*MsgDisp) GetTarget

func (x *MsgDisp) GetTarget() DISP_MSG_TARGET

func (*MsgDisp) ProtoMessage

func (*MsgDisp) ProtoMessage()

func (*MsgDisp) ProtoReflect

func (x *MsgDisp) ProtoReflect() protoreflect.Message

func (*MsgDisp) Reset

func (x *MsgDisp) Reset()

func (*MsgDisp) String

func (x *MsgDisp) String() string

type MsgDispHello

type MsgDispHello struct {
	Content string `protobuf:"bytes,1,opt,name=content,proto3" json:"content,omitempty"`
	// contains filtered or unexported fields
}

*********DISP SUB MSG************

func (*MsgDispHello) Descriptor deprecated

func (*MsgDispHello) Descriptor() ([]byte, []int)

Deprecated: Use MsgDispHello.ProtoReflect.Descriptor instead.

func (*MsgDispHello) GetContent

func (x *MsgDispHello) GetContent() string

func (*MsgDispHello) ProtoMessage

func (*MsgDispHello) ProtoMessage()

func (*MsgDispHello) ProtoReflect

func (x *MsgDispHello) ProtoReflect() protoreflect.Message

func (*MsgDispHello) Reset

func (x *MsgDispHello) Reset()

func (*MsgDispHello) String

func (x *MsgDispHello) String() string

type MsgDispKickDupUser

type MsgDispKickDupUser struct {
	TargetUid int64 `protobuf:"varint,1,opt,name=target_uid,json=targetUid,proto3" json:"target_uid,omitempty"` //target uid
	// contains filtered or unexported fields
}

func (*MsgDispKickDupUser) Descriptor deprecated

func (*MsgDispKickDupUser) Descriptor() ([]byte, []int)

Deprecated: Use MsgDispKickDupUser.ProtoReflect.Descriptor instead.

func (*MsgDispKickDupUser) GetTargetUid

func (x *MsgDispKickDupUser) GetTargetUid() int64

func (*MsgDispKickDupUser) ProtoMessage

func (*MsgDispKickDupUser) ProtoMessage()

func (*MsgDispKickDupUser) ProtoReflect

func (x *MsgDispKickDupUser) ProtoReflect() protoreflect.Message

func (*MsgDispKickDupUser) Reset

func (x *MsgDispKickDupUser) Reset()

func (*MsgDispKickDupUser) String

func (x *MsgDispKickDupUser) String() string

type MsgDisp_ApplyGroupAudit

type MsgDisp_ApplyGroupAudit struct {
	ApplyGroupAudit *MsgApplyGroupAudit `protobuf:"bytes,25,opt,name=apply_group_audit,json=applyGroupAudit,proto3,oneof"`
}

type MsgDisp_ApplyGroupNotify

type MsgDisp_ApplyGroupNotify struct {
	ApplyGroupNotify *MsgApplyGroupNotify `protobuf:"bytes,24,opt,name=apply_group_notify,json=applyGroupNotify,proto3,oneof"`
}

type MsgDisp_ApplyGroupReq

type MsgDisp_ApplyGroupReq struct {
	ApplyGroupReq *MsgApplyGroupReq `protobuf:"bytes,22,opt,name=apply_group_req,json=applyGroupReq,proto3,oneof"`
}

type MsgDisp_ApplyGroupRsp

type MsgDisp_ApplyGroupRsp struct {
	ApplyGroupRsp *MsgApplyGroupRsp `protobuf:"bytes,23,opt,name=apply_group_rsp,json=applyGroupRsp,proto3,oneof"`
}

type MsgDisp_ChgGroupAttrReq

type MsgDisp_ChgGroupAttrReq struct {
	ChgGroupAttrReq *MsgChgGroupAttrReq `protobuf:"bytes,33,opt,name=chg_group_attr_req,json=chgGroupAttrReq,proto3,oneof"`
}

type MsgDisp_ChgGroupAttrRsp

type MsgDisp_ChgGroupAttrRsp struct {
	ChgGroupAttrRsp *MsgChgGroupAttrRsp `protobuf:"bytes,34,opt,name=chg_group_attr_rsp,json=chgGroupAttrRsp,proto3,oneof"`
}

type MsgDisp_CommonNotify

type MsgDisp_CommonNotify struct {
	CommonNotify *MsgCommonNotify `protobuf:"bytes,26,opt,name=common_notify,json=commonNotify,proto3,oneof"`
}

type MsgDisp_CommonQuery

type MsgDisp_CommonQuery struct {
	CommonQuery *MsgCommonQuery `protobuf:"bytes,35,opt,name=common_query,json=commonQuery,proto3,oneof"`
}

type MsgDisp_EnterGroupReq

type MsgDisp_EnterGroupReq struct {
	EnterGroupReq *MsgEnterGroupReq `protobuf:"bytes,27,opt,name=enter_group_req,json=enterGroupReq,proto3,oneof"`
}

type MsgDisp_EnterGroupRsp

type MsgDisp_EnterGroupRsp struct {
	EnterGroupRsp *MsgEnterGroupRsp `protobuf:"bytes,28,opt,name=enter_group_rsp,json=enterGroupRsp,proto3,oneof"`
}

type MsgDisp_Hello

type MsgDisp_Hello struct {
	Hello *MsgDispHello `protobuf:"bytes,20,opt,name=hello,proto3,oneof"`
}

type MsgDisp_KickDupUser

type MsgDisp_KickDupUser struct {
	KickDupUser *MsgDispKickDupUser `protobuf:"bytes,21,opt,name=kick_dup_user,json=kickDupUser,proto3,oneof"`
}

type MsgDisp_QueryGroupReq

type MsgDisp_QueryGroupReq struct {
	QueryGroupReq *MsgQueryGroupReq `protobuf:"bytes,31,opt,name=query_group_req,json=queryGroupReq,proto3,oneof"`
}

type MsgDisp_SendChatReq

type MsgDisp_SendChatReq struct {
	SendChatReq *MsgSendChatReq `protobuf:"bytes,29,opt,name=send_chat_req,json=sendChatReq,proto3,oneof"`
}

type MsgDisp_SendChatRsp

type MsgDisp_SendChatRsp struct {
	SendChatRsp *MsgSendChatRsp `protobuf:"bytes,30,opt,name=send_chat_rsp,json=sendChatRsp,proto3,oneof"`
}

type MsgDisp_SyncGroupInfo

type MsgDisp_SyncGroupInfo struct {
	SyncGroupInfo *MsgSyncGroupInfo `protobuf:"bytes,32,opt,name=sync_group_info,json=syncGroupInfo,proto3,oneof"`
}

type MsgEnterGroupReq

type MsgEnterGroupReq struct {
	Uid    int64 `protobuf:"varint,1,opt,name=uid,proto3" json:"uid,omitempty"`
	GrpId  int64 `protobuf:"varint,2,opt,name=grp_id,json=grpId,proto3" json:"grp_id,omitempty"`
	Occupy int64 `protobuf:"varint,20,opt,name=occupy,proto3" json:"occupy,omitempty"`
	// contains filtered or unexported fields
}

enter group

func (*MsgEnterGroupReq) Descriptor deprecated

func (*MsgEnterGroupReq) Descriptor() ([]byte, []int)

Deprecated: Use MsgEnterGroupReq.ProtoReflect.Descriptor instead.

func (*MsgEnterGroupReq) GetGrpId

func (x *MsgEnterGroupReq) GetGrpId() int64

func (*MsgEnterGroupReq) GetOccupy

func (x *MsgEnterGroupReq) GetOccupy() int64

func (*MsgEnterGroupReq) GetUid

func (x *MsgEnterGroupReq) GetUid() int64

func (*MsgEnterGroupReq) ProtoMessage

func (*MsgEnterGroupReq) ProtoMessage()

func (*MsgEnterGroupReq) ProtoReflect

func (x *MsgEnterGroupReq) ProtoReflect() protoreflect.Message

func (*MsgEnterGroupReq) Reset

func (x *MsgEnterGroupReq) Reset()

func (*MsgEnterGroupReq) String

func (x *MsgEnterGroupReq) String() string

type MsgEnterGroupRsp

type MsgEnterGroupRsp struct {
	Uid      int64  `protobuf:"varint,1,opt,name=uid,proto3" json:"uid,omitempty"`
	GrpId    int64  `protobuf:"varint,2,opt,name=grp_id,json=grpId,proto3" json:"grp_id,omitempty"`
	GrpName  string `protobuf:"bytes,3,opt,name=grp_name,json=grpName,proto3" json:"grp_name,omitempty"`
	Result   int32  `protobuf:"varint,4,opt,name=result,proto3" json:"result,omitempty"` //0:success 1:group not exist
	MsgCount int64  `protobuf:"varint,5,opt,name=msg_count,json=msgCount,proto3" json:"msg_count,omitempty"`
	Occupy   int64  `protobuf:"varint,20,opt,name=occupy,proto3" json:"occupy,omitempty"`
	// contains filtered or unexported fields
}

func (*MsgEnterGroupRsp) Descriptor deprecated

func (*MsgEnterGroupRsp) Descriptor() ([]byte, []int)

Deprecated: Use MsgEnterGroupRsp.ProtoReflect.Descriptor instead.

func (*MsgEnterGroupRsp) GetGrpId

func (x *MsgEnterGroupRsp) GetGrpId() int64

func (*MsgEnterGroupRsp) GetGrpName

func (x *MsgEnterGroupRsp) GetGrpName() string

func (*MsgEnterGroupRsp) GetMsgCount

func (x *MsgEnterGroupRsp) GetMsgCount() int64

func (*MsgEnterGroupRsp) GetOccupy

func (x *MsgEnterGroupRsp) GetOccupy() int64

func (*MsgEnterGroupRsp) GetResult

func (x *MsgEnterGroupRsp) GetResult() int32

func (*MsgEnterGroupRsp) GetUid

func (x *MsgEnterGroupRsp) GetUid() int64

func (*MsgEnterGroupRsp) ProtoMessage

func (*MsgEnterGroupRsp) ProtoMessage()

func (*MsgEnterGroupRsp) ProtoReflect

func (x *MsgEnterGroupRsp) ProtoReflect() protoreflect.Message

func (*MsgEnterGroupRsp) Reset

func (x *MsgEnterGroupRsp) Reset()

func (*MsgEnterGroupRsp) String

func (x *MsgEnterGroupRsp) String() string

type MsgExitGroupReq

type MsgExitGroupReq struct {
	Uid      int64  `protobuf:"varint,1,opt,name=uid,proto3" json:"uid,omitempty"`
	GrpId    int64  `protobuf:"varint,2,opt,name=grp_id,json=grpId,proto3" json:"grp_id,omitempty"`
	GrpName  string `protobuf:"bytes,3,opt,name=grp_name,json=grpName,proto3" json:"grp_name,omitempty"`
	DelGroup int32  `protobuf:"varint,4,opt,name=del_group,json=delGroup,proto3" json:"del_group,omitempty"`
	// contains filtered or unexported fields
}

Exit Group

func (*MsgExitGroupReq) Descriptor deprecated

func (*MsgExitGroupReq) Descriptor() ([]byte, []int)

Deprecated: Use MsgExitGroupReq.ProtoReflect.Descriptor instead.

func (*MsgExitGroupReq) GetDelGroup

func (x *MsgExitGroupReq) GetDelGroup() int32

func (*MsgExitGroupReq) GetGrpId

func (x *MsgExitGroupReq) GetGrpId() int64

func (*MsgExitGroupReq) GetGrpName

func (x *MsgExitGroupReq) GetGrpName() string

func (*MsgExitGroupReq) GetUid

func (x *MsgExitGroupReq) GetUid() int64

func (*MsgExitGroupReq) ProtoMessage

func (*MsgExitGroupReq) ProtoMessage()

func (*MsgExitGroupReq) ProtoReflect

func (x *MsgExitGroupReq) ProtoReflect() protoreflect.Message

func (*MsgExitGroupReq) Reset

func (x *MsgExitGroupReq) Reset()

func (*MsgExitGroupReq) String

func (x *MsgExitGroupReq) String() string

type MsgExitGroupRsp

type MsgExitGroupRsp struct {
	Result   SS_COMMON_RESULT `protobuf:"varint,1,opt,name=result,proto3,enum=ss.SS_COMMON_RESULT" json:"result,omitempty"`
	Uid      int64            `protobuf:"varint,2,opt,name=uid,proto3" json:"uid,omitempty"`
	GrpId    int64            `protobuf:"varint,3,opt,name=grp_id,json=grpId,proto3" json:"grp_id,omitempty"`
	GrpName  string           `protobuf:"bytes,4,opt,name=grp_name,json=grpName,proto3" json:"grp_name,omitempty"`
	DelGroup int32            `protobuf:"varint,5,opt,name=del_group,json=delGroup,proto3" json:"del_group,omitempty"`
	ByKick   int32            `protobuf:"varint,20,opt,name=by_kick,json=byKick,proto3" json:"by_kick,omitempty"`
	// contains filtered or unexported fields
}

func (*MsgExitGroupRsp) Descriptor deprecated

func (*MsgExitGroupRsp) Descriptor() ([]byte, []int)

Deprecated: Use MsgExitGroupRsp.ProtoReflect.Descriptor instead.

func (*MsgExitGroupRsp) GetByKick

func (x *MsgExitGroupRsp) GetByKick() int32

func (*MsgExitGroupRsp) GetDelGroup

func (x *MsgExitGroupRsp) GetDelGroup() int32

func (*MsgExitGroupRsp) GetGrpId

func (x *MsgExitGroupRsp) GetGrpId() int64

func (*MsgExitGroupRsp) GetGrpName

func (x *MsgExitGroupRsp) GetGrpName() string

func (*MsgExitGroupRsp) GetResult

func (x *MsgExitGroupRsp) GetResult() SS_COMMON_RESULT

func (*MsgExitGroupRsp) GetUid

func (x *MsgExitGroupRsp) GetUid() int64

func (*MsgExitGroupRsp) ProtoMessage

func (*MsgExitGroupRsp) ProtoMessage()

func (*MsgExitGroupRsp) ProtoReflect

func (x *MsgExitGroupRsp) ProtoReflect() protoreflect.Message

func (*MsgExitGroupRsp) Reset

func (x *MsgExitGroupRsp) Reset()

func (*MsgExitGroupRsp) String

func (x *MsgExitGroupRsp) String() string

type MsgFetchApplyGrpReq

type MsgFetchApplyGrpReq struct {
	Uid        int64 `protobuf:"varint,1,opt,name=uid,proto3" json:"uid,omitempty"`
	FetchCount int32 `protobuf:"varint,2,opt,name=fetch_count,json=fetchCount,proto3" json:"fetch_count,omitempty"`
	// contains filtered or unexported fields
}

Fetch Apply Group

func (*MsgFetchApplyGrpReq) Descriptor deprecated

func (*MsgFetchApplyGrpReq) Descriptor() ([]byte, []int)

Deprecated: Use MsgFetchApplyGrpReq.ProtoReflect.Descriptor instead.

func (*MsgFetchApplyGrpReq) GetFetchCount

func (x *MsgFetchApplyGrpReq) GetFetchCount() int32

func (*MsgFetchApplyGrpReq) GetUid

func (x *MsgFetchApplyGrpReq) GetUid() int64

func (*MsgFetchApplyGrpReq) ProtoMessage

func (*MsgFetchApplyGrpReq) ProtoMessage()

func (*MsgFetchApplyGrpReq) ProtoReflect

func (x *MsgFetchApplyGrpReq) ProtoReflect() protoreflect.Message

func (*MsgFetchApplyGrpReq) Reset

func (x *MsgFetchApplyGrpReq) Reset()

func (*MsgFetchApplyGrpReq) String

func (x *MsgFetchApplyGrpReq) String() string

type MsgFetchApplyGrpRsp

type MsgFetchApplyGrpRsp struct {
	Uid        int64                  `protobuf:"varint,1,opt,name=uid,proto3" json:"uid,omitempty"`
	Complete   int32                  `protobuf:"varint,2,opt,name=complete,proto3" json:"complete,omitempty"` //1:no more
	FetchCount int32                  `protobuf:"varint,3,opt,name=fetch_count,json=fetchCount,proto3" json:"fetch_count,omitempty"`
	NotifyList []*MsgApplyGroupNotify `protobuf:"bytes,20,rep,name=notify_list,json=notifyList,proto3" json:"notify_list,omitempty"`
	// contains filtered or unexported fields
}

func (*MsgFetchApplyGrpRsp) Descriptor deprecated

func (*MsgFetchApplyGrpRsp) Descriptor() ([]byte, []int)

Deprecated: Use MsgFetchApplyGrpRsp.ProtoReflect.Descriptor instead.

func (*MsgFetchApplyGrpRsp) GetComplete

func (x *MsgFetchApplyGrpRsp) GetComplete() int32

func (*MsgFetchApplyGrpRsp) GetFetchCount

func (x *MsgFetchApplyGrpRsp) GetFetchCount() int32

func (*MsgFetchApplyGrpRsp) GetNotifyList

func (x *MsgFetchApplyGrpRsp) GetNotifyList() []*MsgApplyGroupNotify

func (*MsgFetchApplyGrpRsp) GetUid

func (x *MsgFetchApplyGrpRsp) GetUid() int64

func (*MsgFetchApplyGrpRsp) ProtoMessage

func (*MsgFetchApplyGrpRsp) ProtoMessage()

func (*MsgFetchApplyGrpRsp) ProtoReflect

func (x *MsgFetchApplyGrpRsp) ProtoReflect() protoreflect.Message

func (*MsgFetchApplyGrpRsp) Reset

func (x *MsgFetchApplyGrpRsp) Reset()

func (*MsgFetchApplyGrpRsp) String

func (x *MsgFetchApplyGrpRsp) String() string

type MsgFetchAuditGrpReq

type MsgFetchAuditGrpReq struct {
	Uid        int64 `protobuf:"varint,1,opt,name=uid,proto3" json:"uid,omitempty"`
	FetchCount int32 `protobuf:"varint,2,opt,name=fetch_count,json=fetchCount,proto3" json:"fetch_count,omitempty"`
	// contains filtered or unexported fields
}

Fetch Audit Group

func (*MsgFetchAuditGrpReq) Descriptor deprecated

func (*MsgFetchAuditGrpReq) Descriptor() ([]byte, []int)

Deprecated: Use MsgFetchAuditGrpReq.ProtoReflect.Descriptor instead.

func (*MsgFetchAuditGrpReq) GetFetchCount

func (x *MsgFetchAuditGrpReq) GetFetchCount() int32

func (*MsgFetchAuditGrpReq) GetUid

func (x *MsgFetchAuditGrpReq) GetUid() int64

func (*MsgFetchAuditGrpReq) ProtoMessage

func (*MsgFetchAuditGrpReq) ProtoMessage()

func (*MsgFetchAuditGrpReq) ProtoReflect

func (x *MsgFetchAuditGrpReq) ProtoReflect() protoreflect.Message

func (*MsgFetchAuditGrpReq) Reset

func (x *MsgFetchAuditGrpReq) Reset()

func (*MsgFetchAuditGrpReq) String

func (x *MsgFetchAuditGrpReq) String() string

type MsgFetchAuditGrpRsp

type MsgFetchAuditGrpRsp struct {
	Uid        int64                 `protobuf:"varint,1,opt,name=uid,proto3" json:"uid,omitempty"`
	Complete   int32                 `protobuf:"varint,2,opt,name=complete,proto3" json:"complete,omitempty"` //1:no more
	FetchCount int32                 `protobuf:"varint,3,opt,name=fetch_count,json=fetchCount,proto3" json:"fetch_count,omitempty"`
	AuditList  []*MsgApplyGroupAudit `protobuf:"bytes,20,rep,name=audit_list,json=auditList,proto3" json:"audit_list,omitempty"`
	// contains filtered or unexported fields
}

func (*MsgFetchAuditGrpRsp) Descriptor deprecated

func (*MsgFetchAuditGrpRsp) Descriptor() ([]byte, []int)

Deprecated: Use MsgFetchAuditGrpRsp.ProtoReflect.Descriptor instead.

func (*MsgFetchAuditGrpRsp) GetAuditList

func (x *MsgFetchAuditGrpRsp) GetAuditList() []*MsgApplyGroupAudit

func (*MsgFetchAuditGrpRsp) GetComplete

func (x *MsgFetchAuditGrpRsp) GetComplete() int32

func (*MsgFetchAuditGrpRsp) GetFetchCount

func (x *MsgFetchAuditGrpRsp) GetFetchCount() int32

func (*MsgFetchAuditGrpRsp) GetUid

func (x *MsgFetchAuditGrpRsp) GetUid() int64

func (*MsgFetchAuditGrpRsp) ProtoMessage

func (*MsgFetchAuditGrpRsp) ProtoMessage()

func (*MsgFetchAuditGrpRsp) ProtoReflect

func (x *MsgFetchAuditGrpRsp) ProtoReflect() protoreflect.Message

func (*MsgFetchAuditGrpRsp) Reset

func (x *MsgFetchAuditGrpRsp) Reset()

func (*MsgFetchAuditGrpRsp) String

func (x *MsgFetchAuditGrpRsp) String() string

type MsgFetchChatReq

type MsgFetchChatReq struct {
	Uid         int64          `protobuf:"varint,1,opt,name=uid,proto3" json:"uid,omitempty"`
	GrpId       int64          `protobuf:"varint,2,opt,name=grp_id,json=grpId,proto3" json:"grp_id,omitempty"`
	LatestMsgId int64          `protobuf:"varint,3,opt,name=latest_msg_id,json=latestMsgId,proto3" json:"latest_msg_id,omitempty"` //readed msg id
	FetchCount  int32          `protobuf:"varint,4,opt,name=fetch_count,json=fetchCount,proto3" json:"fetch_count,omitempty"`
	FetchType   SS_COMMON_TYPE `protobuf:"varint,5,opt,name=fetch_type,json=fetchType,proto3,enum=ss.SS_COMMON_TYPE" json:"fetch_type,omitempty"`
	// contains filtered or unexported fields
}

Fetch Chat

func (*MsgFetchChatReq) Descriptor deprecated

func (*MsgFetchChatReq) Descriptor() ([]byte, []int)

Deprecated: Use MsgFetchChatReq.ProtoReflect.Descriptor instead.

func (*MsgFetchChatReq) GetFetchCount

func (x *MsgFetchChatReq) GetFetchCount() int32

func (*MsgFetchChatReq) GetFetchType

func (x *MsgFetchChatReq) GetFetchType() SS_COMMON_TYPE

func (*MsgFetchChatReq) GetGrpId

func (x *MsgFetchChatReq) GetGrpId() int64

func (*MsgFetchChatReq) GetLatestMsgId

func (x *MsgFetchChatReq) GetLatestMsgId() int64

func (*MsgFetchChatReq) GetUid

func (x *MsgFetchChatReq) GetUid() int64

func (*MsgFetchChatReq) ProtoMessage

func (*MsgFetchChatReq) ProtoMessage()

func (*MsgFetchChatReq) ProtoReflect

func (x *MsgFetchChatReq) ProtoReflect() protoreflect.Message

func (*MsgFetchChatReq) Reset

func (x *MsgFetchChatReq) Reset()

func (*MsgFetchChatReq) String

func (x *MsgFetchChatReq) String() string

type MsgFetchChatRsp

type MsgFetchChatRsp struct {
	Result     SS_COMMON_RESULT `protobuf:"varint,1,opt,name=result,proto3,enum=ss.SS_COMMON_RESULT" json:"result,omitempty"`
	Uid        int64            `protobuf:"varint,2,opt,name=uid,proto3" json:"uid,omitempty"`
	GrpId      int64            `protobuf:"varint,3,opt,name=grp_id,json=grpId,proto3" json:"grp_id,omitempty"`
	Complete   int32            `protobuf:"varint,4,opt,name=complete,proto3" json:"complete,omitempty"` //1:no more
	FetchCount int32            `protobuf:"varint,5,opt,name=fetch_count,json=fetchCount,proto3" json:"fetch_count,omitempty"`
	ChatList   []*ChatMsg       `protobuf:"bytes,6,rep,name=chat_list,json=chatList,proto3" json:"chat_list,omitempty"`
	FetchType  SS_COMMON_TYPE   `protobuf:"varint,7,opt,name=fetch_type,json=fetchType,proto3,enum=ss.SS_COMMON_TYPE" json:"fetch_type,omitempty"`
	// contains filtered or unexported fields
}

func (*MsgFetchChatRsp) Descriptor deprecated

func (*MsgFetchChatRsp) Descriptor() ([]byte, []int)

Deprecated: Use MsgFetchChatRsp.ProtoReflect.Descriptor instead.

func (*MsgFetchChatRsp) GetChatList

func (x *MsgFetchChatRsp) GetChatList() []*ChatMsg

func (*MsgFetchChatRsp) GetComplete

func (x *MsgFetchChatRsp) GetComplete() int32

func (*MsgFetchChatRsp) GetFetchCount

func (x *MsgFetchChatRsp) GetFetchCount() int32

func (*MsgFetchChatRsp) GetFetchType

func (x *MsgFetchChatRsp) GetFetchType() SS_COMMON_TYPE

func (*MsgFetchChatRsp) GetGrpId

func (x *MsgFetchChatRsp) GetGrpId() int64

func (*MsgFetchChatRsp) GetResult

func (x *MsgFetchChatRsp) GetResult() SS_COMMON_RESULT

func (*MsgFetchChatRsp) GetUid

func (x *MsgFetchChatRsp) GetUid() int64

func (*MsgFetchChatRsp) ProtoMessage

func (*MsgFetchChatRsp) ProtoMessage()

func (*MsgFetchChatRsp) ProtoReflect

func (x *MsgFetchChatRsp) ProtoReflect() protoreflect.Message

func (*MsgFetchChatRsp) Reset

func (x *MsgFetchChatRsp) Reset()

func (*MsgFetchChatRsp) String

func (x *MsgFetchChatRsp) String() string

type MsgFetchOfflineInfoReq

type MsgFetchOfflineInfoReq struct {
	Uid        int64 `protobuf:"varint,1,opt,name=uid,proto3" json:"uid,omitempty"`
	FetchCount int32 `protobuf:"varint,2,opt,name=fetch_count,json=fetchCount,proto3" json:"fetch_count,omitempty"`
	// contains filtered or unexported fields
}

Fetch OFFLINE_INFO

func (*MsgFetchOfflineInfoReq) Descriptor deprecated

func (*MsgFetchOfflineInfoReq) Descriptor() ([]byte, []int)

Deprecated: Use MsgFetchOfflineInfoReq.ProtoReflect.Descriptor instead.

func (*MsgFetchOfflineInfoReq) GetFetchCount

func (x *MsgFetchOfflineInfoReq) GetFetchCount() int32

func (*MsgFetchOfflineInfoReq) GetUid

func (x *MsgFetchOfflineInfoReq) GetUid() int64

func (*MsgFetchOfflineInfoReq) ProtoMessage

func (*MsgFetchOfflineInfoReq) ProtoMessage()

func (*MsgFetchOfflineInfoReq) ProtoReflect

func (x *MsgFetchOfflineInfoReq) ProtoReflect() protoreflect.Message

func (*MsgFetchOfflineInfoReq) Reset

func (x *MsgFetchOfflineInfoReq) Reset()

func (*MsgFetchOfflineInfoReq) String

func (x *MsgFetchOfflineInfoReq) String() string

type MsgFetchOfflineInfoRsp

type MsgFetchOfflineInfoRsp struct {
	Result     SS_COMMON_RESULT `protobuf:"varint,1,opt,name=result,proto3,enum=ss.SS_COMMON_RESULT" json:"result,omitempty"`
	Uid        int64            `protobuf:"varint,2,opt,name=uid,proto3" json:"uid,omitempty"`
	Complete   int32            `protobuf:"varint,3,opt,name=complete,proto3" json:"complete,omitempty"` //1:no more
	FetchCount int32            `protobuf:"varint,4,opt,name=fetch_count,json=fetchCount,proto3" json:"fetch_count,omitempty"`
	InfoList   []string         `protobuf:"bytes,5,rep,name=info_list,json=infoList,proto3" json:"info_list,omitempty"`
	// contains filtered or unexported fields
}

func (*MsgFetchOfflineInfoRsp) Descriptor deprecated

func (*MsgFetchOfflineInfoRsp) Descriptor() ([]byte, []int)

Deprecated: Use MsgFetchOfflineInfoRsp.ProtoReflect.Descriptor instead.

func (*MsgFetchOfflineInfoRsp) GetComplete

func (x *MsgFetchOfflineInfoRsp) GetComplete() int32

func (*MsgFetchOfflineInfoRsp) GetFetchCount

func (x *MsgFetchOfflineInfoRsp) GetFetchCount() int32

func (*MsgFetchOfflineInfoRsp) GetInfoList

func (x *MsgFetchOfflineInfoRsp) GetInfoList() []string

func (*MsgFetchOfflineInfoRsp) GetResult

func (*MsgFetchOfflineInfoRsp) GetUid

func (x *MsgFetchOfflineInfoRsp) GetUid() int64

func (*MsgFetchOfflineInfoRsp) ProtoMessage

func (*MsgFetchOfflineInfoRsp) ProtoMessage()

func (*MsgFetchOfflineInfoRsp) ProtoReflect

func (x *MsgFetchOfflineInfoRsp) ProtoReflect() protoreflect.Message

func (*MsgFetchOfflineInfoRsp) Reset

func (x *MsgFetchOfflineInfoRsp) Reset()

func (*MsgFetchOfflineInfoRsp) String

func (x *MsgFetchOfflineInfoRsp) String() string

type MsgFetchUserProfileReq

type MsgFetchUserProfileReq struct {
	Uid        int64   `protobuf:"varint,1,opt,name=uid,proto3" json:"uid,omitempty"`
	TargetList []int64 `protobuf:"varint,2,rep,packed,name=target_list,json=targetList,proto3" json:"target_list,omitempty"`
	// contains filtered or unexported fields
}

Profile

func (*MsgFetchUserProfileReq) Descriptor deprecated

func (*MsgFetchUserProfileReq) Descriptor() ([]byte, []int)

Deprecated: Use MsgFetchUserProfileReq.ProtoReflect.Descriptor instead.

func (*MsgFetchUserProfileReq) GetTargetList

func (x *MsgFetchUserProfileReq) GetTargetList() []int64

func (*MsgFetchUserProfileReq) GetUid

func (x *MsgFetchUserProfileReq) GetUid() int64

func (*MsgFetchUserProfileReq) ProtoMessage

func (*MsgFetchUserProfileReq) ProtoMessage()

func (*MsgFetchUserProfileReq) ProtoReflect

func (x *MsgFetchUserProfileReq) ProtoReflect() protoreflect.Message

func (*MsgFetchUserProfileReq) Reset

func (x *MsgFetchUserProfileReq) Reset()

func (*MsgFetchUserProfileReq) String

func (x *MsgFetchUserProfileReq) String() string

type MsgFetchUserProfileRsp

type MsgFetchUserProfileRsp struct {
	Result   SS_COMMON_RESULT       `protobuf:"varint,1,opt,name=result,proto3,enum=ss.SS_COMMON_RESULT" json:"result,omitempty"`
	Uid      int64                  `protobuf:"varint,2,opt,name=uid,proto3" json:"uid,omitempty"`
	Profiles map[int64]*UserProfile `` /* 158-byte string literal not displayed */
	// contains filtered or unexported fields
}

func (*MsgFetchUserProfileRsp) Descriptor deprecated

func (*MsgFetchUserProfileRsp) Descriptor() ([]byte, []int)

Deprecated: Use MsgFetchUserProfileRsp.ProtoReflect.Descriptor instead.

func (*MsgFetchUserProfileRsp) GetProfiles

func (x *MsgFetchUserProfileRsp) GetProfiles() map[int64]*UserProfile

func (*MsgFetchUserProfileRsp) GetResult

func (*MsgFetchUserProfileRsp) GetUid

func (x *MsgFetchUserProfileRsp) GetUid() int64

func (*MsgFetchUserProfileRsp) ProtoMessage

func (*MsgFetchUserProfileRsp) ProtoMessage()

func (*MsgFetchUserProfileRsp) ProtoReflect

func (x *MsgFetchUserProfileRsp) ProtoReflect() protoreflect.Message

func (*MsgFetchUserProfileRsp) Reset

func (x *MsgFetchUserProfileRsp) Reset()

func (*MsgFetchUserProfileRsp) String

func (x *MsgFetchUserProfileRsp) String() string

type MsgGroupGroudReq

type MsgGroupGroudReq struct {
	Uid        int64 `protobuf:"varint,1,opt,name=uid,proto3" json:"uid,omitempty"`
	StartIndex int32 `protobuf:"varint,2,opt,name=start_index,json=startIndex,proto3" json:"start_index,omitempty"`
	Count      int32 `protobuf:"varint,3,opt,name=count,proto3" json:"count,omitempty"`
	// contains filtered or unexported fields
}

Group List Req only for visible group

func (*MsgGroupGroudReq) Descriptor deprecated

func (*MsgGroupGroudReq) Descriptor() ([]byte, []int)

Deprecated: Use MsgGroupGroudReq.ProtoReflect.Descriptor instead.

func (*MsgGroupGroudReq) GetCount

func (x *MsgGroupGroudReq) GetCount() int32

func (*MsgGroupGroudReq) GetStartIndex

func (x *MsgGroupGroudReq) GetStartIndex() int32

func (*MsgGroupGroudReq) GetUid

func (x *MsgGroupGroudReq) GetUid() int64

func (*MsgGroupGroudReq) ProtoMessage

func (*MsgGroupGroudReq) ProtoMessage()

func (*MsgGroupGroudReq) ProtoReflect

func (x *MsgGroupGroudReq) ProtoReflect() protoreflect.Message

func (*MsgGroupGroudReq) Reset

func (x *MsgGroupGroudReq) Reset()

func (*MsgGroupGroudReq) String

func (x *MsgGroupGroudReq) String() string

type MsgGroupGroudRsp

type MsgGroupGroudRsp struct {
	Uid      int64             `protobuf:"varint,1,opt,name=uid,proto3" json:"uid,omitempty"`
	Count    int32             `protobuf:"varint,2,opt,name=count,proto3" json:"count,omitempty"`
	ItemList []*GroupGroudItem `protobuf:"bytes,3,rep,name=item_list,json=itemList,proto3" json:"item_list,omitempty"`
	// contains filtered or unexported fields
}

func (*MsgGroupGroudRsp) Descriptor deprecated

func (*MsgGroupGroudRsp) Descriptor() ([]byte, []int)

Deprecated: Use MsgGroupGroudRsp.ProtoReflect.Descriptor instead.

func (*MsgGroupGroudRsp) GetCount

func (x *MsgGroupGroudRsp) GetCount() int32

func (*MsgGroupGroudRsp) GetItemList

func (x *MsgGroupGroudRsp) GetItemList() []*GroupGroudItem

func (*MsgGroupGroudRsp) GetUid

func (x *MsgGroupGroudRsp) GetUid() int64

func (*MsgGroupGroudRsp) ProtoMessage

func (*MsgGroupGroudRsp) ProtoMessage()

func (*MsgGroupGroudRsp) ProtoReflect

func (x *MsgGroupGroudRsp) ProtoReflect() protoreflect.Message

func (*MsgGroupGroudRsp) Reset

func (x *MsgGroupGroudRsp) Reset()

func (*MsgGroupGroudRsp) String

func (x *MsgGroupGroudRsp) String() string

type MsgHeartBeatReq

type MsgHeartBeatReq struct {
	Ts int64 `protobuf:"varint,1,opt,name=ts,proto3" json:"ts,omitempty"`
	// contains filtered or unexported fields
}

heartbeat

func (*MsgHeartBeatReq) Descriptor deprecated

func (*MsgHeartBeatReq) Descriptor() ([]byte, []int)

Deprecated: Use MsgHeartBeatReq.ProtoReflect.Descriptor instead.

func (*MsgHeartBeatReq) GetTs

func (x *MsgHeartBeatReq) GetTs() int64

func (*MsgHeartBeatReq) ProtoMessage

func (*MsgHeartBeatReq) ProtoMessage()

func (*MsgHeartBeatReq) ProtoReflect

func (x *MsgHeartBeatReq) ProtoReflect() protoreflect.Message

func (*MsgHeartBeatReq) Reset

func (x *MsgHeartBeatReq) Reset()

func (*MsgHeartBeatReq) String

func (x *MsgHeartBeatReq) String() string

type MsgKickGroupReq

type MsgKickGroupReq struct {
	Uid     int64  `protobuf:"varint,1,opt,name=uid,proto3" json:"uid,omitempty"`
	GrpId   int64  `protobuf:"varint,2,opt,name=grp_id,json=grpId,proto3" json:"grp_id,omitempty"`
	GrpName string `protobuf:"bytes,3,opt,name=grp_name,json=grpName,proto3" json:"grp_name,omitempty"`
	KickUid int64  `protobuf:"varint,4,opt,name=kick_uid,json=kickUid,proto3" json:"kick_uid,omitempty"`
	// contains filtered or unexported fields
}

Kickout Group

func (*MsgKickGroupReq) Descriptor deprecated

func (*MsgKickGroupReq) Descriptor() ([]byte, []int)

Deprecated: Use MsgKickGroupReq.ProtoReflect.Descriptor instead.

func (*MsgKickGroupReq) GetGrpId

func (x *MsgKickGroupReq) GetGrpId() int64

func (*MsgKickGroupReq) GetGrpName

func (x *MsgKickGroupReq) GetGrpName() string

func (*MsgKickGroupReq) GetKickUid

func (x *MsgKickGroupReq) GetKickUid() int64

func (*MsgKickGroupReq) GetUid

func (x *MsgKickGroupReq) GetUid() int64

func (*MsgKickGroupReq) ProtoMessage

func (*MsgKickGroupReq) ProtoMessage()

func (*MsgKickGroupReq) ProtoReflect

func (x *MsgKickGroupReq) ProtoReflect() protoreflect.Message

func (*MsgKickGroupReq) Reset

func (x *MsgKickGroupReq) Reset()

func (*MsgKickGroupReq) String

func (x *MsgKickGroupReq) String() string

type MsgKickGroupRsp

type MsgKickGroupRsp struct {
	Result  SS_COMMON_RESULT `protobuf:"varint,1,opt,name=result,proto3,enum=ss.SS_COMMON_RESULT" json:"result,omitempty"`
	Uid     int64            `protobuf:"varint,2,opt,name=uid,proto3" json:"uid,omitempty"`
	GrpId   int64            `protobuf:"varint,3,opt,name=grp_id,json=grpId,proto3" json:"grp_id,omitempty"`
	GrpName string           `protobuf:"bytes,4,opt,name=grp_name,json=grpName,proto3" json:"grp_name,omitempty"`
	KickUid int64            `protobuf:"varint,5,opt,name=kick_uid,json=kickUid,proto3" json:"kick_uid,omitempty"`
	// contains filtered or unexported fields
}

func (*MsgKickGroupRsp) Descriptor deprecated

func (*MsgKickGroupRsp) Descriptor() ([]byte, []int)

Deprecated: Use MsgKickGroupRsp.ProtoReflect.Descriptor instead.

func (*MsgKickGroupRsp) GetGrpId

func (x *MsgKickGroupRsp) GetGrpId() int64

func (*MsgKickGroupRsp) GetGrpName

func (x *MsgKickGroupRsp) GetGrpName() string

func (*MsgKickGroupRsp) GetKickUid

func (x *MsgKickGroupRsp) GetKickUid() int64

func (*MsgKickGroupRsp) GetResult

func (x *MsgKickGroupRsp) GetResult() SS_COMMON_RESULT

func (*MsgKickGroupRsp) GetUid

func (x *MsgKickGroupRsp) GetUid() int64

func (*MsgKickGroupRsp) ProtoMessage

func (*MsgKickGroupRsp) ProtoMessage()

func (*MsgKickGroupRsp) ProtoReflect

func (x *MsgKickGroupRsp) ProtoReflect() protoreflect.Message

func (*MsgKickGroupRsp) Reset

func (x *MsgKickGroupRsp) Reset()

func (*MsgKickGroupRsp) String

func (x *MsgKickGroupRsp) String() string

type MsgLoadGroupReq

type MsgLoadGroupReq struct {
	Reason LOAD_GROUP_REASON `protobuf:"varint,1,opt,name=reason,proto3,enum=ss.LOAD_GROUP_REASON" json:"reason,omitempty"`
	GrpId  int64             `protobuf:"varint,2,opt,name=grp_id,json=grpId,proto3" json:"grp_id,omitempty"`
	Uid    int64             `protobuf:"varint,3,opt,name=uid,proto3" json:"uid,omitempty"`
	TempId int64             `protobuf:"varint,4,opt,name=temp_id,json=tempId,proto3" json:"temp_id,omitempty"`
	//carry
	Occoupy int64    `protobuf:"varint,20,opt,name=occoupy,proto3" json:"occoupy,omitempty"`
	IntV    int64    `protobuf:"varint,21,opt,name=int_v,json=intV,proto3" json:"int_v,omitempty"`
	StrV    string   `protobuf:"bytes,22,opt,name=str_v,json=strV,proto3" json:"str_v,omitempty"`
	ChatMsg *ChatMsg `protobuf:"bytes,23,opt,name=chat_msg,json=chatMsg,proto3" json:"chat_msg,omitempty"`
	// contains filtered or unexported fields
}

func (*MsgLoadGroupReq) Descriptor deprecated

func (*MsgLoadGroupReq) Descriptor() ([]byte, []int)

Deprecated: Use MsgLoadGroupReq.ProtoReflect.Descriptor instead.

func (*MsgLoadGroupReq) GetChatMsg

func (x *MsgLoadGroupReq) GetChatMsg() *ChatMsg

func (*MsgLoadGroupReq) GetGrpId

func (x *MsgLoadGroupReq) GetGrpId() int64

func (*MsgLoadGroupReq) GetIntV

func (x *MsgLoadGroupReq) GetIntV() int64

func (*MsgLoadGroupReq) GetOccoupy

func (x *MsgLoadGroupReq) GetOccoupy() int64

func (*MsgLoadGroupReq) GetReason

func (x *MsgLoadGroupReq) GetReason() LOAD_GROUP_REASON

func (*MsgLoadGroupReq) GetStrV

func (x *MsgLoadGroupReq) GetStrV() string

func (*MsgLoadGroupReq) GetTempId

func (x *MsgLoadGroupReq) GetTempId() int64

func (*MsgLoadGroupReq) GetUid

func (x *MsgLoadGroupReq) GetUid() int64

func (*MsgLoadGroupReq) ProtoMessage

func (*MsgLoadGroupReq) ProtoMessage()

func (*MsgLoadGroupReq) ProtoReflect

func (x *MsgLoadGroupReq) ProtoReflect() protoreflect.Message

func (*MsgLoadGroupReq) Reset

func (x *MsgLoadGroupReq) Reset()

func (*MsgLoadGroupReq) String

func (x *MsgLoadGroupReq) String() string

type MsgLoadGroupRsp

type MsgLoadGroupRsp struct {
	Reason     LOAD_GROUP_REASON `protobuf:"varint,1,opt,name=reason,proto3,enum=ss.LOAD_GROUP_REASON" json:"reason,omitempty"`
	LoadResult SS_COMMON_RESULT  `protobuf:"varint,2,opt,name=load_result,json=loadResult,proto3,enum=ss.SS_COMMON_RESULT" json:"load_result,omitempty"`
	GrpId      int64             `protobuf:"varint,3,opt,name=grp_id,json=grpId,proto3" json:"grp_id,omitempty"`
	Uid        int64             `protobuf:"varint,4,opt,name=uid,proto3" json:"uid,omitempty"`
	TempId     int64             `protobuf:"varint,5,opt,name=temp_id,json=tempId,proto3" json:"temp_id,omitempty"`
	GrpInfo    *GroupInfo        `protobuf:"bytes,6,opt,name=grp_info,json=grpInfo,proto3" json:"grp_info,omitempty"`
	//carry info
	Occoupy int64    `protobuf:"varint,20,opt,name=occoupy,proto3" json:"occoupy,omitempty"`
	IntV    int64    `protobuf:"varint,21,opt,name=int_v,json=intV,proto3" json:"int_v,omitempty"`
	StrV    string   `protobuf:"bytes,22,opt,name=str_v,json=strV,proto3" json:"str_v,omitempty"`
	ChatMsg *ChatMsg `protobuf:"bytes,23,opt,name=chat_msg,json=chatMsg,proto3" json:"chat_msg,omitempty"`
	// contains filtered or unexported fields
}

func (*MsgLoadGroupRsp) Descriptor deprecated

func (*MsgLoadGroupRsp) Descriptor() ([]byte, []int)

Deprecated: Use MsgLoadGroupRsp.ProtoReflect.Descriptor instead.

func (*MsgLoadGroupRsp) GetChatMsg

func (x *MsgLoadGroupRsp) GetChatMsg() *ChatMsg

func (*MsgLoadGroupRsp) GetGrpId

func (x *MsgLoadGroupRsp) GetGrpId() int64

func (*MsgLoadGroupRsp) GetGrpInfo

func (x *MsgLoadGroupRsp) GetGrpInfo() *GroupInfo

func (*MsgLoadGroupRsp) GetIntV

func (x *MsgLoadGroupRsp) GetIntV() int64

func (*MsgLoadGroupRsp) GetLoadResult

func (x *MsgLoadGroupRsp) GetLoadResult() SS_COMMON_RESULT

func (*MsgLoadGroupRsp) GetOccoupy

func (x *MsgLoadGroupRsp) GetOccoupy() int64

func (*MsgLoadGroupRsp) GetReason

func (x *MsgLoadGroupRsp) GetReason() LOAD_GROUP_REASON

func (*MsgLoadGroupRsp) GetStrV

func (x *MsgLoadGroupRsp) GetStrV() string

func (*MsgLoadGroupRsp) GetTempId

func (x *MsgLoadGroupRsp) GetTempId() int64

func (*MsgLoadGroupRsp) GetUid

func (x *MsgLoadGroupRsp) GetUid() int64

func (*MsgLoadGroupRsp) ProtoMessage

func (*MsgLoadGroupRsp) ProtoMessage()

func (*MsgLoadGroupRsp) ProtoReflect

func (x *MsgLoadGroupRsp) ProtoReflect() protoreflect.Message

func (*MsgLoadGroupRsp) Reset

func (x *MsgLoadGroupRsp) Reset()

func (*MsgLoadGroupRsp) String

func (x *MsgLoadGroupRsp) String() string

type MsgLoginReq

type MsgLoginReq struct {
	CKey    int64           `protobuf:"varint,20,opt,name=c_key,json=cKey,proto3" json:"c_key,omitempty"`
	Uid     int64           `protobuf:"varint,21,opt,name=uid,proto3" json:"uid,omitempty"`  //0 use default role
	Name    string          `protobuf:"bytes,22,opt,name=name,proto3" json:"name,omitempty"` //acc name
	Pass    string          `protobuf:"bytes,23,opt,name=pass,proto3" json:"pass,omitempty"`
	Device  string          `protobuf:"bytes,24,opt,name=device,proto3" json:"device,omitempty"`
	Version string          `protobuf:"bytes,25,opt,name=version,proto3" json:"version,omitempty"`
	Flag    USER_LOGIN_FLAG `protobuf:"varint,26,opt,name=flag,proto3,enum=ss.USER_LOGIN_FLAG" json:"flag,omitempty"`
	// contains filtered or unexported fields
}

func (*MsgLoginReq) Descriptor deprecated

func (*MsgLoginReq) Descriptor() ([]byte, []int)

Deprecated: Use MsgLoginReq.ProtoReflect.Descriptor instead.

func (*MsgLoginReq) GetCKey

func (x *MsgLoginReq) GetCKey() int64

func (*MsgLoginReq) GetDevice

func (x *MsgLoginReq) GetDevice() string

func (*MsgLoginReq) GetFlag

func (x *MsgLoginReq) GetFlag() USER_LOGIN_FLAG

func (*MsgLoginReq) GetName

func (x *MsgLoginReq) GetName() string

func (*MsgLoginReq) GetPass

func (x *MsgLoginReq) GetPass() string

func (*MsgLoginReq) GetUid

func (x *MsgLoginReq) GetUid() int64

func (*MsgLoginReq) GetVersion

func (x *MsgLoginReq) GetVersion() string

func (*MsgLoginReq) ProtoMessage

func (*MsgLoginReq) ProtoMessage()

func (*MsgLoginReq) ProtoReflect

func (x *MsgLoginReq) ProtoReflect() protoreflect.Message

func (*MsgLoginReq) Reset

func (x *MsgLoginReq) Reset()

func (*MsgLoginReq) String

func (x *MsgLoginReq) String() string

type MsgLoginRsp

type MsgLoginRsp struct {
	Result      USER_LOGIN_RET  `protobuf:"varint,1,opt,name=result,proto3,enum=ss.USER_LOGIN_RET" json:"result,omitempty"`
	CKey        int64           `protobuf:"varint,2,opt,name=c_key,json=cKey,proto3" json:"c_key,omitempty"`
	Name        string          `protobuf:"bytes,3,opt,name=name,proto3" json:"name,omitempty"` //acc name
	Uid         int64           `protobuf:"varint,4,opt,name=uid,proto3" json:"uid,omitempty"`  //may empty
	UserInfo    *UserInfo       `protobuf:"bytes,20,opt,name=user_info,json=userInfo,proto3" json:"user_info,omitempty"`
	OnlineLogic int32           `protobuf:"varint,21,opt,name=online_logic,json=onlineLogic,proto3" json:"online_logic,omitempty"`
	Flag        USER_LOGIN_FLAG `protobuf:"varint,22,opt,name=flag,proto3,enum=ss.USER_LOGIN_FLAG" json:"flag,omitempty"`
	// contains filtered or unexported fields
}

func (*MsgLoginRsp) Descriptor deprecated

func (*MsgLoginRsp) Descriptor() ([]byte, []int)

Deprecated: Use MsgLoginRsp.ProtoReflect.Descriptor instead.

func (*MsgLoginRsp) GetCKey

func (x *MsgLoginRsp) GetCKey() int64

func (*MsgLoginRsp) GetFlag

func (x *MsgLoginRsp) GetFlag() USER_LOGIN_FLAG

func (*MsgLoginRsp) GetName

func (x *MsgLoginRsp) GetName() string

func (*MsgLoginRsp) GetOnlineLogic

func (x *MsgLoginRsp) GetOnlineLogic() int32

func (*MsgLoginRsp) GetResult

func (x *MsgLoginRsp) GetResult() USER_LOGIN_RET

func (*MsgLoginRsp) GetUid

func (x *MsgLoginRsp) GetUid() int64

func (*MsgLoginRsp) GetUserInfo

func (x *MsgLoginRsp) GetUserInfo() *UserInfo

func (*MsgLoginRsp) ProtoMessage

func (*MsgLoginRsp) ProtoMessage()

func (*MsgLoginRsp) ProtoReflect

func (x *MsgLoginRsp) ProtoReflect() protoreflect.Message

func (*MsgLoginRsp) Reset

func (x *MsgLoginRsp) Reset()

func (*MsgLoginRsp) String

func (x *MsgLoginRsp) String() string

type MsgLogoutReq

type MsgLogoutReq struct {
	Uid      int64              `protobuf:"varint,1,opt,name=uid,proto3" json:"uid,omitempty"`
	Reason   USER_LOGOUT_REASON `protobuf:"varint,2,opt,name=reason,proto3,enum=ss.USER_LOGOUT_REASON" json:"reason,omitempty"`
	UserInfo *UserInfo          `protobuf:"bytes,3,opt,name=user_info,json=userInfo,proto3" json:"user_info,omitempty"`
	// contains filtered or unexported fields
}

func (*MsgLogoutReq) Descriptor deprecated

func (*MsgLogoutReq) Descriptor() ([]byte, []int)

Deprecated: Use MsgLogoutReq.ProtoReflect.Descriptor instead.

func (*MsgLogoutReq) GetReason

func (x *MsgLogoutReq) GetReason() USER_LOGOUT_REASON

func (*MsgLogoutReq) GetUid

func (x *MsgLogoutReq) GetUid() int64

func (*MsgLogoutReq) GetUserInfo

func (x *MsgLogoutReq) GetUserInfo() *UserInfo

func (*MsgLogoutReq) ProtoMessage

func (*MsgLogoutReq) ProtoMessage()

func (*MsgLogoutReq) ProtoReflect

func (x *MsgLogoutReq) ProtoReflect() protoreflect.Message

func (*MsgLogoutReq) Reset

func (x *MsgLogoutReq) Reset()

func (*MsgLogoutReq) String

func (x *MsgLogoutReq) String() string

type MsgLogoutRsp

type MsgLogoutRsp struct {
	Uid    int64              `protobuf:"varint,1,opt,name=uid,proto3" json:"uid,omitempty"`
	Reason USER_LOGOUT_REASON `protobuf:"varint,2,opt,name=reason,proto3,enum=ss.USER_LOGOUT_REASON" json:"reason,omitempty"`
	Msg    string             `protobuf:"bytes,3,opt,name=msg,proto3" json:"msg,omitempty"`
	// contains filtered or unexported fields
}

func (*MsgLogoutRsp) Descriptor deprecated

func (*MsgLogoutRsp) Descriptor() ([]byte, []int)

Deprecated: Use MsgLogoutRsp.ProtoReflect.Descriptor instead.

func (*MsgLogoutRsp) GetMsg

func (x *MsgLogoutRsp) GetMsg() string

func (*MsgLogoutRsp) GetReason

func (x *MsgLogoutRsp) GetReason() USER_LOGOUT_REASON

func (*MsgLogoutRsp) GetUid

func (x *MsgLogoutRsp) GetUid() int64

func (*MsgLogoutRsp) ProtoMessage

func (*MsgLogoutRsp) ProtoMessage()

func (*MsgLogoutRsp) ProtoReflect

func (x *MsgLogoutRsp) ProtoReflect() protoreflect.Message

func (*MsgLogoutRsp) Reset

func (x *MsgLogoutRsp) Reset()

func (*MsgLogoutRsp) String

func (x *MsgLogoutRsp) String() string

type MsgPingReq

type MsgPingReq struct {
	Ts        int64 `protobuf:"varint,1,opt,name=ts,proto3" json:"ts,omitempty"`
	ClientKey int64 `protobuf:"varint,2,opt,name=client_key,json=clientKey,proto3" json:"client_key,omitempty"`
	// contains filtered or unexported fields
}

ping

func (*MsgPingReq) Descriptor deprecated

func (*MsgPingReq) Descriptor() ([]byte, []int)

Deprecated: Use MsgPingReq.ProtoReflect.Descriptor instead.

func (*MsgPingReq) GetClientKey

func (x *MsgPingReq) GetClientKey() int64

func (*MsgPingReq) GetTs

func (x *MsgPingReq) GetTs() int64

func (*MsgPingReq) ProtoMessage

func (*MsgPingReq) ProtoMessage()

func (*MsgPingReq) ProtoReflect

func (x *MsgPingReq) ProtoReflect() protoreflect.Message

func (*MsgPingReq) Reset

func (x *MsgPingReq) Reset()

func (*MsgPingReq) String

func (x *MsgPingReq) String() string

type MsgPingRsp

type MsgPingRsp struct {
	Ts        int64 `protobuf:"varint,1,opt,name=ts,proto3" json:"ts,omitempty"`
	ClientKey int64 `protobuf:"varint,2,opt,name=client_key,json=clientKey,proto3" json:"client_key,omitempty"`
	// contains filtered or unexported fields
}

func (*MsgPingRsp) Descriptor deprecated

func (*MsgPingRsp) Descriptor() ([]byte, []int)

Deprecated: Use MsgPingRsp.ProtoReflect.Descriptor instead.

func (*MsgPingRsp) GetClientKey

func (x *MsgPingRsp) GetClientKey() int64

func (*MsgPingRsp) GetTs

func (x *MsgPingRsp) GetTs() int64

func (*MsgPingRsp) ProtoMessage

func (*MsgPingRsp) ProtoMessage()

func (*MsgPingRsp) ProtoReflect

func (x *MsgPingRsp) ProtoReflect() protoreflect.Message

func (*MsgPingRsp) Reset

func (x *MsgPingRsp) Reset()

func (*MsgPingRsp) String

func (x *MsgPingRsp) String() string

type MsgQueryGroupReq

type MsgQueryGroupReq struct {
	Uid    int64               `protobuf:"varint,1,opt,name=uid,proto3" json:"uid,omitempty"`
	GrpId  int64               `protobuf:"varint,2,opt,name=grp_id,json=grpId,proto3" json:"grp_id,omitempty"`
	Field  SS_GROUP_INFO_FIELD `protobuf:"varint,3,opt,name=field,proto3,enum=ss.SS_GROUP_INFO_FIELD" json:"field,omitempty"`
	Occupy int64               `protobuf:"varint,20,opt,name=occupy,proto3" json:"occupy,omitempty"`
	// contains filtered or unexported fields
}

Group Info

func (*MsgQueryGroupReq) Descriptor deprecated

func (*MsgQueryGroupReq) Descriptor() ([]byte, []int)

Deprecated: Use MsgQueryGroupReq.ProtoReflect.Descriptor instead.

func (*MsgQueryGroupReq) GetField

func (x *MsgQueryGroupReq) GetField() SS_GROUP_INFO_FIELD

func (*MsgQueryGroupReq) GetGrpId

func (x *MsgQueryGroupReq) GetGrpId() int64

func (*MsgQueryGroupReq) GetOccupy

func (x *MsgQueryGroupReq) GetOccupy() int64

func (*MsgQueryGroupReq) GetUid

func (x *MsgQueryGroupReq) GetUid() int64

func (*MsgQueryGroupReq) ProtoMessage

func (*MsgQueryGroupReq) ProtoMessage()

func (*MsgQueryGroupReq) ProtoReflect

func (x *MsgQueryGroupReq) ProtoReflect() protoreflect.Message

func (*MsgQueryGroupReq) Reset

func (x *MsgQueryGroupReq) Reset()

func (*MsgQueryGroupReq) String

func (x *MsgQueryGroupReq) String() string

type MsgRegReq

type MsgRegReq struct {
	CKey     int64  `protobuf:"varint,20,opt,name=c_key,json=cKey,proto3" json:"c_key,omitempty"`
	Name     string `protobuf:"bytes,21,opt,name=name,proto3" json:"name,omitempty"` //account name
	Pass     string `protobuf:"bytes,22,opt,name=pass,proto3" json:"pass,omitempty"`
	RoleName string `protobuf:"bytes,23,opt,name=role_name,json=roleName,proto3" json:"role_name,omitempty"` //role name
	Sex      bool   `protobuf:"varint,24,opt,name=sex,proto3" json:"sex,omitempty"`
	Addr     string `protobuf:"bytes,25,opt,name=addr,proto3" json:"addr,omitempty"`
	Desc     string `protobuf:"bytes,26,opt,name=desc,proto3" json:"desc,omitempty"` //self desc
	// contains filtered or unexported fields
}

register

func (*MsgRegReq) Descriptor deprecated

func (*MsgRegReq) Descriptor() ([]byte, []int)

Deprecated: Use MsgRegReq.ProtoReflect.Descriptor instead.

func (*MsgRegReq) GetAddr

func (x *MsgRegReq) GetAddr() string

func (*MsgRegReq) GetCKey

func (x *MsgRegReq) GetCKey() int64

func (*MsgRegReq) GetDesc

func (x *MsgRegReq) GetDesc() string

func (*MsgRegReq) GetName

func (x *MsgRegReq) GetName() string

func (*MsgRegReq) GetPass

func (x *MsgRegReq) GetPass() string

func (*MsgRegReq) GetRoleName

func (x *MsgRegReq) GetRoleName() string

func (*MsgRegReq) GetSex

func (x *MsgRegReq) GetSex() bool

func (*MsgRegReq) ProtoMessage

func (*MsgRegReq) ProtoMessage()

func (*MsgRegReq) ProtoReflect

func (x *MsgRegReq) ProtoReflect() protoreflect.Message

func (*MsgRegReq) Reset

func (x *MsgRegReq) Reset()

func (*MsgRegReq) String

func (x *MsgRegReq) String() string

type MsgRegRsp

type MsgRegRsp struct {
	Result REG_RESULT `protobuf:"varint,1,opt,name=result,proto3,enum=ss.REG_RESULT" json:"result,omitempty"`
	CKey   int64      `protobuf:"varint,2,opt,name=c_key,json=cKey,proto3" json:"c_key,omitempty"`
	Name   string     `protobuf:"bytes,3,opt,name=name,proto3" json:"name,omitempty"`
	// contains filtered or unexported fields
}

func (*MsgRegRsp) Descriptor deprecated

func (*MsgRegRsp) Descriptor() ([]byte, []int)

Deprecated: Use MsgRegRsp.ProtoReflect.Descriptor instead.

func (*MsgRegRsp) GetCKey

func (x *MsgRegRsp) GetCKey() int64

func (*MsgRegRsp) GetName

func (x *MsgRegRsp) GetName() string

func (*MsgRegRsp) GetResult

func (x *MsgRegRsp) GetResult() REG_RESULT

func (*MsgRegRsp) ProtoMessage

func (*MsgRegRsp) ProtoMessage()

func (*MsgRegRsp) ProtoReflect

func (x *MsgRegRsp) ProtoReflect() protoreflect.Message

func (*MsgRegRsp) Reset

func (x *MsgRegRsp) Reset()

func (*MsgRegRsp) String

func (x *MsgRegRsp) String() string

type MsgSaveGroupReq

type MsgSaveGroupReq struct {
	GrpId    int64            `protobuf:"varint,1,opt,name=grp_id,json=grpId,proto3" json:"grp_id,omitempty"`
	Reason   SS_COMMON_REASON `protobuf:"varint,2,opt,name=reason,proto3,enum=ss.SS_COMMON_REASON" json:"reason,omitempty"`
	LoadServ int32            `protobuf:"varint,3,opt,name=load_serv,json=loadServ,proto3" json:"load_serv,omitempty"`
	BlobInfo *GroupBlobData   `protobuf:"bytes,4,opt,name=blob_info,json=blobInfo,proto3" json:"blob_info,omitempty"`
	MsgCount int64            `protobuf:"varint,20,opt,name=msg_count,json=msgCount,proto3" json:"msg_count,omitempty"`
	MemCount int32            `protobuf:"varint,21,opt,name=mem_count,json=memCount,proto3" json:"mem_count,omitempty"`
	GrpName  string           `protobuf:"bytes,22,opt,name=grp_name,json=grpName,proto3" json:"grp_name,omitempty"`
	// contains filtered or unexported fields
}

Save Group

func (*MsgSaveGroupReq) Descriptor deprecated

func (*MsgSaveGroupReq) Descriptor() ([]byte, []int)

Deprecated: Use MsgSaveGroupReq.ProtoReflect.Descriptor instead.

func (*MsgSaveGroupReq) GetBlobInfo

func (x *MsgSaveGroupReq) GetBlobInfo() *GroupBlobData

func (*MsgSaveGroupReq) GetGrpId

func (x *MsgSaveGroupReq) GetGrpId() int64

func (*MsgSaveGroupReq) GetGrpName

func (x *MsgSaveGroupReq) GetGrpName() string

func (*MsgSaveGroupReq) GetLoadServ

func (x *MsgSaveGroupReq) GetLoadServ() int32

func (*MsgSaveGroupReq) GetMemCount

func (x *MsgSaveGroupReq) GetMemCount() int32

func (*MsgSaveGroupReq) GetMsgCount

func (x *MsgSaveGroupReq) GetMsgCount() int64

func (*MsgSaveGroupReq) GetReason

func (x *MsgSaveGroupReq) GetReason() SS_COMMON_REASON

func (*MsgSaveGroupReq) ProtoMessage

func (*MsgSaveGroupReq) ProtoMessage()

func (*MsgSaveGroupReq) ProtoReflect

func (x *MsgSaveGroupReq) ProtoReflect() protoreflect.Message

func (*MsgSaveGroupReq) Reset

func (x *MsgSaveGroupReq) Reset()

func (*MsgSaveGroupReq) String

func (x *MsgSaveGroupReq) String() string

type MsgSaveGroupRsp

type MsgSaveGroupRsp struct {
	Result      SS_COMMON_RESULT `protobuf:"varint,1,opt,name=result,proto3,enum=ss.SS_COMMON_RESULT" json:"result,omitempty"`
	GrpId       int64            `protobuf:"varint,2,opt,name=grp_id,json=grpId,proto3" json:"grp_id,omitempty"`
	MemberChged int32            `protobuf:"varint,20,opt,name=member_chged,json=memberChged,proto3" json:"member_chged,omitempty"`
	Members     map[int64]int32  `` //if member count not match will sync to server
	/* 158-byte string literal not displayed */
	// contains filtered or unexported fields
}

func (*MsgSaveGroupRsp) Descriptor deprecated

func (*MsgSaveGroupRsp) Descriptor() ([]byte, []int)

Deprecated: Use MsgSaveGroupRsp.ProtoReflect.Descriptor instead.

func (*MsgSaveGroupRsp) GetGrpId

func (x *MsgSaveGroupRsp) GetGrpId() int64

func (*MsgSaveGroupRsp) GetMemberChged

func (x *MsgSaveGroupRsp) GetMemberChged() int32

func (*MsgSaveGroupRsp) GetMembers

func (x *MsgSaveGroupRsp) GetMembers() map[int64]int32

func (*MsgSaveGroupRsp) GetResult

func (x *MsgSaveGroupRsp) GetResult() SS_COMMON_RESULT

func (*MsgSaveGroupRsp) ProtoMessage

func (*MsgSaveGroupRsp) ProtoMessage()

func (*MsgSaveGroupRsp) ProtoReflect

func (x *MsgSaveGroupRsp) ProtoReflect() protoreflect.Message

func (*MsgSaveGroupRsp) Reset

func (x *MsgSaveGroupRsp) Reset()

func (*MsgSaveGroupRsp) String

func (x *MsgSaveGroupRsp) String() string

type MsgSaveUserProfileReq

type MsgSaveUserProfileReq struct {
	Uid     int64        `protobuf:"varint,1,opt,name=uid,proto3" json:"uid,omitempty"`
	Profile *UserProfile `protobuf:"bytes,2,opt,name=profile,proto3" json:"profile,omitempty"`
	// contains filtered or unexported fields
}

func (*MsgSaveUserProfileReq) Descriptor deprecated

func (*MsgSaveUserProfileReq) Descriptor() ([]byte, []int)

Deprecated: Use MsgSaveUserProfileReq.ProtoReflect.Descriptor instead.

func (*MsgSaveUserProfileReq) GetProfile

func (x *MsgSaveUserProfileReq) GetProfile() *UserProfile

func (*MsgSaveUserProfileReq) GetUid

func (x *MsgSaveUserProfileReq) GetUid() int64

func (*MsgSaveUserProfileReq) ProtoMessage

func (*MsgSaveUserProfileReq) ProtoMessage()

func (*MsgSaveUserProfileReq) ProtoReflect

func (x *MsgSaveUserProfileReq) ProtoReflect() protoreflect.Message

func (*MsgSaveUserProfileReq) Reset

func (x *MsgSaveUserProfileReq) Reset()

func (*MsgSaveUserProfileReq) String

func (x *MsgSaveUserProfileReq) String() string

type MsgSendChatReq

type MsgSendChatReq struct {
	Uid     int64    `protobuf:"varint,1,opt,name=uid,proto3" json:"uid,omitempty"`
	TempId  int64    `protobuf:"varint,2,opt,name=temp_id,json=tempId,proto3" json:"temp_id,omitempty"`
	ChatMsg *ChatMsg `protobuf:"bytes,3,opt,name=chat_msg,json=chatMsg,proto3" json:"chat_msg,omitempty"`
	Occupy  int64    `protobuf:"varint,20,opt,name=occupy,proto3" json:"occupy,omitempty"`
	// contains filtered or unexported fields
}

func (*MsgSendChatReq) Descriptor deprecated

func (*MsgSendChatReq) Descriptor() ([]byte, []int)

Deprecated: Use MsgSendChatReq.ProtoReflect.Descriptor instead.

func (*MsgSendChatReq) GetChatMsg

func (x *MsgSendChatReq) GetChatMsg() *ChatMsg

func (*MsgSendChatReq) GetOccupy

func (x *MsgSendChatReq) GetOccupy() int64

func (*MsgSendChatReq) GetTempId

func (x *MsgSendChatReq) GetTempId() int64

func (*MsgSendChatReq) GetUid

func (x *MsgSendChatReq) GetUid() int64

func (*MsgSendChatReq) ProtoMessage

func (*MsgSendChatReq) ProtoMessage()

func (*MsgSendChatReq) ProtoReflect

func (x *MsgSendChatReq) ProtoReflect() protoreflect.Message

func (*MsgSendChatReq) Reset

func (x *MsgSendChatReq) Reset()

func (*MsgSendChatReq) String

func (x *MsgSendChatReq) String() string

type MsgSendChatRsp

type MsgSendChatRsp struct {
	Result  SEND_CHAT_RESULT `protobuf:"varint,1,opt,name=result,proto3,enum=ss.SEND_CHAT_RESULT" json:"result,omitempty"`
	Uid     int64            `protobuf:"varint,2,opt,name=uid,proto3" json:"uid,omitempty"`
	TempId  int64            `protobuf:"varint,3,opt,name=temp_id,json=tempId,proto3" json:"temp_id,omitempty"`
	ChatMsg *ChatMsg         `protobuf:"bytes,4,opt,name=chat_msg,json=chatMsg,proto3" json:"chat_msg,omitempty"`
	Occupy  int64            `protobuf:"varint,20,opt,name=occupy,proto3" json:"occupy,omitempty"`
	// contains filtered or unexported fields
}

func (*MsgSendChatRsp) Descriptor deprecated

func (*MsgSendChatRsp) Descriptor() ([]byte, []int)

Deprecated: Use MsgSendChatRsp.ProtoReflect.Descriptor instead.

func (*MsgSendChatRsp) GetChatMsg

func (x *MsgSendChatRsp) GetChatMsg() *ChatMsg

func (*MsgSendChatRsp) GetOccupy

func (x *MsgSendChatRsp) GetOccupy() int64

func (*MsgSendChatRsp) GetResult

func (x *MsgSendChatRsp) GetResult() SEND_CHAT_RESULT

func (*MsgSendChatRsp) GetTempId

func (x *MsgSendChatRsp) GetTempId() int64

func (*MsgSendChatRsp) GetUid

func (x *MsgSendChatRsp) GetUid() int64

func (*MsgSendChatRsp) ProtoMessage

func (*MsgSendChatRsp) ProtoMessage()

func (*MsgSendChatRsp) ProtoReflect

func (x *MsgSendChatRsp) ProtoReflect() protoreflect.Message

func (*MsgSendChatRsp) Reset

func (x *MsgSendChatRsp) Reset()

func (*MsgSendChatRsp) String

func (x *MsgSendChatRsp) String() string

type MsgSyncChatList

type MsgSyncChatList struct {
	Uid      int64          `protobuf:"varint,1,opt,name=uid,proto3" json:"uid,omitempty"`
	GrpId    int64          `protobuf:"varint,2,opt,name=grp_id,json=grpId,proto3" json:"grp_id,omitempty"`
	Count    int32          `protobuf:"varint,3,opt,name=count,proto3" json:"count,omitempty"`
	ChatList []*ChatMsg     `protobuf:"bytes,4,rep,name=chat_list,json=chatList,proto3" json:"chat_list,omitempty"`
	SyncType SS_COMMON_TYPE `protobuf:"varint,7,opt,name=sync_type,json=syncType,proto3,enum=ss.SS_COMMON_TYPE" json:"sync_type,omitempty"`
	// contains filtered or unexported fields
}

func (*MsgSyncChatList) Descriptor deprecated

func (*MsgSyncChatList) Descriptor() ([]byte, []int)

Deprecated: Use MsgSyncChatList.ProtoReflect.Descriptor instead.

func (*MsgSyncChatList) GetChatList

func (x *MsgSyncChatList) GetChatList() []*ChatMsg

func (*MsgSyncChatList) GetCount

func (x *MsgSyncChatList) GetCount() int32

func (*MsgSyncChatList) GetGrpId

func (x *MsgSyncChatList) GetGrpId() int64

func (*MsgSyncChatList) GetSyncType

func (x *MsgSyncChatList) GetSyncType() SS_COMMON_TYPE

func (*MsgSyncChatList) GetUid

func (x *MsgSyncChatList) GetUid() int64

func (*MsgSyncChatList) ProtoMessage

func (*MsgSyncChatList) ProtoMessage()

func (*MsgSyncChatList) ProtoReflect

func (x *MsgSyncChatList) ProtoReflect() protoreflect.Message

func (*MsgSyncChatList) Reset

func (x *MsgSyncChatList) Reset()

func (*MsgSyncChatList) String

func (x *MsgSyncChatList) String() string

type MsgSyncGroupInfo

type MsgSyncGroupInfo struct {
	Field   SS_GROUP_INFO_FIELD `protobuf:"varint,1,opt,name=field,proto3,enum=ss.SS_GROUP_INFO_FIELD" json:"field,omitempty"`
	Uid     int64               `protobuf:"varint,2,opt,name=uid,proto3" json:"uid,omitempty"`
	GrpId   int64               `protobuf:"varint,3,opt,name=grp_id,json=grpId,proto3" json:"grp_id,omitempty"`
	GrpInfo *GroupInfo          `protobuf:"bytes,4,opt,name=grp_info,json=grpInfo,proto3" json:"grp_info,omitempty"`
	GrpSnap *GroupGroudItem     `protobuf:"bytes,5,opt,name=grp_snap,json=grpSnap,proto3" json:"grp_snap,omitempty"`
	Occupy  int64               `protobuf:"varint,20,opt,name=occupy,proto3" json:"occupy,omitempty"`
	// contains filtered or unexported fields
}

func (*MsgSyncGroupInfo) Descriptor deprecated

func (*MsgSyncGroupInfo) Descriptor() ([]byte, []int)

Deprecated: Use MsgSyncGroupInfo.ProtoReflect.Descriptor instead.

func (*MsgSyncGroupInfo) GetField

func (x *MsgSyncGroupInfo) GetField() SS_GROUP_INFO_FIELD

func (*MsgSyncGroupInfo) GetGrpId

func (x *MsgSyncGroupInfo) GetGrpId() int64

func (*MsgSyncGroupInfo) GetGrpInfo

func (x *MsgSyncGroupInfo) GetGrpInfo() *GroupInfo

func (*MsgSyncGroupInfo) GetGrpSnap

func (x *MsgSyncGroupInfo) GetGrpSnap() *GroupGroudItem

func (*MsgSyncGroupInfo) GetOccupy

func (x *MsgSyncGroupInfo) GetOccupy() int64

func (*MsgSyncGroupInfo) GetUid

func (x *MsgSyncGroupInfo) GetUid() int64

func (*MsgSyncGroupInfo) ProtoMessage

func (*MsgSyncGroupInfo) ProtoMessage()

func (*MsgSyncGroupInfo) ProtoReflect

func (x *MsgSyncGroupInfo) ProtoReflect() protoreflect.Message

func (*MsgSyncGroupInfo) Reset

func (x *MsgSyncGroupInfo) Reset()

func (*MsgSyncGroupInfo) String

func (x *MsgSyncGroupInfo) String() string

type MsgUpdateChatReq

type MsgUpdateChatReq struct {
	UpdateType UPDATE_CHAT_TYPE `protobuf:"varint,1,opt,name=update_type,json=updateType,proto3,enum=ss.UPDATE_CHAT_TYPE" json:"update_type,omitempty"`
	Uid        int64            `protobuf:"varint,2,opt,name=uid,proto3" json:"uid,omitempty"`
	GrpId      int64            `protobuf:"varint,3,opt,name=grp_id,json=grpId,proto3" json:"grp_id,omitempty"`
	MsgId      int64            `protobuf:"varint,4,opt,name=msg_id,json=msgId,proto3" json:"msg_id,omitempty"`
	// contains filtered or unexported fields
}

func (*MsgUpdateChatReq) Descriptor deprecated

func (*MsgUpdateChatReq) Descriptor() ([]byte, []int)

Deprecated: Use MsgUpdateChatReq.ProtoReflect.Descriptor instead.

func (*MsgUpdateChatReq) GetGrpId

func (x *MsgUpdateChatReq) GetGrpId() int64

func (*MsgUpdateChatReq) GetMsgId

func (x *MsgUpdateChatReq) GetMsgId() int64

func (*MsgUpdateChatReq) GetUid

func (x *MsgUpdateChatReq) GetUid() int64

func (*MsgUpdateChatReq) GetUpdateType

func (x *MsgUpdateChatReq) GetUpdateType() UPDATE_CHAT_TYPE

func (*MsgUpdateChatReq) ProtoMessage

func (*MsgUpdateChatReq) ProtoMessage()

func (*MsgUpdateChatReq) ProtoReflect

func (x *MsgUpdateChatReq) ProtoReflect() protoreflect.Message

func (*MsgUpdateChatReq) Reset

func (x *MsgUpdateChatReq) Reset()

func (*MsgUpdateChatReq) String

func (x *MsgUpdateChatReq) String() string

type MsgUpdateChatRsp

type MsgUpdateChatRsp struct {
	Result     SS_COMMON_RESULT `protobuf:"varint,1,opt,name=result,proto3,enum=ss.SS_COMMON_RESULT" json:"result,omitempty"`
	UpdateType UPDATE_CHAT_TYPE `protobuf:"varint,2,opt,name=update_type,json=updateType,proto3,enum=ss.UPDATE_CHAT_TYPE" json:"update_type,omitempty"`
	Uid        int64            `protobuf:"varint,3,opt,name=uid,proto3" json:"uid,omitempty"`
	GrpId      int64            `protobuf:"varint,4,opt,name=grp_id,json=grpId,proto3" json:"grp_id,omitempty"`
	MsgId      int64            `protobuf:"varint,5,opt,name=msg_id,json=msgId,proto3" json:"msg_id,omitempty"`
	SrcType    CHAT_MSG_TYPE    `protobuf:"varint,20,opt,name=src_type,json=srcType,proto3,enum=ss.CHAT_MSG_TYPE" json:"src_type,omitempty"`
	SrcContent string           `protobuf:"bytes,21,opt,name=src_content,json=srcContent,proto3" json:"src_content,omitempty"`
	// contains filtered or unexported fields
}

func (*MsgUpdateChatRsp) Descriptor deprecated

func (*MsgUpdateChatRsp) Descriptor() ([]byte, []int)

Deprecated: Use MsgUpdateChatRsp.ProtoReflect.Descriptor instead.

func (*MsgUpdateChatRsp) GetGrpId

func (x *MsgUpdateChatRsp) GetGrpId() int64

func (*MsgUpdateChatRsp) GetMsgId

func (x *MsgUpdateChatRsp) GetMsgId() int64

func (*MsgUpdateChatRsp) GetResult

func (x *MsgUpdateChatRsp) GetResult() SS_COMMON_RESULT

func (*MsgUpdateChatRsp) GetSrcContent

func (x *MsgUpdateChatRsp) GetSrcContent() string

func (*MsgUpdateChatRsp) GetSrcType

func (x *MsgUpdateChatRsp) GetSrcType() CHAT_MSG_TYPE

func (*MsgUpdateChatRsp) GetUid

func (x *MsgUpdateChatRsp) GetUid() int64

func (*MsgUpdateChatRsp) GetUpdateType

func (x *MsgUpdateChatRsp) GetUpdateType() UPDATE_CHAT_TYPE

func (*MsgUpdateChatRsp) ProtoMessage

func (*MsgUpdateChatRsp) ProtoMessage()

func (*MsgUpdateChatRsp) ProtoReflect

func (x *MsgUpdateChatRsp) ProtoReflect() protoreflect.Message

func (*MsgUpdateChatRsp) Reset

func (x *MsgUpdateChatRsp) Reset()

func (*MsgUpdateChatRsp) String

func (x *MsgUpdateChatRsp) String() string

type MsgUpdateUserReq

type MsgUpdateUserReq struct {
	Uid         int64  `protobuf:"varint,1,opt,name=uid,proto3" json:"uid,omitempty"`
	AccountName string `protobuf:"bytes,2,opt,name=account_name,json=accountName,proto3" json:"account_name,omitempty"` //if update password
	RoleName    string `protobuf:"bytes,20,opt,name=role_name,json=roleName,proto3" json:"role_name,omitempty"`         //if len>0 means update
	Addr        string `protobuf:"bytes,21,opt,name=addr,proto3" json:"addr,omitempty"`                                 //if len>0 means update
	Desc        string `protobuf:"bytes,22,opt,name=desc,proto3" json:"desc,omitempty"`                                 //if len>0 means update
	Passwd      string `protobuf:"bytes,23,opt,name=passwd,proto3" json:"passwd,omitempty"`                             //if len>0 will update
	// contains filtered or unexported fields
}

Update UserInfo

func (*MsgUpdateUserReq) Descriptor deprecated

func (*MsgUpdateUserReq) Descriptor() ([]byte, []int)

Deprecated: Use MsgUpdateUserReq.ProtoReflect.Descriptor instead.

func (*MsgUpdateUserReq) GetAccountName

func (x *MsgUpdateUserReq) GetAccountName() string

func (*MsgUpdateUserReq) GetAddr

func (x *MsgUpdateUserReq) GetAddr() string

func (*MsgUpdateUserReq) GetDesc

func (x *MsgUpdateUserReq) GetDesc() string

func (*MsgUpdateUserReq) GetPasswd

func (x *MsgUpdateUserReq) GetPasswd() string

func (*MsgUpdateUserReq) GetRoleName

func (x *MsgUpdateUserReq) GetRoleName() string

func (*MsgUpdateUserReq) GetUid

func (x *MsgUpdateUserReq) GetUid() int64

func (*MsgUpdateUserReq) ProtoMessage

func (*MsgUpdateUserReq) ProtoMessage()

func (*MsgUpdateUserReq) ProtoReflect

func (x *MsgUpdateUserReq) ProtoReflect() protoreflect.Message

func (*MsgUpdateUserReq) Reset

func (x *MsgUpdateUserReq) Reset()

func (*MsgUpdateUserReq) String

func (x *MsgUpdateUserReq) String() string

type MsgUpdateUserRsp

type MsgUpdateUserRsp struct {
	Result   SS_COMMON_RESULT `protobuf:"varint,1,opt,name=result,proto3,enum=ss.SS_COMMON_RESULT" json:"result,omitempty"`
	Uid      int64            `protobuf:"varint,2,opt,name=uid,proto3" json:"uid,omitempty"`
	RoleName string           `protobuf:"bytes,20,opt,name=role_name,json=roleName,proto3" json:"role_name,omitempty"` //if len>0 means update
	Addr     string           `protobuf:"bytes,21,opt,name=addr,proto3" json:"addr,omitempty"`                         //if len>0 means update
	Desc     string           `protobuf:"bytes,22,opt,name=desc,proto3" json:"desc,omitempty"`                         //if len>0 means update
	Passwd   string           `protobuf:"bytes,23,opt,name=passwd,proto3" json:"passwd,omitempty"`                     //if len>0 will update
	// contains filtered or unexported fields
}

func (*MsgUpdateUserRsp) Descriptor deprecated

func (*MsgUpdateUserRsp) Descriptor() ([]byte, []int)

Deprecated: Use MsgUpdateUserRsp.ProtoReflect.Descriptor instead.

func (*MsgUpdateUserRsp) GetAddr

func (x *MsgUpdateUserRsp) GetAddr() string

func (*MsgUpdateUserRsp) GetDesc

func (x *MsgUpdateUserRsp) GetDesc() string

func (*MsgUpdateUserRsp) GetPasswd

func (x *MsgUpdateUserRsp) GetPasswd() string

func (*MsgUpdateUserRsp) GetResult

func (x *MsgUpdateUserRsp) GetResult() SS_COMMON_RESULT

func (*MsgUpdateUserRsp) GetRoleName

func (x *MsgUpdateUserRsp) GetRoleName() string

func (*MsgUpdateUserRsp) GetUid

func (x *MsgUpdateUserRsp) GetUid() int64

func (*MsgUpdateUserRsp) ProtoMessage

func (*MsgUpdateUserRsp) ProtoMessage()

func (*MsgUpdateUserRsp) ProtoReflect

func (x *MsgUpdateUserRsp) ProtoReflect() protoreflect.Message

func (*MsgUpdateUserRsp) Reset

func (x *MsgUpdateUserRsp) Reset()

func (*MsgUpdateUserRsp) String

func (x *MsgUpdateUserRsp) String() string

type REG_RESULT

type REG_RESULT int32
const (
	REG_RESULT_REG_SUCCESS  REG_RESULT = 0
	REG_RESULT_REG_DUP_NAME REG_RESULT = 1
	REG_RESULT_REG_DB_ERR   REG_RESULT = 2
)

func (REG_RESULT) Descriptor

func (REG_RESULT) Descriptor() protoreflect.EnumDescriptor

func (REG_RESULT) Enum

func (x REG_RESULT) Enum() *REG_RESULT

func (REG_RESULT) EnumDescriptor deprecated

func (REG_RESULT) EnumDescriptor() ([]byte, []int)

Deprecated: Use REG_RESULT.Descriptor instead.

func (REG_RESULT) Number

func (x REG_RESULT) Number() protoreflect.EnumNumber

func (REG_RESULT) String

func (x REG_RESULT) String() string

func (REG_RESULT) Type

type SEND_CHAT_RESULT

type SEND_CHAT_RESULT int32

Send Chat

const (
	SEND_CHAT_RESULT_SEND_CHAT_SUCCESS    SEND_CHAT_RESULT = 0
	SEND_CHAT_RESULT_SEND_CHAT_NONE_GROUP SEND_CHAT_RESULT = 1 //group not exist
	SEND_CHAT_RESULT_SEND_CHAT_FAIL       SEND_CHAT_RESULT = 2
)

func (SEND_CHAT_RESULT) Descriptor

func (SEND_CHAT_RESULT) Enum

func (SEND_CHAT_RESULT) EnumDescriptor deprecated

func (SEND_CHAT_RESULT) EnumDescriptor() ([]byte, []int)

Deprecated: Use SEND_CHAT_RESULT.Descriptor instead.

func (SEND_CHAT_RESULT) Number

func (SEND_CHAT_RESULT) String

func (x SEND_CHAT_RESULT) String() string

func (SEND_CHAT_RESULT) Type

type SSMsg

type SSMsg struct {
	ProtoType SS_PROTO_TYPE `protobuf:"varint,1,opt,name=proto_type,json=protoType,proto3,enum=ss.SS_PROTO_TYPE" json:"proto_type,omitempty"`
	// Types that are assignable to MsgBody:
	//	*SSMsg_HeartBeatReq
	//	*SSMsg_PingReq
	//	*SSMsg_PingRsp
	//	*SSMsg_LoginReq
	//	*SSMsg_LoginRsp
	//	*SSMsg_LogoutReq
	//	*SSMsg_LogoutRsp
	//	*SSMsg_RegReq
	//	*SSMsg_RegRsp
	//	*SSMsg_CreateGroupReq
	//	*SSMsg_CreateGroupRsp
	//	*SSMsg_MsgDisp
	//	*SSMsg_ApplyGroupReq
	//	*SSMsg_ApplyGroupRsp
	//	*SSMsg_ApplyGroupNotify
	//	*SSMsg_ApplyGroupAudit
	//	*SSMsg_FetchApplyReq
	//	*SSMsg_FetchApplyRsp
	//	*SSMsg_CommonNotify
	//	*SSMsg_FetchAuditReq
	//	*SSMsg_FetchAuditRsp
	//	*SSMsg_EnterGroupReq
	//	*SSMsg_EnterGroupRsp
	//	*SSMsg_LoadGroupReq
	//	*SSMsg_LoadGroupRsp
	//	*SSMsg_SendChatReq
	//	*SSMsg_SendChatRsp
	//	*SSMsg_SaveGroupReq
	//	*SSMsg_SaveGroupRsp
	//	*SSMsg_FetchChatReq
	//	*SSMsg_FetchChatRsp
	//	*SSMsg_SyncChatList
	//	*SSMsg_ExitGroupReq
	//	*SSMsg_ExitGroupRsp
	//	*SSMsg_KickGroupReq
	//	*SSMsg_KickGroupRsp
	//	*SSMsg_FetchOfflineInfoReq
	//	*SSMsg_FetchOfflineInfoRsp
	//	*SSMsg_QueryGroupReq
	//	*SSMsg_SyncGroupInfo
	//	*SSMsg_FetchUserProfileReq
	//	*SSMsg_FetchUserProfileRsp
	//	*SSMsg_SaveUserProfileReq
	//	*SSMsg_ChgGroupAttrReq
	//	*SSMsg_ChgGroupAttrRsp
	//	*SSMsg_GroupGroundReq
	//	*SSMsg_GroupGroundRsp
	//	*SSMsg_BatchQueryGroupSnap
	//	*SSMsg_CommonQuery
	//	*SSMsg_UpdateUserReq
	//	*SSMsg_UpdateUserRsp
	//	*SSMsg_UpdateChatReq
	//	*SSMsg_UpdateChatRsp
	MsgBody isSSMsg_MsgBody `protobuf_oneof:"msg_body"`
	// contains filtered or unexported fields
}

main msg

func (*SSMsg) Descriptor deprecated

func (*SSMsg) Descriptor() ([]byte, []int)

Deprecated: Use SSMsg.ProtoReflect.Descriptor instead.

func (*SSMsg) GetApplyGroupAudit

func (x *SSMsg) GetApplyGroupAudit() *MsgApplyGroupAudit

func (*SSMsg) GetApplyGroupNotify

func (x *SSMsg) GetApplyGroupNotify() *MsgApplyGroupNotify

func (*SSMsg) GetApplyGroupReq

func (x *SSMsg) GetApplyGroupReq() *MsgApplyGroupReq

func (*SSMsg) GetApplyGroupRsp

func (x *SSMsg) GetApplyGroupRsp() *MsgApplyGroupRsp

func (*SSMsg) GetBatchQueryGroupSnap

func (x *SSMsg) GetBatchQueryGroupSnap() *MsgBatchQueryGroupSnap

func (*SSMsg) GetChgGroupAttrReq

func (x *SSMsg) GetChgGroupAttrReq() *MsgChgGroupAttrReq

func (*SSMsg) GetChgGroupAttrRsp

func (x *SSMsg) GetChgGroupAttrRsp() *MsgChgGroupAttrRsp

func (*SSMsg) GetCommonNotify

func (x *SSMsg) GetCommonNotify() *MsgCommonNotify

func (*SSMsg) GetCommonQuery

func (x *SSMsg) GetCommonQuery() *MsgCommonQuery

func (*SSMsg) GetCreateGroupReq

func (x *SSMsg) GetCreateGroupReq() *MsgCreateGrpReq

func (*SSMsg) GetCreateGroupRsp

func (x *SSMsg) GetCreateGroupRsp() *MsgCreateGrpRsp

func (*SSMsg) GetEnterGroupReq

func (x *SSMsg) GetEnterGroupReq() *MsgEnterGroupReq

func (*SSMsg) GetEnterGroupRsp

func (x *SSMsg) GetEnterGroupRsp() *MsgEnterGroupRsp

func (*SSMsg) GetExitGroupReq

func (x *SSMsg) GetExitGroupReq() *MsgExitGroupReq

func (*SSMsg) GetExitGroupRsp

func (x *SSMsg) GetExitGroupRsp() *MsgExitGroupRsp

func (*SSMsg) GetFetchApplyReq

func (x *SSMsg) GetFetchApplyReq() *MsgFetchApplyGrpReq

func (*SSMsg) GetFetchApplyRsp

func (x *SSMsg) GetFetchApplyRsp() *MsgFetchApplyGrpRsp

func (*SSMsg) GetFetchAuditReq

func (x *SSMsg) GetFetchAuditReq() *MsgFetchAuditGrpReq

func (*SSMsg) GetFetchAuditRsp

func (x *SSMsg) GetFetchAuditRsp() *MsgFetchAuditGrpRsp

func (*SSMsg) GetFetchChatReq

func (x *SSMsg) GetFetchChatReq() *MsgFetchChatReq

func (*SSMsg) GetFetchChatRsp

func (x *SSMsg) GetFetchChatRsp() *MsgFetchChatRsp

func (*SSMsg) GetFetchOfflineInfoReq

func (x *SSMsg) GetFetchOfflineInfoReq() *MsgFetchOfflineInfoReq

func (*SSMsg) GetFetchOfflineInfoRsp

func (x *SSMsg) GetFetchOfflineInfoRsp() *MsgFetchOfflineInfoRsp

func (*SSMsg) GetFetchUserProfileReq

func (x *SSMsg) GetFetchUserProfileReq() *MsgFetchUserProfileReq

func (*SSMsg) GetFetchUserProfileRsp

func (x *SSMsg) GetFetchUserProfileRsp() *MsgFetchUserProfileRsp

func (*SSMsg) GetGroupGroundReq

func (x *SSMsg) GetGroupGroundReq() *MsgGroupGroudReq

func (*SSMsg) GetGroupGroundRsp

func (x *SSMsg) GetGroupGroundRsp() *MsgGroupGroudRsp

func (*SSMsg) GetHeartBeatReq

func (x *SSMsg) GetHeartBeatReq() *MsgHeartBeatReq

func (*SSMsg) GetKickGroupReq

func (x *SSMsg) GetKickGroupReq() *MsgKickGroupReq

func (*SSMsg) GetKickGroupRsp

func (x *SSMsg) GetKickGroupRsp() *MsgKickGroupRsp

func (*SSMsg) GetLoadGroupReq

func (x *SSMsg) GetLoadGroupReq() *MsgLoadGroupReq

func (*SSMsg) GetLoadGroupRsp

func (x *SSMsg) GetLoadGroupRsp() *MsgLoadGroupRsp

func (*SSMsg) GetLoginReq

func (x *SSMsg) GetLoginReq() *MsgLoginReq

func (*SSMsg) GetLoginRsp

func (x *SSMsg) GetLoginRsp() *MsgLoginRsp

func (*SSMsg) GetLogoutReq

func (x *SSMsg) GetLogoutReq() *MsgLogoutReq

func (*SSMsg) GetLogoutRsp

func (x *SSMsg) GetLogoutRsp() *MsgLogoutRsp

func (*SSMsg) GetMsgBody

func (m *SSMsg) GetMsgBody() isSSMsg_MsgBody

func (*SSMsg) GetMsgDisp

func (x *SSMsg) GetMsgDisp() *MsgDisp

func (*SSMsg) GetPingReq

func (x *SSMsg) GetPingReq() *MsgPingReq

func (*SSMsg) GetPingRsp

func (x *SSMsg) GetPingRsp() *MsgPingRsp

func (*SSMsg) GetProtoType

func (x *SSMsg) GetProtoType() SS_PROTO_TYPE

func (*SSMsg) GetQueryGroupReq

func (x *SSMsg) GetQueryGroupReq() *MsgQueryGroupReq

func (*SSMsg) GetRegReq

func (x *SSMsg) GetRegReq() *MsgRegReq

func (*SSMsg) GetRegRsp

func (x *SSMsg) GetRegRsp() *MsgRegRsp

func (*SSMsg) GetSaveGroupReq

func (x *SSMsg) GetSaveGroupReq() *MsgSaveGroupReq

func (*SSMsg) GetSaveGroupRsp

func (x *SSMsg) GetSaveGroupRsp() *MsgSaveGroupRsp

func (*SSMsg) GetSaveUserProfileReq

func (x *SSMsg) GetSaveUserProfileReq() *MsgSaveUserProfileReq

func (*SSMsg) GetSendChatReq

func (x *SSMsg) GetSendChatReq() *MsgSendChatReq

func (*SSMsg) GetSendChatRsp

func (x *SSMsg) GetSendChatRsp() *MsgSendChatRsp

func (*SSMsg) GetSyncChatList

func (x *SSMsg) GetSyncChatList() *MsgSyncChatList

func (*SSMsg) GetSyncGroupInfo

func (x *SSMsg) GetSyncGroupInfo() *MsgSyncGroupInfo

func (*SSMsg) GetUpdateChatReq

func (x *SSMsg) GetUpdateChatReq() *MsgUpdateChatReq

func (*SSMsg) GetUpdateChatRsp

func (x *SSMsg) GetUpdateChatRsp() *MsgUpdateChatRsp

func (*SSMsg) GetUpdateUserReq

func (x *SSMsg) GetUpdateUserReq() *MsgUpdateUserReq

func (*SSMsg) GetUpdateUserRsp

func (x *SSMsg) GetUpdateUserRsp() *MsgUpdateUserRsp

func (*SSMsg) ProtoMessage

func (*SSMsg) ProtoMessage()

func (*SSMsg) ProtoReflect

func (x *SSMsg) ProtoReflect() protoreflect.Message

func (*SSMsg) Reset

func (x *SSMsg) Reset()

func (*SSMsg) String

func (x *SSMsg) String() string

type SSMsg_ApplyGroupAudit

type SSMsg_ApplyGroupAudit struct {
	ApplyGroupAudit *MsgApplyGroupAudit `protobuf:"bytes,37,opt,name=apply_group_audit,json=applyGroupAudit,proto3,oneof"`
}

type SSMsg_ApplyGroupNotify

type SSMsg_ApplyGroupNotify struct {
	ApplyGroupNotify *MsgApplyGroupNotify `protobuf:"bytes,36,opt,name=apply_group_notify,json=applyGroupNotify,proto3,oneof"`
}

type SSMsg_ApplyGroupReq

type SSMsg_ApplyGroupReq struct {
	ApplyGroupReq *MsgApplyGroupReq `protobuf:"bytes,34,opt,name=apply_group_req,json=applyGroupReq,proto3,oneof"`
}

type SSMsg_ApplyGroupRsp

type SSMsg_ApplyGroupRsp struct {
	ApplyGroupRsp *MsgApplyGroupRsp `protobuf:"bytes,35,opt,name=apply_group_rsp,json=applyGroupRsp,proto3,oneof"`
}

type SSMsg_BatchQueryGroupSnap

type SSMsg_BatchQueryGroupSnap struct {
	BatchQueryGroupSnap *MsgBatchQueryGroupSnap `protobuf:"bytes,69,opt,name=batch_query_group_snap,json=batchQueryGroupSnap,proto3,oneof"`
}

type SSMsg_ChgGroupAttrReq

type SSMsg_ChgGroupAttrReq struct {
	ChgGroupAttrReq *MsgChgGroupAttrReq `protobuf:"bytes,65,opt,name=chg_group_attr_req,json=chgGroupAttrReq,proto3,oneof"`
}

type SSMsg_ChgGroupAttrRsp

type SSMsg_ChgGroupAttrRsp struct {
	ChgGroupAttrRsp *MsgChgGroupAttrRsp `protobuf:"bytes,66,opt,name=chg_group_attr_rsp,json=chgGroupAttrRsp,proto3,oneof"`
}

type SSMsg_CommonNotify

type SSMsg_CommonNotify struct {
	CommonNotify *MsgCommonNotify `protobuf:"bytes,40,opt,name=common_notify,json=commonNotify,proto3,oneof"`
}

type SSMsg_CommonQuery

type SSMsg_CommonQuery struct {
	CommonQuery *MsgCommonQuery `protobuf:"bytes,70,opt,name=common_query,json=commonQuery,proto3,oneof"`
}

type SSMsg_CreateGroupReq

type SSMsg_CreateGroupReq struct {
	CreateGroupReq *MsgCreateGrpReq `protobuf:"bytes,30,opt,name=create_group_req,json=createGroupReq,proto3,oneof"`
}

type SSMsg_CreateGroupRsp

type SSMsg_CreateGroupRsp struct {
	CreateGroupRsp *MsgCreateGrpRsp `protobuf:"bytes,31,opt,name=create_group_rsp,json=createGroupRsp,proto3,oneof"`
}

type SSMsg_EnterGroupReq

type SSMsg_EnterGroupReq struct {
	EnterGroupReq *MsgEnterGroupReq `protobuf:"bytes,43,opt,name=enter_group_req,json=enterGroupReq,proto3,oneof"`
}

type SSMsg_EnterGroupRsp

type SSMsg_EnterGroupRsp struct {
	EnterGroupRsp *MsgEnterGroupRsp `protobuf:"bytes,44,opt,name=enter_group_rsp,json=enterGroupRsp,proto3,oneof"`
}

type SSMsg_ExitGroupReq

type SSMsg_ExitGroupReq struct {
	ExitGroupReq *MsgExitGroupReq `protobuf:"bytes,54,opt,name=exit_group_req,json=exitGroupReq,proto3,oneof"`
}

type SSMsg_ExitGroupRsp

type SSMsg_ExitGroupRsp struct {
	ExitGroupRsp *MsgExitGroupRsp `protobuf:"bytes,55,opt,name=exit_group_rsp,json=exitGroupRsp,proto3,oneof"`
}

type SSMsg_FetchApplyReq

type SSMsg_FetchApplyReq struct {
	FetchApplyReq *MsgFetchApplyGrpReq `protobuf:"bytes,38,opt,name=fetch_apply_req,json=fetchApplyReq,proto3,oneof"`
}

type SSMsg_FetchApplyRsp

type SSMsg_FetchApplyRsp struct {
	FetchApplyRsp *MsgFetchApplyGrpRsp `protobuf:"bytes,39,opt,name=fetch_apply_rsp,json=fetchApplyRsp,proto3,oneof"`
}

type SSMsg_FetchAuditReq

type SSMsg_FetchAuditReq struct {
	FetchAuditReq *MsgFetchAuditGrpReq `protobuf:"bytes,41,opt,name=fetch_audit_req,json=fetchAuditReq,proto3,oneof"`
}

type SSMsg_FetchAuditRsp

type SSMsg_FetchAuditRsp struct {
	FetchAuditRsp *MsgFetchAuditGrpRsp `protobuf:"bytes,42,opt,name=fetch_audit_rsp,json=fetchAuditRsp,proto3,oneof"`
}

type SSMsg_FetchChatReq

type SSMsg_FetchChatReq struct {
	FetchChatReq *MsgFetchChatReq `protobuf:"bytes,51,opt,name=fetch_chat_req,json=fetchChatReq,proto3,oneof"`
}

type SSMsg_FetchChatRsp

type SSMsg_FetchChatRsp struct {
	FetchChatRsp *MsgFetchChatRsp `protobuf:"bytes,52,opt,name=fetch_chat_rsp,json=fetchChatRsp,proto3,oneof"`
}

type SSMsg_FetchOfflineInfoReq

type SSMsg_FetchOfflineInfoReq struct {
	FetchOfflineInfoReq *MsgFetchOfflineInfoReq `protobuf:"bytes,58,opt,name=fetch_offline_info_req,json=fetchOfflineInfoReq,proto3,oneof"`
}

type SSMsg_FetchOfflineInfoRsp

type SSMsg_FetchOfflineInfoRsp struct {
	FetchOfflineInfoRsp *MsgFetchOfflineInfoRsp `protobuf:"bytes,59,opt,name=fetch_offline_info_rsp,json=fetchOfflineInfoRsp,proto3,oneof"`
}

type SSMsg_FetchUserProfileReq

type SSMsg_FetchUserProfileReq struct {
	FetchUserProfileReq *MsgFetchUserProfileReq `protobuf:"bytes,62,opt,name=fetch_user_profile_req,json=fetchUserProfileReq,proto3,oneof"`
}

type SSMsg_FetchUserProfileRsp

type SSMsg_FetchUserProfileRsp struct {
	FetchUserProfileRsp *MsgFetchUserProfileRsp `protobuf:"bytes,63,opt,name=fetch_user_profile_rsp,json=fetchUserProfileRsp,proto3,oneof"`
}

type SSMsg_GroupGroundReq

type SSMsg_GroupGroundReq struct {
	GroupGroundReq *MsgGroupGroudReq `protobuf:"bytes,67,opt,name=group_ground_req,json=groupGroundReq,proto3,oneof"`
}

type SSMsg_GroupGroundRsp

type SSMsg_GroupGroundRsp struct {
	GroupGroundRsp *MsgGroupGroudRsp `protobuf:"bytes,68,opt,name=group_ground_rsp,json=groupGroundRsp,proto3,oneof"`
}

type SSMsg_HeartBeatReq

type SSMsg_HeartBeatReq struct {
	HeartBeatReq *MsgHeartBeatReq `protobuf:"bytes,20,opt,name=heart_beat_req,json=heartBeatReq,proto3,oneof"`
}

type SSMsg_KickGroupReq

type SSMsg_KickGroupReq struct {
	KickGroupReq *MsgKickGroupReq `protobuf:"bytes,56,opt,name=kick_group_req,json=kickGroupReq,proto3,oneof"`
}

type SSMsg_KickGroupRsp

type SSMsg_KickGroupRsp struct {
	KickGroupRsp *MsgKickGroupRsp `protobuf:"bytes,57,opt,name=kick_group_rsp,json=kickGroupRsp,proto3,oneof"`
}

type SSMsg_LoadGroupReq

type SSMsg_LoadGroupReq struct {
	LoadGroupReq *MsgLoadGroupReq `protobuf:"bytes,45,opt,name=load_group_req,json=loadGroupReq,proto3,oneof"`
}

type SSMsg_LoadGroupRsp

type SSMsg_LoadGroupRsp struct {
	LoadGroupRsp *MsgLoadGroupRsp `protobuf:"bytes,46,opt,name=load_group_rsp,json=loadGroupRsp,proto3,oneof"`
}

type SSMsg_LoginReq

type SSMsg_LoginReq struct {
	LoginReq *MsgLoginReq `protobuf:"bytes,24,opt,name=login_req,json=loginReq,proto3,oneof"`
}

type SSMsg_LoginRsp

type SSMsg_LoginRsp struct {
	LoginRsp *MsgLoginRsp `protobuf:"bytes,25,opt,name=login_rsp,json=loginRsp,proto3,oneof"`
}

type SSMsg_LogoutReq

type SSMsg_LogoutReq struct {
	LogoutReq *MsgLogoutReq `protobuf:"bytes,26,opt,name=logout_req,json=logoutReq,proto3,oneof"`
}

type SSMsg_LogoutRsp

type SSMsg_LogoutRsp struct {
	LogoutRsp *MsgLogoutRsp `protobuf:"bytes,27,opt,name=logout_rsp,json=logoutRsp,proto3,oneof"`
}

type SSMsg_MsgDisp

type SSMsg_MsgDisp struct {
	MsgDisp *MsgDisp `protobuf:"bytes,32,opt,name=msg_disp,json=msgDisp,proto3,oneof"`
}

type SSMsg_PingReq

type SSMsg_PingReq struct {
	PingReq *MsgPingReq `protobuf:"bytes,22,opt,name=ping_req,json=pingReq,proto3,oneof"`
}

type SSMsg_PingRsp

type SSMsg_PingRsp struct {
	PingRsp *MsgPingRsp `protobuf:"bytes,23,opt,name=ping_rsp,json=pingRsp,proto3,oneof"`
}

type SSMsg_QueryGroupReq

type SSMsg_QueryGroupReq struct {
	QueryGroupReq *MsgQueryGroupReq `protobuf:"bytes,60,opt,name=query_group_req,json=queryGroupReq,proto3,oneof"`
}

type SSMsg_RegReq

type SSMsg_RegReq struct {
	RegReq *MsgRegReq `protobuf:"bytes,28,opt,name=reg_req,json=regReq,proto3,oneof"`
}

type SSMsg_RegRsp

type SSMsg_RegRsp struct {
	RegRsp *MsgRegRsp `protobuf:"bytes,29,opt,name=reg_rsp,json=regRsp,proto3,oneof"`
}

type SSMsg_SaveGroupReq

type SSMsg_SaveGroupReq struct {
	SaveGroupReq *MsgSaveGroupReq `protobuf:"bytes,49,opt,name=save_group_req,json=saveGroupReq,proto3,oneof"`
}

type SSMsg_SaveGroupRsp

type SSMsg_SaveGroupRsp struct {
	SaveGroupRsp *MsgSaveGroupRsp `protobuf:"bytes,50,opt,name=save_group_rsp,json=saveGroupRsp,proto3,oneof"`
}

type SSMsg_SaveUserProfileReq

type SSMsg_SaveUserProfileReq struct {
	SaveUserProfileReq *MsgSaveUserProfileReq `protobuf:"bytes,64,opt,name=save_user_profile_req,json=saveUserProfileReq,proto3,oneof"`
}

type SSMsg_SendChatReq

type SSMsg_SendChatReq struct {
	SendChatReq *MsgSendChatReq `protobuf:"bytes,47,opt,name=send_chat_req,json=sendChatReq,proto3,oneof"`
}

type SSMsg_SendChatRsp

type SSMsg_SendChatRsp struct {
	SendChatRsp *MsgSendChatRsp `protobuf:"bytes,48,opt,name=send_chat_rsp,json=sendChatRsp,proto3,oneof"`
}

type SSMsg_SyncChatList

type SSMsg_SyncChatList struct {
	SyncChatList *MsgSyncChatList `protobuf:"bytes,53,opt,name=sync_chat_list,json=syncChatList,proto3,oneof"`
}

type SSMsg_SyncGroupInfo

type SSMsg_SyncGroupInfo struct {
	SyncGroupInfo *MsgSyncGroupInfo `protobuf:"bytes,61,opt,name=sync_group_info,json=syncGroupInfo,proto3,oneof"`
}

type SSMsg_UpdateChatReq

type SSMsg_UpdateChatReq struct {
	UpdateChatReq *MsgUpdateChatReq `protobuf:"bytes,73,opt,name=update_chat_req,json=updateChatReq,proto3,oneof"`
}

type SSMsg_UpdateChatRsp

type SSMsg_UpdateChatRsp struct {
	UpdateChatRsp *MsgUpdateChatRsp `protobuf:"bytes,74,opt,name=update_chat_rsp,json=updateChatRsp,proto3,oneof"`
}

type SSMsg_UpdateUserReq

type SSMsg_UpdateUserReq struct {
	UpdateUserReq *MsgUpdateUserReq `protobuf:"bytes,71,opt,name=update_user_req,json=updateUserReq,proto3,oneof"`
}

type SSMsg_UpdateUserRsp

type SSMsg_UpdateUserRsp struct {
	UpdateUserRsp *MsgUpdateUserRsp `protobuf:"bytes,72,opt,name=update_user_rsp,json=updateUserRsp,proto3,oneof"`
}

type SS_COMMON_QUERY_TYPE

type SS_COMMON_QUERY_TYPE int32
const (
	SS_COMMON_QUERY_TYPE_QRY_OWN_SNAP  SS_COMMON_QUERY_TYPE = 0
	SS_COMMON_QUERY_TYPE_QRY_SET_HEART SS_COMMON_QUERY_TYPE = 1 //set client hearbeat
)

func (SS_COMMON_QUERY_TYPE) Descriptor

func (SS_COMMON_QUERY_TYPE) Enum

func (SS_COMMON_QUERY_TYPE) EnumDescriptor deprecated

func (SS_COMMON_QUERY_TYPE) EnumDescriptor() ([]byte, []int)

Deprecated: Use SS_COMMON_QUERY_TYPE.Descriptor instead.

func (SS_COMMON_QUERY_TYPE) Number

func (SS_COMMON_QUERY_TYPE) String

func (x SS_COMMON_QUERY_TYPE) String() string

func (SS_COMMON_QUERY_TYPE) Type

type SS_COMMON_REASON

type SS_COMMON_REASON int32
const (
	SS_COMMON_REASON_REASON_TICK   SS_COMMON_REASON = 0 //ticker save
	SS_COMMON_REASON_REASON_UPDATE SS_COMMON_REASON = 1 //activate save
	SS_COMMON_REASON_REASON_EXIT   SS_COMMON_REASON = 2 //server exit
)

func (SS_COMMON_REASON) Descriptor

func (SS_COMMON_REASON) Enum

func (SS_COMMON_REASON) EnumDescriptor deprecated

func (SS_COMMON_REASON) EnumDescriptor() ([]byte, []int)

Deprecated: Use SS_COMMON_REASON.Descriptor instead.

func (SS_COMMON_REASON) Number

func (SS_COMMON_REASON) String

func (x SS_COMMON_REASON) String() string

func (SS_COMMON_REASON) Type

type SS_COMMON_RESULT

type SS_COMMON_RESULT int32
const (
	SS_COMMON_RESULT_SUCCESS    SS_COMMON_RESULT = 0
	SS_COMMON_RESULT_FAILED     SS_COMMON_RESULT = 1
	SS_COMMON_RESULT_NOEXIST    SS_COMMON_RESULT = 2
	SS_COMMON_RESULT_PERMISSION SS_COMMON_RESULT = 3 //no permission
)

func (SS_COMMON_RESULT) Descriptor

func (SS_COMMON_RESULT) Enum

func (SS_COMMON_RESULT) EnumDescriptor deprecated

func (SS_COMMON_RESULT) EnumDescriptor() ([]byte, []int)

Deprecated: Use SS_COMMON_RESULT.Descriptor instead.

func (SS_COMMON_RESULT) Number

func (SS_COMMON_RESULT) String

func (x SS_COMMON_RESULT) String() string

func (SS_COMMON_RESULT) Type

type SS_COMMON_TYPE

type SS_COMMON_TYPE int32
const (
	SS_COMMON_TYPE_COMM_TYPE_NORMAL  SS_COMMON_TYPE = 0
	SS_COMMON_TYPE_COMM_TYPE_HISTORY SS_COMMON_TYPE = 1
)

func (SS_COMMON_TYPE) Descriptor

func (SS_COMMON_TYPE) Enum

func (x SS_COMMON_TYPE) Enum() *SS_COMMON_TYPE

func (SS_COMMON_TYPE) EnumDescriptor deprecated

func (SS_COMMON_TYPE) EnumDescriptor() ([]byte, []int)

Deprecated: Use SS_COMMON_TYPE.Descriptor instead.

func (SS_COMMON_TYPE) Number

func (SS_COMMON_TYPE) String

func (x SS_COMMON_TYPE) String() string

func (SS_COMMON_TYPE) Type

type SS_GROUP_INFO_FIELD

type SS_GROUP_INFO_FIELD int32
const (
	SS_GROUP_INFO_FIELD_GRP_FIELD_ALL  SS_GROUP_INFO_FIELD = 0
	SS_GROUP_INFO_FIELD_GRP_FIELD_SNAP SS_GROUP_INFO_FIELD = 1
)

func (SS_GROUP_INFO_FIELD) Descriptor

func (SS_GROUP_INFO_FIELD) Enum

func (SS_GROUP_INFO_FIELD) EnumDescriptor deprecated

func (SS_GROUP_INFO_FIELD) EnumDescriptor() ([]byte, []int)

Deprecated: Use SS_GROUP_INFO_FIELD.Descriptor instead.

func (SS_GROUP_INFO_FIELD) Number

func (SS_GROUP_INFO_FIELD) String

func (x SS_GROUP_INFO_FIELD) String() string

func (SS_GROUP_INFO_FIELD) Type

type SS_OFFLINE_INFO_TYPE

type SS_OFFLINE_INFO_TYPE int32
const (
	SS_OFFLINE_INFO_TYPE_OFT_KICK_GROUP SS_OFFLINE_INFO_TYPE = 0 //kick out group by master <type|grp_id|grp_name|kick_ts>
)

func (SS_OFFLINE_INFO_TYPE) Descriptor

func (SS_OFFLINE_INFO_TYPE) Enum

func (SS_OFFLINE_INFO_TYPE) EnumDescriptor deprecated

func (SS_OFFLINE_INFO_TYPE) EnumDescriptor() ([]byte, []int)

Deprecated: Use SS_OFFLINE_INFO_TYPE.Descriptor instead.

func (SS_OFFLINE_INFO_TYPE) Number

func (SS_OFFLINE_INFO_TYPE) String

func (x SS_OFFLINE_INFO_TYPE) String() string

func (SS_OFFLINE_INFO_TYPE) Type

type SS_PROTO_TYPE

type SS_PROTO_TYPE int32

proto type

const (
	SS_PROTO_TYPE_HEART_BEAT_REQ         SS_PROTO_TYPE = 0
	SS_PROTO_TYPE_HEART_BEAT_RSP         SS_PROTO_TYPE = 1
	SS_PROTO_TYPE_PING_REQ               SS_PROTO_TYPE = 2
	SS_PROTO_TYPE_PING_RSP               SS_PROTO_TYPE = 3
	SS_PROTO_TYPE_LOGIN_REQ              SS_PROTO_TYPE = 4
	SS_PROTO_TYPE_LOGIN_RSP              SS_PROTO_TYPE = 5
	SS_PROTO_TYPE_LOGOUT_REQ             SS_PROTO_TYPE = 6
	SS_PROTO_TYPE_LOGOUT_RSP             SS_PROTO_TYPE = 7
	SS_PROTO_TYPE_REG_REQ                SS_PROTO_TYPE = 8
	SS_PROTO_TYPE_REG_RSP                SS_PROTO_TYPE = 9
	SS_PROTO_TYPE_CREATE_GROUP_REQ       SS_PROTO_TYPE = 12
	SS_PROTO_TYPE_CREATE_GROUP_RSP       SS_PROTO_TYPE = 13
	SS_PROTO_TYPE_USE_DISP_PROTO         SS_PROTO_TYPE = 14 // serv <--> disp <--> serv
	SS_PROTO_TYPE_APPLY_GROUP_REQ        SS_PROTO_TYPE = 16
	SS_PROTO_TYPE_APPLY_GROUP_RSP        SS_PROTO_TYPE = 17
	SS_PROTO_TYPE_APPLY_GROUP_NOTIFY     SS_PROTO_TYPE = 18
	SS_PROTO_TYPE_APPLY_GROUP_AUDIT      SS_PROTO_TYPE = 19
	SS_PROTO_TYPE_FETCH_APPLY_GROUP_REQ  SS_PROTO_TYPE = 20
	SS_PROTO_TYPE_FETCH_APPLY_GROUP_RSP  SS_PROTO_TYPE = 21
	SS_PROTO_TYPE_COMMON_NOTIFY          SS_PROTO_TYPE = 22
	SS_PROTO_TYPE_FETCH_AUDIT_GROUP_REQ  SS_PROTO_TYPE = 23
	SS_PROTO_TYPE_FETCH_AUDIT_GROUP_RSP  SS_PROTO_TYPE = 24
	SS_PROTO_TYPE_ENTER_GROUP_REQ        SS_PROTO_TYPE = 25
	SS_PROTO_TYPE_ENTER_GROUP_RSP        SS_PROTO_TYPE = 26
	SS_PROTO_TYPE_LOAD_GROUP_REQ         SS_PROTO_TYPE = 27
	SS_PROTO_TYPE_LOAD_GROUP_RSP         SS_PROTO_TYPE = 28
	SS_PROTO_TYPE_SEND_CHAT_REQ          SS_PROTO_TYPE = 29
	SS_PROTO_TYPE_SEND_CHAT_RSP          SS_PROTO_TYPE = 30
	SS_PROTO_TYPE_SAVE_GROUP_REQ         SS_PROTO_TYPE = 31
	SS_PROTO_TYPE_SAVE_GROUP_RSP         SS_PROTO_TYPE = 32
	SS_PROTO_TYPE_FETCH_CHAT_REQ         SS_PROTO_TYPE = 33
	SS_PROTO_TYPE_FETCH_CHAT_RSP         SS_PROTO_TYPE = 34
	SS_PROTO_TYPE_SYNC_CHAT_LIST         SS_PROTO_TYPE = 35
	SS_PROTO_TYPE_EXIT_GROUP_REQ         SS_PROTO_TYPE = 36
	SS_PROTO_TYPE_EXIT_GROUP_RSP         SS_PROTO_TYPE = 37
	SS_PROTO_TYPE_KICK_GROUP_REQ         SS_PROTO_TYPE = 38
	SS_PROTO_TYPE_KICK_GROUP_RSP         SS_PROTO_TYPE = 39
	SS_PROTO_TYPE_FETCH_OFFLINE_INFO_REQ SS_PROTO_TYPE = 40
	SS_PROTO_TYPE_FETCH_OFFLINE_INFO_RSP SS_PROTO_TYPE = 41
	SS_PROTO_TYPE_QUERY_GROUP_REQ        SS_PROTO_TYPE = 42
	SS_PROTO_TYPE_SYNC_GROUP_INFO        SS_PROTO_TYPE = 43
	SS_PROTO_TYPE_FETCH_USER_PROFILE_REQ SS_PROTO_TYPE = 44
	SS_PROTO_TYPE_FETCH_USER_PROFILE_RSP SS_PROTO_TYPE = 45
	SS_PROTO_TYPE_SAVE_USER_PROFILE_REQ  SS_PROTO_TYPE = 46
	SS_PROTO_TYPE_CHG_GROUP_ATTR_REQ     SS_PROTO_TYPE = 47
	SS_PROTO_TYPE_CHG_GROUP_ATTR_RSP     SS_PROTO_TYPE = 48
	SS_PROTO_TYPE_GROUP_GROUND_REQ       SS_PROTO_TYPE = 49
	SS_PROTO_TYPE_GROUP_GROUND_RSP       SS_PROTO_TYPE = 50
	SS_PROTO_TYPE_BATCH_QUERY_GROUP_SNAP SS_PROTO_TYPE = 51
	SS_PROTO_TYPE_COMMON_QUERY           SS_PROTO_TYPE = 52
	SS_PROTO_TYPE_UPDATE_USER_REQ        SS_PROTO_TYPE = 53
	SS_PROTO_TYPE_UPDATE_USER_RSP        SS_PROTO_TYPE = 54
	SS_PROTO_TYPE_UPDATE_CHAT_REQ        SS_PROTO_TYPE = 55
	SS_PROTO_TYPE_UPDATE_CHAT_RSP        SS_PROTO_TYPE = 56 //new proto defined could add to servers/comm/ss_pack.go:GenSSPkg
)

func (SS_PROTO_TYPE) Descriptor

func (SS_PROTO_TYPE) Enum

func (x SS_PROTO_TYPE) Enum() *SS_PROTO_TYPE

func (SS_PROTO_TYPE) EnumDescriptor deprecated

func (SS_PROTO_TYPE) EnumDescriptor() ([]byte, []int)

Deprecated: Use SS_PROTO_TYPE.Descriptor instead.

func (SS_PROTO_TYPE) Number

func (SS_PROTO_TYPE) String

func (x SS_PROTO_TYPE) String() string

func (SS_PROTO_TYPE) Type

type SS_SPEC_UID

type SS_SPEC_UID int32
const (
	SS_SPEC_UID_SYS_UID SS_SPEC_UID = 0
)

func (SS_SPEC_UID) Descriptor

func (SS_SPEC_UID) Enum

func (x SS_SPEC_UID) Enum() *SS_SPEC_UID

func (SS_SPEC_UID) EnumDescriptor deprecated

func (SS_SPEC_UID) EnumDescriptor() ([]byte, []int)

Deprecated: Use SS_SPEC_UID.Descriptor instead.

func (SS_SPEC_UID) Number

func (x SS_SPEC_UID) Number() protoreflect.EnumNumber

func (SS_SPEC_UID) String

func (x SS_SPEC_UID) String() string

func (SS_SPEC_UID) Type

type UPDATE_CHAT_TYPE

type UPDATE_CHAT_TYPE int32

Update ChatMsg

const (
	UPDATE_CHAT_TYPE_UPT_CHAT_DEL    UPDATE_CHAT_TYPE = 0 //del chat
	UPDATE_CHAT_TYPE_UPT_CHAT_CANCEL UPDATE_CHAT_TYPE = 1 //cancel chat
)

func (UPDATE_CHAT_TYPE) Descriptor

func (UPDATE_CHAT_TYPE) Enum

func (UPDATE_CHAT_TYPE) EnumDescriptor deprecated

func (UPDATE_CHAT_TYPE) EnumDescriptor() ([]byte, []int)

Deprecated: Use UPDATE_CHAT_TYPE.Descriptor instead.

func (UPDATE_CHAT_TYPE) Number

func (UPDATE_CHAT_TYPE) String

func (x UPDATE_CHAT_TYPE) String() string

func (UPDATE_CHAT_TYPE) Type

type USER_LOGIN_FLAG

type USER_LOGIN_FLAG int32

login

const (
	USER_LOGIN_FLAG_LOGIN_FLG_NORMAL           USER_LOGIN_FLAG = 0
	USER_LOGIN_FLAG_LOGIN_FLG_RESET_CLIENT_KEY USER_LOGIN_FLAG = 1
)

func (USER_LOGIN_FLAG) Descriptor

func (USER_LOGIN_FLAG) Enum

func (x USER_LOGIN_FLAG) Enum() *USER_LOGIN_FLAG

func (USER_LOGIN_FLAG) EnumDescriptor deprecated

func (USER_LOGIN_FLAG) EnumDescriptor() ([]byte, []int)

Deprecated: Use USER_LOGIN_FLAG.Descriptor instead.

func (USER_LOGIN_FLAG) Number

func (USER_LOGIN_FLAG) String

func (x USER_LOGIN_FLAG) String() string

func (USER_LOGIN_FLAG) Type

type USER_LOGIN_RET

type USER_LOGIN_RET int32
const (
	USER_LOGIN_RET_LOGIN_SUCCESS  USER_LOGIN_RET = 0
	USER_LOGIN_RET_LOGIN_EMPTY    USER_LOGIN_RET = 1
	USER_LOGIN_RET_LOGIN_PASS     USER_LOGIN_RET = 2
	USER_LOGIN_RET_LOGIN_ERR      USER_LOGIN_RET = 3
	USER_LOGIN_RET_LOGIN_MULTI_ON USER_LOGIN_RET = 4 //multi online
)

func (USER_LOGIN_RET) Descriptor

func (USER_LOGIN_RET) Enum

func (x USER_LOGIN_RET) Enum() *USER_LOGIN_RET

func (USER_LOGIN_RET) EnumDescriptor deprecated

func (USER_LOGIN_RET) EnumDescriptor() ([]byte, []int)

Deprecated: Use USER_LOGIN_RET.Descriptor instead.

func (USER_LOGIN_RET) Number

func (USER_LOGIN_RET) String

func (x USER_LOGIN_RET) String() string

func (USER_LOGIN_RET) Type

type USER_LOGOUT_REASON

type USER_LOGOUT_REASON int32

logout

const (
	USER_LOGOUT_REASON_LOGOUT_CLIENT_EXIT        USER_LOGOUT_REASON = 0 //client positive logout
	USER_LOGOUT_REASON_LOGOUT_CONN_CLOSED        USER_LOGOUT_REASON = 1 //client connection closed
	USER_LOGOUT_REASON_LOGOUT_SERVER_KICK_RECONN USER_LOGOUT_REASON = 2 //server kickout for reconn
	USER_LOGOUT_REASON_LOGOUT_SERVER_KICK_BAN    USER_LOGOUT_REASON = 3 //server kickout for ban
	USER_LOGOUT_REASON_LOGOUT_CLIENT_TIMEOUT     USER_LOGOUT_REASON = 4 //client timeout
	USER_LOGOUT_REASON_LOGOUT_OFFLINE_USER       USER_LOGOUT_REASON = 5 //user off-line still logout update online-logic
	USER_LOGOUT_REASON_LOGOUT_SERVER_SHUT        USER_LOGOUT_REASON = 6 //server shut down
)

func (USER_LOGOUT_REASON) Descriptor

func (USER_LOGOUT_REASON) Enum

func (USER_LOGOUT_REASON) EnumDescriptor deprecated

func (USER_LOGOUT_REASON) EnumDescriptor() ([]byte, []int)

Deprecated: Use USER_LOGOUT_REASON.Descriptor instead.

func (USER_LOGOUT_REASON) Number

func (USER_LOGOUT_REASON) String

func (x USER_LOGOUT_REASON) String() string

func (USER_LOGOUT_REASON) Type

type UserBasic

type UserBasic struct {
	AccountName string `protobuf:"bytes,1,opt,name=account_name,json=accountName,proto3" json:"account_name,omitempty"` //account name
	Name        string `protobuf:"bytes,20,opt,name=name,proto3" json:"name,omitempty"`                                 //role name
	Uid         int64  `protobuf:"varint,21,opt,name=uid,proto3" json:"uid,omitempty"`
	Addr        string `protobuf:"bytes,22,opt,name=addr,proto3" json:"addr,omitempty"`
	Sex         bool   `protobuf:"varint,23,opt,name=sex,proto3" json:"sex,omitempty"` //true:male false:female
	Age         int32  `protobuf:"varint,24,opt,name=age,proto3" json:"age,omitempty"`
	Level       int32  `protobuf:"varint,25,opt,name=level,proto3" json:"level,omitempty"`
	HeadUrl     string `protobuf:"bytes,26,opt,name=head_url,json=headUrl,proto3" json:"head_url,omitempty"`
	// contains filtered or unexported fields
}

func (*UserBasic) Descriptor deprecated

func (*UserBasic) Descriptor() ([]byte, []int)

Deprecated: Use UserBasic.ProtoReflect.Descriptor instead.

func (*UserBasic) GetAccountName

func (x *UserBasic) GetAccountName() string

func (*UserBasic) GetAddr

func (x *UserBasic) GetAddr() string

func (*UserBasic) GetAge

func (x *UserBasic) GetAge() int32

func (*UserBasic) GetHeadUrl

func (x *UserBasic) GetHeadUrl() string

func (*UserBasic) GetLevel

func (x *UserBasic) GetLevel() int32

func (*UserBasic) GetName

func (x *UserBasic) GetName() string

func (*UserBasic) GetSex

func (x *UserBasic) GetSex() bool

func (*UserBasic) GetUid

func (x *UserBasic) GetUid() int64

func (*UserBasic) ProtoMessage

func (*UserBasic) ProtoMessage()

func (*UserBasic) ProtoReflect

func (x *UserBasic) ProtoReflect() protoreflect.Message

func (*UserBasic) Reset

func (x *UserBasic) Reset()

func (*UserBasic) String

func (x *UserBasic) String() string

type UserBlob

type UserBlob struct {
	Exp          int32 `protobuf:"varint,20,opt,name=exp,proto3" json:"exp,omitempty"`
	LastLoginTs  int64 `protobuf:"varint,21,opt,name=last_login_ts,json=lastLoginTs,proto3" json:"last_login_ts,omitempty"`
	LastLogoutTs int64 `protobuf:"varint,22,opt,name=last_logout_ts,json=lastLogoutTs,proto3" json:"last_logout_ts,omitempty"`
	//UserDepot depot = 23;
	ChatInfo        *UserChatInfo `protobuf:"bytes,23,opt,name=chat_info,json=chatInfo,proto3" json:"chat_info,omitempty"`
	UserDesc        string        `protobuf:"bytes,24,opt,name=user_desc,json=userDesc,proto3" json:"user_desc,omitempty"`
	RegTime         int64         `protobuf:"varint,25,opt,name=reg_time,json=regTime,proto3" json:"reg_time,omitempty"`
	ClientEncDesKey string        `protobuf:"bytes,26,opt,name=client_enc_des_key,json=clientEncDesKey,proto3" json:"client_enc_des_key,omitempty"` //enc client data des key
	// contains filtered or unexported fields
}

blob to db

func (*UserBlob) Descriptor deprecated

func (*UserBlob) Descriptor() ([]byte, []int)

Deprecated: Use UserBlob.ProtoReflect.Descriptor instead.

func (*UserBlob) GetChatInfo

func (x *UserBlob) GetChatInfo() *UserChatInfo

func (*UserBlob) GetClientEncDesKey

func (x *UserBlob) GetClientEncDesKey() string

func (*UserBlob) GetExp

func (x *UserBlob) GetExp() int32

func (*UserBlob) GetLastLoginTs

func (x *UserBlob) GetLastLoginTs() int64

func (*UserBlob) GetLastLogoutTs

func (x *UserBlob) GetLastLogoutTs() int64

func (*UserBlob) GetRegTime

func (x *UserBlob) GetRegTime() int64

func (*UserBlob) GetUserDesc

func (x *UserBlob) GetUserDesc() string

func (*UserBlob) ProtoMessage

func (*UserBlob) ProtoMessage()

func (*UserBlob) ProtoReflect

func (x *UserBlob) ProtoReflect() protoreflect.Message

func (*UserBlob) Reset

func (x *UserBlob) Reset()

func (*UserBlob) String

func (x *UserBlob) String() string

type UserChatGroup

type UserChatGroup struct {
	GroupId    int64  `protobuf:"varint,1,opt,name=group_id,json=groupId,proto3" json:"group_id,omitempty"`
	GroupName  string `protobuf:"bytes,2,opt,name=group_name,json=groupName,proto3" json:"group_name,omitempty"`
	LastReadId int64  `protobuf:"varint,3,opt,name=last_read_id,json=lastReadId,proto3" json:"last_read_id,omitempty"` //latest msg id
	EnterTs    int64  `protobuf:"varint,4,opt,name=enter_ts,json=enterTs,proto3" json:"enter_ts,omitempty"`            //enter group time
	// contains filtered or unexported fields
}

func (*UserChatGroup) Descriptor deprecated

func (*UserChatGroup) Descriptor() ([]byte, []int)

Deprecated: Use UserChatGroup.ProtoReflect.Descriptor instead.

func (*UserChatGroup) GetEnterTs

func (x *UserChatGroup) GetEnterTs() int64

func (*UserChatGroup) GetGroupId

func (x *UserChatGroup) GetGroupId() int64

func (*UserChatGroup) GetGroupName

func (x *UserChatGroup) GetGroupName() string

func (*UserChatGroup) GetLastReadId

func (x *UserChatGroup) GetLastReadId() int64

func (*UserChatGroup) ProtoMessage

func (*UserChatGroup) ProtoMessage()

func (*UserChatGroup) ProtoReflect

func (x *UserChatGroup) ProtoReflect() protoreflect.Message

func (*UserChatGroup) Reset

func (x *UserChatGroup) Reset()

func (*UserChatGroup) String

func (x *UserChatGroup) String() string

type UserChatInfo

type UserChatInfo struct {
	AllGroup      int32                    `protobuf:"varint,20,opt,name=all_group,json=allGroup,proto3" json:"all_group,omitempty"`
	AllGroups     map[int64]*UserChatGroup `` /* 178-byte string literal not displayed */
	MasterGroup   int32                    `protobuf:"varint,22,opt,name=master_group,json=masterGroup,proto3" json:"master_group,omitempty"`
	MasterGroups  map[int64]bool           `` /* 188-byte string literal not displayed */
	EnteringGroup map[int64]bool           `` //entering group process
	/* 191-byte string literal not displayed */
	// contains filtered or unexported fields
}

func (*UserChatInfo) Descriptor deprecated

func (*UserChatInfo) Descriptor() ([]byte, []int)

Deprecated: Use UserChatInfo.ProtoReflect.Descriptor instead.

func (*UserChatInfo) GetAllGroup

func (x *UserChatInfo) GetAllGroup() int32

func (*UserChatInfo) GetAllGroups

func (x *UserChatInfo) GetAllGroups() map[int64]*UserChatGroup

func (*UserChatInfo) GetEnteringGroup

func (x *UserChatInfo) GetEnteringGroup() map[int64]bool

func (*UserChatInfo) GetMasterGroup

func (x *UserChatInfo) GetMasterGroup() int32

func (*UserChatInfo) GetMasterGroups

func (x *UserChatInfo) GetMasterGroups() map[int64]bool

func (*UserChatInfo) ProtoMessage

func (*UserChatInfo) ProtoMessage()

func (*UserChatInfo) ProtoReflect

func (x *UserChatInfo) ProtoReflect() protoreflect.Message

func (*UserChatInfo) Reset

func (x *UserChatInfo) Reset()

func (*UserChatInfo) String

func (x *UserChatInfo) String() string

type UserInfo

type UserInfo struct {
	BasicInfo *UserBasic `protobuf:"bytes,20,opt,name=basic_info,json=basicInfo,proto3" json:"basic_info,omitempty"`
	BlobInfo  *UserBlob  `protobuf:"bytes,21,opt,name=blob_info,json=blobInfo,proto3" json:"blob_info,omitempty"`
	// contains filtered or unexported fields
}

func (*UserInfo) Descriptor deprecated

func (*UserInfo) Descriptor() ([]byte, []int)

Deprecated: Use UserInfo.ProtoReflect.Descriptor instead.

func (*UserInfo) GetBasicInfo

func (x *UserInfo) GetBasicInfo() *UserBasic

func (*UserInfo) GetBlobInfo

func (x *UserInfo) GetBlobInfo() *UserBlob

func (*UserInfo) ProtoMessage

func (*UserInfo) ProtoMessage()

func (*UserInfo) ProtoReflect

func (x *UserInfo) ProtoReflect() protoreflect.Message

func (*UserInfo) Reset

func (x *UserInfo) Reset()

func (*UserInfo) String

func (x *UserInfo) String() string

type UserProfile

type UserProfile struct {
	Uid      int64  `protobuf:"varint,1,opt,name=uid,proto3" json:"uid,omitempty"`
	Name     string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"` //role name
	Addr     string `protobuf:"bytes,3,opt,name=addr,proto3" json:"addr,omitempty"`
	Sex      int32  `protobuf:"varint,4,opt,name=sex,proto3" json:"sex,omitempty"` //1:male 2:female
	Level    int32  `protobuf:"varint,5,opt,name=level,proto3" json:"level,omitempty"`
	HeadUrl  string `protobuf:"bytes,6,opt,name=head_url,json=headUrl,proto3" json:"head_url,omitempty"`
	UserDesc string `protobuf:"bytes,7,opt,name=user_desc,json=userDesc,proto3" json:"user_desc,omitempty"`
	// contains filtered or unexported fields
}

func (*UserProfile) Descriptor deprecated

func (*UserProfile) Descriptor() ([]byte, []int)

Deprecated: Use UserProfile.ProtoReflect.Descriptor instead.

func (*UserProfile) GetAddr

func (x *UserProfile) GetAddr() string

func (*UserProfile) GetHeadUrl

func (x *UserProfile) GetHeadUrl() string

func (*UserProfile) GetLevel

func (x *UserProfile) GetLevel() int32

func (*UserProfile) GetName

func (x *UserProfile) GetName() string

func (*UserProfile) GetSex

func (x *UserProfile) GetSex() int32

func (*UserProfile) GetUid

func (x *UserProfile) GetUid() int64

func (*UserProfile) GetUserDesc

func (x *UserProfile) GetUserDesc() string

func (*UserProfile) ProtoMessage

func (*UserProfile) ProtoMessage()

func (*UserProfile) ProtoReflect

func (x *UserProfile) ProtoReflect() protoreflect.Message

func (*UserProfile) Reset

func (x *UserProfile) Reset()

func (*UserProfile) String

func (x *UserProfile) String() string

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL