Skip to content
Snippets Groups Projects
Commit 350c8bc5 authored by deuce's avatar deuce
Browse files

It's not clear from the binkp/1.1 spec if "A Mailer MAY switch to NR mode at

any moment without notice" means that it won't sent an OPT ND.  Just in case,
handle a -1 offset as though NR mode is enabled when version is 1.1.
parent b33a5747
No related branches found
No related tags found
No related merge requests found
......@@ -412,7 +412,7 @@ BinkP.prototype.session = function()
size = 0;
if (parseInt(args[3], 10) < 0) {
// Non-reliable mode...
if (this.nonreliable) {
if (this.nonreliable || this.ver1_1) {
this.sendCmd(this.command.M_GET, this.escapeFileName(args[0])+' '+args[1]+' '+args[2]+' '+size);
}
else {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment