Home
last modified time | relevance | path

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

/dports/security/dropbear/dropbear-2020.81/
H A Dcommon-channel.c108 unsigned int transwindow, unsigned int transmaxpacket) { in newchannel() argument
150 newchan->transmaxpacket = transmaxpacket; in newchannel()
727 maxlen = MIN(channel->transwindow, channel->transmaxpacket); in send_msg_channel_data()
913 unsigned int remotechan, transwindow, transmaxpacket; in recv_msg_channel_open() local
929 transmaxpacket = buf_getint(ses.payload); in recv_msg_channel_open()
930 transmaxpacket = MIN(transmaxpacket, TRANS_MAX_PAYLOAD_LEN); in recv_msg_channel_open()
956 channel = newchannel(remotechan, chantype, transwindow, transmaxpacket); in recv_msg_channel_open()
1173 channel->transmaxpacket = buf_getint(ses.payload); in recv_msg_channel_open_confirmation()
H A Dchannel.h57 unsigned int recvmaxpacket, transmaxpacket; member