What term should I use to describe situations (or bugs in software) caused by read, write, send, recv doing less work than expected?
For example, write(fd, "123456", 6);
may return 3 and we need to write "456" to finish our work.
/* Still in doubt between "short write/read" and "data truncation" after reading answers. */