()
| 1158 | } |
| 1159 | |
| 1160 | func (ss *ServerSession) ID() string { |
| 1161 | if c, ok := ss.mcpConn.(hasSessionID); ok { |
| 1162 | return c.SessionID() |
| 1163 | } |
| 1164 | return "" |
| 1165 | } |
| 1166 | |
| 1167 | // Ping pings the client. |
| 1168 | func (ss *ServerSession) Ping(ctx context.Context, params *PingParams) error { |