(conn io.Writer, t string, args ...string)
| 481 | } |
| 482 | |
| 483 | func writeStanza(conn io.Writer, t string, args ...string) error { |
| 484 | s := &format.Stanza{Type: t, Args: args} |
| 485 | return s.Marshal(conn) |
| 486 | } |
| 487 | |
| 488 | func writeStanzaWithBody(conn io.Writer, t string, body []byte) error { |
| 489 | s := &format.Stanza{Type: t, Body: body} |
no test coverage detected
searching dependent graphs…