feat: 信令抓包tshark解析pcap

This commit is contained in:
TsMask
2024-09-03 11:05:58 +08:00
parent 0080e9c26e
commit c1a3ce8068
13 changed files with 11261 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
/**
* worker文件-静态资源文件路径
*/
const baseUrl = import.meta.env.VITE_HISTORY_BASE_URL;
export const scriptUrl = `${
baseUrl.length === 1 && baseUrl.indexOf('/') === 0
? ''
: baseUrl.indexOf('/') === -1
? '/' + baseUrl
: baseUrl
}/wiregasm/worker.js`;