}
public boolean nextAuthenticationStep(Buffer fromServer, List<Buffer> toServer) throws SQLException {
toServer.clear();
if ((fromServer.getByteBuffer()[0] & 0xff) == 4) {
Buffer bresp = new Buffer(StringUtils.getBytes(this.password));
toServer.add(bresp);
} else {
Buffer bresp = new Buffer(StringUtils.getBytes("yes, of course"));
toServer.add(bresp);
}
return true;
}