(dst []byte)
| 17 | } |
| 18 | |
| 19 | func (g *GSSResponse) Encode(dst []byte) ([]byte, error) { |
| 20 | dst, sp := beginMessage(dst, 'p') |
| 21 | dst = append(dst, g.Data...) |
| 22 | return finishMessage(dst, sp) |
| 23 | } |
| 24 | |
| 25 | // MarshalJSON implements encoding/json.Marshaler. |
| 26 | func (g *GSSResponse) MarshalJSON() ([]byte, error) { |
nothing calls this directly
no test coverage detected