feat: support mptcp and smux display (#1995)

Corresponding pull request in mihomo: https://github.com/MetaCubeX/mihomo/pull/1646
This commit is contained in:
Chenx Dust
2024-11-16 01:35:22 +08:00
committed by GitHub
parent 3073b4e48e
commit aef96f0d27
4 changed files with 19 additions and 0 deletions

View File

@@ -160,6 +160,16 @@ export const ProxyItemMini = (props: Props) => {
TFO
</TypeBox>
)}
{proxy.mptcp && (
<TypeBox color="text.secondary" component="span">
MPTCP
</TypeBox>
)}
{proxy.smux && (
<TypeBox color="text.secondary" component="span">
SMUX
</TypeBox>
)}
</Box>
)}
</Box>