MCPcopy Index your code
hub / github.com/tinode/chat / pbClientCredsSerialize

Function pbClientCredsSerialize

server/pbconverter.go:1119–1130  ·  view source on GitHub ↗
(in []MsgCredClient)

Source from the content-addressed store, hash-verified

1117}
1118
1119func pbClientCredsSerialize(in []MsgCredClient) []*pbx.ClientCred {
1120 if in == nil {
1121 return nil
1122 }
1123
1124 out := make([]*pbx.ClientCred, len(in))
1125 for i := range in {
1126 out[i] = pbClientCredSerialize(&in[i])
1127 }
1128
1129 return out
1130}
1131
1132func pbClientCredDeserialize(in *pbx.ClientCred) *MsgCredClient {
1133 if in == nil {

Callers 1

pbCliSerializeFunction · 0.85

Calls 1

pbClientCredSerializeFunction · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…