OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:remoteID
(Results
1 - 2
of
2
) sorted by null
/external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/channel/
ChannelManager.java
320
msg[1] = (byte) (c.
remoteID
>> 24);
321
msg[2] = (byte) (c.
remoteID
>> 16);
322
msg[3] = (byte) (c.
remoteID
>> 8);
323
msg[4] = (byte) (c.
remoteID
);
350
msg[1] = (byte) (c.
remoteID
>> 24);
351
msg[2] = (byte) (c.
remoteID
>> 16);
352
msg[3] = (byte) (c.
remoteID
>> 8);
353
msg[4] = (byte) (c.
remoteID
);
364
log.debug("Sent EOF (Channel " + c.localID + "/" + c.
remoteID
+ ")");
378
pcoc = new PacketChannelOpenConfirmation(c.
remoteID
, c.localID, c.localWindow, c.localMaxPacketSize)
[
all
...]
Channel.java
69
int
remoteID
= -1;
Completed in 42 milliseconds