Search found 1307 matches

by hidnplayr
Mon Apr 29, 2024 7:42 pm
Forum: Network
Topic: Драйвера для Realtek RTL8125BG
Replies: 4
Views: 603

Re: Драйвера для Realtek RTL8125BG

Unfortunately, don't have this hardware so I cannot test it.
I could add this type to allowed device list, so you can test it. But there is no guarantee...
by hidnplayr
Sun Apr 28, 2024 8:33 pm
Forum: Network
Topic: Драйвера для Realtek RTL8125BG
Replies: 4
Views: 603

Re: Драйвера для Realtek RTL8125BG

Currently, RTL8125 is not supported.
It seems however possible to add support for it in the existing KolibriOS RTL8169 driver
by hidnplayr
Sun Mar 10, 2024 9:41 pm
Forum: Network
Topic: SSH client
Replies: 21
Views: 21976

Re: SSH client

V0.12 (svn #9991) encryption and authentication algorithms are no longer hard-coded and will now be selected automatically, as it should be.
by hidnplayr
Sat Mar 09, 2024 11:12 pm
Forum: Network
Topic: SSH client
Replies: 21
Views: 21976

Re: SSH client

V0.11 (svn #9990) now adds support for encrypt-then-mac modes. (Only tested hmac-sha2-256-etm so far)
by hidnplayr
Wed Mar 06, 2024 11:25 pm
Forum: Network
Topic: SSH client
Replies: 21
Views: 21976

Re: SSH client

V0.10 (svn #9987) now uses the ChaCha20-Poly1305 algorithm.
by hidnplayr
Tue Mar 05, 2024 12:51 pm
Forum: Network
Topic: IRC client
Replies: 26
Views: 22592

Re: IRC client

hidnplayr wrote: Mon Mar 04, 2024 7:14 pm There is however the issue that users are not listed for &bitlbee channel
Fixed in 0.36 (#9984)
by hidnplayr
Mon Mar 04, 2024 7:14 pm
Forum: Network
Topic: IRC client
Replies: 26
Views: 22592

Re: IRC client

fanbass wrote: Sat Feb 04, 2023 12:16 pm Через клиент не смог подключиться к testing.bitlbee.org
Смотри файл.
После этого клиент зависает.
Could not reproduce described problem on 0.35c.
There is however the issue that users are not listed for &bitlbee channel
by hidnplayr
Sat Mar 02, 2024 11:06 am
Forum: English
Topic: M68K Port
Replies: 2
Views: 2158

Re: M68K Port

You cannot 'port' KolibriOS to your M68K computer. KolibriOS kernel, drivers, libraries and applications are mostly written in x86 assembly without portability in mind, tying it very tightly to this specific architecture. In practice it would mean a complete rewrite of everything KolibriOS, leaving ...
by hidnplayr
Mon Feb 26, 2024 10:22 pm
Forum: Miscellaneous
Topic: Proposing to leave only the Russian and English versions of the distribution
Replies: 8
Views: 1008

Re: Proposing to leave only the Russian and English versions of the distribution

French and Belgian keyboard layouts in KolibriOS are inaccurate because they are encoded in CP866 which lacks symbols such as ç, è, é.
by hidnplayr
Mon Feb 19, 2024 11:41 pm
Forum: Coding
Topic: FIX for 149 bug "unstable IRCC" - please merge this patch to SVN
Replies: 6
Views: 1052

Re: FIX for 149 bug "unstable IRCC" - please merge this patch to SVN

Actually works on my computer this time :)
ircc.7z (29.85 KiB)
Downloaded 206 times
by hidnplayr
Sun Feb 18, 2024 9:49 pm
Forum: Coding
Topic: FIX for 149 bug "unstable IRCC" - please merge this patch to SVN
Replies: 6
Views: 1052

Re: FIX for 149 bug "unstable IRCC" - please merge this patch to SVN

Please try like this instead: (inc edx moved up) ;------------------------------------------- ; Count characters until 0, 10, 13 or 3 byte push edx xor esi, esi dec esi .next_char: inc esi cmp esi, [textbox_width] je .cnt_done mov al, byte[edx] inc edx cmp al, 13 jbe .cnt_done test al, 10000000b jz ...
by hidnplayr
Sun Feb 18, 2024 9:45 pm
Forum: Coding
Topic: FIX for 149 bug "unstable IRCC" - please merge this patch to SVN
Replies: 6
Views: 1052

Re: FIX for 149 bug "unstable IRCC" - please merge this patch to SVN

Aha, good that you sent a reminder! It seems quite obvious to me today that if there are two non-printable characters in a row, code is stuck in an endless loop here: ;------------------------------------------- ; Count characters until 0, 10, 13 or 3 byte push edx xor esi, esi dec esi .next_char: i...
by hidnplayr
Fri Feb 02, 2024 9:18 pm
Forum: Emulators
Topic: Эмулятор ядра OS Windows
Replies: 58
Views: 58360

Re: Эмулятор ядра OS Windows

... There are some problems in the current design with thread-safety (locking) and possible use-after-free cases.. For causes of the use-after-free. Сan be using fixed or dynamically signature (currentID) in the socket data. When creating a socket, write the signature. Before closing a socket, del ...
by hidnplayr
Wed Jan 31, 2024 11:28 pm
Forum: Emulators
Topic: Эмулятор ядра OS Windows
Replies: 58
Views: 58360

Re: Эмулятор ядра OS Windows

Сейчас делаю интеграцию network функций 75... в ws2_32.dll винды и столкнулся с такой проблемой. Как только запустил работу винды с сокетами у меня через минуту стала падать система Колибри из-за нехватки памяти в ядре. You got the basics right. The reason socket_free is commented out is because st...