Skip to content

Commit

Permalink
[dev] rpc server and client tests
Browse files Browse the repository at this point in the history
  • Loading branch information
capric8416 committed Jul 8, 2024
1 parent c9899a1 commit b88adff
Show file tree
Hide file tree
Showing 8 changed files with 2,780 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "quic_pb3_server",
"type": "cppvsdbg",
"request": "launch",
"program": "${workspaceRoot}/target/debug/quic_pb3_rpc_server.exe",
"args": [],
"stopAtEntry": false,
"cwd": "${workspaceRoot}",
"environment": [],
"externalConsole": true
},
{
"name": "quic_pb3_client",
"type": "cppvsdbg",
"request": "launch",
"program": "${workspaceRoot}/target/debug/quic_pb3_rpc_client.exe",
"args": ["https://localhost:4433/quic_pb3_rpc_server.pdb"],
"stopAtEntry": false,
"cwd": "${workspaceRoot}",
"environment": [],
"externalConsole": true
},
]
}
Loading

0 comments on commit b88adff

Please sign in to comment.