Home
last modified time | relevance | path

Searched refs:localWindow (Results 1 – 2 of 2) sorted by relevance

/external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/channel/
DChannel.java117 int localWindow = 0; /* locally, we use a small window, < 2^31 */ field in Channel
153 this.localWindow = CHANNEL_BUFFER_SIZE; in Channel()
DChannelManager.java378 …pcoc = new PacketChannelOpenConfirmation(c.remoteID, c.localID, c.localWindow, c.localMaxPacketSiz… in sendOpenConfirmation()
579 PacketOpenDirectTCPIPChannel dtc = new PacketOpenDirectTCPIPChannel(c.localID, c.localWindow, in openDirectTCPIPChannel()
602 …PacketOpenSessionChannel smo = new PacketOpenSessionChannel(c.localID, c.localWindow, c.localMaxPa… in openSessionChannel()
816 if (c.localWindow < len) in msgChannelExtendedData()
819 c.localWindow -= len; in msgChannelExtendedData()
1008 if (c.localWindow < ((Channel.CHANNEL_BUFFER_SIZE + 1) / 2)) in getChannelData()
1013 increment = minFreeSpace - c.localWindow; in getChannelData()
1014 c.localWindow = minFreeSpace; in getChannelData()
1089 if (c.localWindow < len) in msgChannelData()
1092 c.localWindow -= len; in msgChannelData()