mirror of
https://github.com/pomerium/pomerium.git
synced 2025-07-04 02:18:42 +02:00
## Summary Adds the envoy listener config logic for ssh. ## Related issues <!-- For example... - #159 --> ## User Explanation <!-- How would you explain this change to the user? If this change doesn't create any user-facing changes, you can leave this blank. If filled out, add the `docs` label --> ## Checklist - [ ] reference any related issues - [ ] updated unit tests - [ ] add appropriate label (`enhancement`, `bug`, `breaking`, `dependencies`, `ci`) - [ ] ready for review
16 lines
538 B
Go
16 lines
538 B
Go
package authorize
|
|
|
|
import (
|
|
"google.golang.org/grpc/codes"
|
|
"google.golang.org/grpc/status"
|
|
|
|
extensions_ssh "github.com/pomerium/envoy-custom/api/extensions/filters/network/ssh"
|
|
)
|
|
|
|
func (a *Authorize) ManageStream(extensions_ssh.StreamManagement_ManageStreamServer) error {
|
|
return status.Errorf(codes.Unimplemented, "method ManageStream not implemented")
|
|
}
|
|
|
|
func (a *Authorize) ServeChannel(extensions_ssh.StreamManagement_ServeChannelServer) error {
|
|
return status.Errorf(codes.Unimplemented, "method ServeChannel not implemented")
|
|
}
|