~ruther/NosSmooth

ref: ab84d2f44498c9563c164ed2ebe9bfe941b569d9 NosSmooth/Pcap/NosSmooth.Pcap/TcpConnection.cs -rw-r--r-- 546 bytes
ab84d2f4 — Rutherther feat(pcap): add tcp connection to pid helpers 2 years ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
//
//  TcpConnection.cs
//
//  Copyright (c) František Boháček. All rights reserved.
//  Licensed under the MIT license. See LICENSE file in the project root for full license information.

using System.Diagnostics;
using System.Diagnostics.CodeAnalysis;

namespace NosSmooth.Pcap;

[SuppressMessage("StyleCop.CSharp.NamingRules", "SA1313:Parameter names should begin with lower-case letter", Justification = "Fix this.")]
public record struct TcpConnection
(
    long LocalAddr,
    int LocalPort,
    long RemoteAddr,
    int RemotePort
);
Do not follow this link