GilbertoTheMighty

Results 10 comments of GilbertoTheMighty

I've compiled pcap++ with PCAP_TSTAMP_PRECISION_NANO. Read pcap file, update timespec, write to another file => produces rounded timestamp. 1601234567.000051234 (written time) becomes 1601234567.000051000 in output file acconding to wireshark

[Seems like writePacket does not use this flag](https://github.com/seladb/PcapPlusPlus/blob/5dd6cec932e5dee2d040206c4b17c63994940ed8/Pcap%2B%2B/src/PcapFileDevice.cpp#L555) I think [this](https://github.com/seladb/PcapPlusPlus/blob/5dd6cec932e5dee2d040206c4b17c63994940ed8/Pcap%2B%2B/src/PcapFileDevice.cpp#L613) supposed to be pcap_open_dead_with_tstamp_precision

``` #if defined(PCAP_TSTAMP_PRECISION_NANO) m_PcapDescriptor = pcap_open_dead_with_tstamp_precision(m_PcapLinkLayerType, PCPP_MAX_PACKET_SIZE, PCAP_TSTAMP_PRECISION_NANO); #else m_PcapDescriptor = pcap_open_dead(m_PcapLinkLayerType, PCPP_MAX_PACKET_SIZE); #endif ```

I've also commented *1000 and /1000 in Common++\header\TimespecTimeval.h After these changes I was able to produce pcap file with nanoseconds, which are seen in Wireshark

While AmneziaVPN status is Connected it does not work. No activity, vpn service is not used while browsing.

`Task SubscribeToOrderBookUpdatesAsync` Supports only 25 and 100 depth. Bitfinex says it can also be 1 and 250 https://docs.bitfinex.com/reference#ws-public-books

![image](https://github.com/whistyun/MdXaml/assets/100091917/10b9e3a5-db86-4367-9bb0-dddb81a6b0e4) c# code is not highlighted,

Thank you! Using replace on incoming string did the trick. How can I configure styles for different langs in codeblock?

@Pavpavp were you able to fix this? This is very annoying problem: ![Image](https://github.com/user-attachments/assets/e7849456-4ae0-4c0a-bcfe-fe1b92fcc485)

I managed to render code blocks correctly in lists with preprocessing input markdown, but the list numbering breaks, always staying at 1, anyway it's better than before: ``` string PreprocessMarkdown(string...