configs/same70-xplained/twm4nx/defconfig: Increase packet MTU to 1500.

This commit is contained in:
Gregory Nutt
2019-05-03 10:45:38 -06:00
parent 34e62de4dd
commit 03f345b38c
5 changed files with 9 additions and 8 deletions
+2 -2
View File
@@ -405,7 +405,7 @@ int vnc_raw(FAR struct vnc_session_s *session, FAR struct nxgl_rect_s *rect)
updheight = srcheight;
}
/* Loop until this horizontal swath has sent to the VNC client.
/* Loop until this horizontal swath has been sent to the VNC client.
* Start with the leftmost pixel and transfer rectangles
* horizontally with width of destwidth until all srcwidth
* columns have been transferred (the last rectangle may be
@@ -504,4 +504,4 @@ int vnc_raw(FAR struct vnc_session_s *session, FAR struct nxgl_rect_s *rect)
}
return OK;
}
}
+1 -1
View File
@@ -280,7 +280,7 @@ int vnc_receiver(FAR struct vnc_session_s *session)
ginfo("Received FramebufferUpdateRequest\n");
/* Read the rest of the SetPixelFormat message */
/* Read the rest of the FramebufferUpdateRequest message */
ret = vnc_read_remainder(session,
sizeof(struct rfb_fbupdatereq_s) - 1,
+3 -3
View File
@@ -196,8 +196,8 @@ ssize_t vnc_rre32(FAR struct vnc_session_s *session,
* rect - Describes the rectangle in the local framebuffer.
*
* Returned Value:
* Zero is returned if RRE coding was not performed (but not error was)
* encountered. Otherwise, the size of the framebuffer update message
* Zero is returned if RRE coding was not performed (but no error was
* encountered). Otherwise, the size of the framebuffer update message
* is returned on success or a negated errno value is returned on failure
* that indicates the nature of the failure. A failure is only
* returned in cases of a network failure and unexpected internal failures.
@@ -315,4 +315,4 @@ int vnc_rre(FAR struct vnc_session_s *session, FAR struct nxgl_rect_s *rect)
}
return 0;
}
}
+2 -2
View File
@@ -653,7 +653,7 @@ int vnc_update_rectangle(FAR struct vnc_session_s *session,
update->whupd = whupd;
nxgl_rectcopy(&update->rect, &intersection);
/* Add the upate to the end of the update queue. */
/* Add the update to the end of the update queue. */
vnc_add_queue(session, update);
@@ -665,7 +665,7 @@ int vnc_update_rectangle(FAR struct vnc_session_s *session,
sched_unlock();
}
/* Since we ignore bad rectangles and wait for updata structures, there is
/* Since we ignore bad rectangles and wait for update structures, there is
* really no way a failure can occur.
*/