Skip to main content
-1 votes
0 answers
37 views

I am using arch linux kde plasma wayland so the problem i am facing is that whenever i turn on my microphone for voice typing or like voice search or anything it doesn't works but same i try on ...
Aashutosh_31's user avatar
0 votes
0 answers
95 views

I'm interested to understand more about performing file IO operations with systems programming languages in a way which does not use both a kernel space buffer and a user space buffer. Specifically I ...
user2138149's user avatar
  • 18.8k
-3 votes
0 answers
42 views

I implemented a TLS 1.3 server in C with OpenSSL 3.5.0 with ktls enabled. I see an issue with keyupdate which I don't see on userspace tls. I use OpenSSL 3.5.0 s_client as client. I send keyupdate ...
sreedhar's user avatar
2 votes
1 answer
38 views

I am implementing a destination NAT-like behavior by hooking into NF_INET_PRE_ROUTING and NF_INET_LOCAL_OUT to modify the destination IP address and recalculate the checksums. nf_tracer_handler(void *...
yan3ku's user avatar
  • 25
0 votes
0 answers
23 views

environment OS: Arch Linux x86_64 Host: Windows Subsystem for Linux - archlinux (2.6.2.0) Kernel: Linux 6.6.87.2-microsoft-standard-WSL2 compiler: aarch64-linux-gnu-gcc 15.1.0 Using built-in specs. ...
Bill's user avatar
  • 1
Advice
0 votes
2 replies
33 views

It's seems easy to find examples of using dup2() to cause output (originally) intended for stdout to instead go to a socket: char *stdoutMsg = "This message will be sent to stdout\n"; write(...
ags's user avatar
  • 729
3 votes
2 answers
111 views

I'm a computer science undergraduate student studying Linux kernel USB device drivers. While analyzing the skel_read() function in usb-skeleton.c, I noticed what seems like inconsistent retry logic. I'...
const's user avatar
  • 39
0 votes
0 answers
70 views

Desired behavior Have the central make a connection with the peripheral. The "trouBLE" I run in to The central code returns directly a BleHost(Timeout) error, even with adjusted settings I'...
mark_dj's user avatar
  • 994
3 votes
1 answer
114 views

I'm building a shell in Java and currently implementing pipeline logic. For inter-process communication, I've created this class: public class PipeConnector implements Runnable { private final ...
lowkkid's user avatar
  • 43