FoxiGram/TMessagesProj/jni/voip/webrtc/base/process/process_handle_fuchsia.cc
instant992 8e79f2ee9c FoxiGram: Telegram client with built-in Xray VLESS proxy
Based on Nekogram. Key additions:
- Rebrand to FoxiGram (app name, APK name, applicationId com.foxigram.app)
- Embedded Xray (VLESS+Reality) proxy client via JNI libxray.so
- Bundled hidden one-tap proxies (LTE + WiFi), read-only in UI
- Auto-restore proxy on restart, rebind to active network (LTE/WiFi)
- Server credentials externalized to git-ignored XrayServers.java (+ template)
- libxray Go source included; compiled .so, keystore, google-services.json ignored
2026-06-08 16:41:07 +04:00

37 lines
1 KiB
C++

// Copyright 2017 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "base/process/process_handle.h"
#include <zircon/process.h>
#include <zircon/status.h>
#include <zircon/syscalls.h>
#include "base/logging.h"
namespace base {
ProcessId GetCurrentProcId() {
return GetProcId(GetCurrentProcessHandle());
}
ProcessHandle GetCurrentProcessHandle() {
// Note that zx_process_self() returns a real handle, and ownership is not
// transferred to the caller (i.e. this should never be closed).
return zx_process_self();
}
ProcessId GetProcId(ProcessHandle process) {
zx_info_handle_basic_t basic;
zx_status_t status = zx_object_get_info(process, ZX_INFO_HANDLE_BASIC, &basic,
sizeof(basic), nullptr, nullptr);
if (status != ZX_OK) {
DLOG(ERROR) << "zx_object_get_info failed: "
<< zx_status_get_string(status);
return ZX_KOID_INVALID;
}
return basic.koid;
}
} // namespace base