mirror of
https://github.com/apache/nuttx.git
synced 2026-06-06 00:14:22 +08:00
configs/same70-xplained/twm4nx/defconfig: Increase packet MTU to 1500.
This commit is contained in:
@@ -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;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -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,
|
||||
|
||||
@@ -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;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -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.
|
||||
*/
|
||||
|
||||
|
||||
Reference in New Issue
Block a user