提交 08d5f6dc 编写于 作者: A Alex Dima

Add connectionToken

上级 c587b388
......@@ -9,6 +9,7 @@ import { IExtensionDescription } from 'vs/platform/extensions/common/extensions'
export interface IRemoteAgentEnvironment {
pid: number;
connectionToken: string;
appRoot: URI;
appSettingsHome: URI;
settingsPath: URI;
......@@ -24,4 +25,4 @@ export interface IRemoteAgentEnvironment {
export interface RemoteAgentConnectionContext {
remoteAuthority: string;
clientId: string;
}
\ No newline at end of file
}
......@@ -18,6 +18,7 @@ export interface IGetEnvironmentDataArguments {
export interface IRemoteAgentEnvironmentDTO {
pid: number;
connectionToken: string;
appRoot: UriComponents;
appSettingsHome: UriComponents;
settingsPath: UriComponents;
......@@ -45,6 +46,7 @@ export class RemoteExtensionEnvironmentChannelClient {
return {
pid: data.pid,
connectionToken: data.connectionToken,
appRoot: URI.revive(data.appRoot),
appSettingsHome: URI.revive(data.appSettingsHome),
settingsPath: URI.revive(data.settingsPath),
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册