-
I've been thinking of using Sharppcap with C# as an alternative to PcapPlusPlus for making a cross platform sniffing tool, but I don't want the user to install .NET runtime in order to use the tool. That's why I'd like it to AOT compile. Does Sharppcap support this? |
Beta Was this translation helpful? Give feedback.
Replies: 4 comments 6 replies
-
Windows or Linux? |
Beta Was this translation helpful? Give feedback.
-
After reading https://learn.microsoft.com/en-us/dotnet/core/deploying/ , let me rephrase: is it possible to use sharppcap in AOT compile mode OR self containing mode, meaning the .NET runtime is shipped with the produced binary? |
Beta Was this translation helpful? Give feedback.
-
please keep in mind that if you use self-contained app, the LGPL license of sharppcap, requires that the resulting binary is also distributed under LGPL. |
Beta Was this translation helpful? Give feedback.
-
Didn’t we talk about relicensing at one point? Thoughts on the topic Ayoub?
…On Wed, Nov 8, 2023 at 7:07 PM gardc ***@***.***> wrote:
alright thanks
—
Reply to this email directly, view it on GitHub
<#481 (reply in thread)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AAJH4AFO3QHDEGHZXK5BLNTYDQNEJAVCNFSM6AAAAAA7BU5LDKVHI2DSMVQWIX3LMV43SRDJONRXK43TNFXW4Q3PNVWWK3TUHM3TKMJWGQ3DM>
.
You are receiving this because you are subscribed to this thread.Message
ID: ***@***.***>
|
Beta Was this translation helpful? Give feedback.
currently it works in Windows, but not in Linux (due to different library name in each platform), there is PR #448, that makes it work in Linux, but it breaks Windows support.