github.com/pf-qiu/concourse/v6@v6.7.3-0.20201207032516-1f455d73275f/tsa/tsacmd/messages.go (about)

     1  package tsacmd
     2  
     3  type execRequest struct {
     4  	Command string
     5  }
     6  
     7  type exitStatusRequest struct {
     8  	ExitStatus uint32
     9  }
    10  
    11  type tcpipForwardRequest struct {
    12  	BindIP   string
    13  	BindPort uint32
    14  }
    15  
    16  type tcpipForwardResponse struct {
    17  	BoundPort uint32
    18  }
    19  
    20  type forwardTCPIPChannelRequest struct {
    21  	ForwardIP   string
    22  	ForwardPort uint32
    23  	OriginIP    string
    24  	OriginPort  uint32
    25  }