-
Notifications
You must be signed in to change notification settings - Fork 21
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
has been added optional parameter MaxPacketSize #1
base: master
Are you sure you want to change the base?
Conversation
Signed-off-by: Dmitriy Scherbak <[email protected]>
@@ -72,8 +73,27 @@ do_old_auth(Sock, RecvPid, SeqNum, User, Password, Salt1, LogFun) -> | |||
%% Returns : result of p1_mysql_conn:do_recv/3 | |||
%%-------------------------------------------------------------------- | |||
do_new_auth(Sock, RecvPid, SeqNum, User, Password, Salt1, Salt2, LogFun) -> | |||
do_new_auth(Sock, RecvPid, SeqNum, User, Password, Salt1, Salt2, undefinded, LogFun) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
That undefinded
value here is suspicious.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is it still hardcoded value MaxPacketSize (~1mb)?
Hi @dscherbak, many thanks for your contribution! In order for us to evaluate and accept your PR, we ask that you sign a contribution license agreement. It's all electronic and will take just minutes. |
You did it @dscherbak! Thank you for signing the ProcessOne Contribution License Agreement. We will have a look at your contribution! |
@prefiks: Can you look? |
Use MaxPacketSize optional parameter instead of using hard coded value.