Skip to content

Commit 9e2d0bd

Browse files
authored
Merge pull request #51 from gregw/issue-50
Fix #50 buffer consumed on flow controlled write
2 parents 8348819 + f96f134 commit 9e2d0bd

File tree

1 file changed

+11
-4
lines changed

1 file changed

+11
-4
lines changed

src/main/java/jnr/enxio/channels/Common.java

+11-4
Original file line numberDiff line numberDiff line change
@@ -92,18 +92,25 @@ long read(ByteBuffer[] dsts, int offset, int length)
9292

9393
int write(ByteBuffer src) throws IOException {
9494

95-
ByteBuffer buffer = ByteBuffer.allocate(src.remaining());
96-
95+
int r = src.remaining();
96+
97+
ByteBuffer buffer = ByteBuffer.allocate(r);
98+
9799
buffer.put(src);
98-
100+
99101
buffer.position(0);
100102

101103
int n = Native.write(_fd, buffer);
102104

103-
if (n < 0) {
105+
if (n >=0 ) {
106+
if (n < r) {
107+
src.position(src.position()-(r-n));
108+
}
109+
} else {
104110
switch (Native.getLastError()) {
105111
case EAGAIN:
106112
case EWOULDBLOCK:
113+
src.position(src.position()-r);
107114
return 0;
108115
default:
109116
throw new IOException(Native.getLastErrorString());

0 commit comments

Comments
 (0)