()
| 111 | } |
| 112 | |
| 113 | func (c *Conn) writeAuthMoreDataPubkey() error { |
| 114 | data := make([]byte, 4) |
| 115 | data = append(data, MORE_DATE_HEADER) |
| 116 | data = append(data, c.serverConf.pubKey...) |
| 117 | return c.WritePacket(data) |
| 118 | } |
| 119 | |
| 120 | func (c *Conn) writeAuthMoreDataFullAuth() error { |
| 121 | data := make([]byte, 4) |
no test coverage detected