-
Notifications
You must be signed in to change notification settings - Fork 756
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Give an option to have VSCode act as the server that you'd connect to from delve when you specify the --client-addr
when running dlv dap`.
#3559
Comments
Please tell us why you need other than the existing remote debugging paths. There are two options. https://github.com/golang/vscode-go/wiki/debugging#remote-debugging ps. All the dlv dap features were designed/implemented to be used in the VS Code (and our team is the original contributor to |
I'll just quote myself:
My understanding is that
What are you using vscode-go/extension/src/goDebugFactory.ts Lines 379 to 384 in bd65f44
vscode-go/extension/src/goDebugFactory.ts Lines 439 to 452 in bd65f44
Shouldn't it be possible to achieve the same running |
You don't need
No, I added In your case, I wonder if unix socket support (#3216) may help instead. |
But what if that somewhere happens to be a machine whose router and firewall configurations won't allow me to use a port to listen? I could still debug the program, but only if VSCode were the one acting as a server. But that ain't happening because I guess I can connect to the machine using VSCode's remote development plugins and send the source code to the machine and debug from there instead of asking you to implement this feature to be able to debug directly on my personal computer instead.
I need help to understand how could unix sockets possibly offer any help to connect to a remote machine when they are meant for interprocess communication on the same machine. Other than not having to listen to any port if I were to use VSCode remote development plugin to connect to the machine, but that would imply that you aren't really understanding my problem. I just wondered if it would be possible to implement a feature that felt like should be there because that seemed like what |
Is your feature request related to a problem? Please describe.
I want to be able to debug a program in a remote machine, but I don't have access to the firewall and router to open a port that I would specify with
--listen
when runningdlv dap
.Describe the solution you'd like
I'd like to be able to specify a port VSCode should listen to for connections so I can use
dlv dap --client-addr
Describe alternatives you've considered
I could create a tunnel to the remote machine or send the source code and open VSCode and connect with SSH, but I think it would be more appropriate if we were able to actually use a feature that is already available in
dlv dap
for this kind of thing.Additional context
N/A
The text was updated successfully, but these errors were encountered: