|  | @@ -74,21 +74,24 @@ namespace Renci.SshNet.Messages.Connection
 | 
											
												
													
														|  |          protected override void LoadData()
 |  |          protected override void LoadData()
 | 
											
												
													
														|  |          {
 |  |          {
 | 
											
												
													
														|  |              var requestName = this.ReadAsciiString();
 |  |              var requestName = this.ReadAsciiString();
 | 
											
												
													
														|  | 
 |  | +
 | 
											
												
													
														|  | 
 |  | +            this.WantReply = this.ReadBoolean();
 | 
											
												
													
														|  | 
 |  | +
 | 
											
												
													
														|  |              switch (requestName)
 |  |              switch (requestName)
 | 
											
												
													
														|  |              {
 |  |              {
 | 
											
												
													
														|  |                  case "tcpip-forward":
 |  |                  case "tcpip-forward":
 | 
											
												
													
														|  |                      this.RequestName = GlobalRequestName.TcpIpForward;
 |  |                      this.RequestName = GlobalRequestName.TcpIpForward;
 | 
											
												
													
														|  | 
 |  | +                    this.AddressToBind = this.ReadString();
 | 
											
												
													
														|  | 
 |  | +                    this.PortToBind = this.ReadUInt32();
 | 
											
												
													
														|  |                      break;
 |  |                      break;
 | 
											
												
													
														|  |                  case "cancel-tcpip-forward":
 |  |                  case "cancel-tcpip-forward":
 | 
											
												
													
														|  |                      this.RequestName = GlobalRequestName.CancelTcpIpForward;
 |  |                      this.RequestName = GlobalRequestName.CancelTcpIpForward;
 | 
											
												
													
														|  | 
 |  | +                    this.AddressToBind = this.ReadString();
 | 
											
												
													
														|  | 
 |  | +                    this.PortToBind = this.ReadUInt32();
 | 
											
												
													
														|  |                      break;
 |  |                      break;
 | 
											
												
													
														|  |                  default:
 |  |                  default:
 | 
											
												
													
														|  |                      break;
 |  |                      break;
 | 
											
												
													
														|  |              }
 |  |              }
 | 
											
												
													
														|  | -
 |  | 
 | 
											
												
													
														|  | -            this.WantReply = this.ReadBoolean();
 |  | 
 | 
											
												
													
														|  | -            this.AddressToBind = this.ReadString();
 |  | 
 | 
											
												
													
														|  | -            this.PortToBind = this.ReadUInt32();
 |  | 
 | 
											
												
													
														|  |          }
 |  |          }
 | 
											
												
													
														|  |  
 |  |  
 | 
											
												
													
														|  |          /// <summary>
 |  |          /// <summary>
 |