0
votes
2answers
93 views
How to set the terminal’s size?
How do I get the terminal size in Go. In C it would look like this:
struct ttysize ts;
ioctl(0, TIOCGWINSZ, &ts);
But how to i access TIOCGWINSZ in Go
0
votes
3answers
167 views
Linux ioctl -> how to tell if current IP was obtained by dhcp
Hello all,
I'm fiddling with the sockets ioctl's to get the current interfaces setup and I can already get the IP, interface name, netmask and check if the interface is up or down …
0
votes
8answers
166 views
“inappropriate ioctl for device”
Hi All,
I have a perl script running in a aix box.
The script tries to open a file from a certain directory and it fails to read the file because file has no read permission.
bu …
0
votes
2answers
683 views
Calling DeviceIoControl from C# with IOCTL_DVD_* Control Codes
I am trying to call DeviceIoControl from C# for IOCTL_DVD_* control codes. Having read a lot of information and trying a number of examples I have not made much progress.
What I …
1
vote
2answers
57 views
Getting essid via ioctl in ruby
To avoid relying on the wireless tools I want to get the essid directly from the device with ioctl, in C this wouldn't be a problem, but in Ruby it's quite different.
The problem …
0
votes
4answers
153 views
Why is ioctl() not blocking?
I have written code for passing file descriptors between unrelated processes using streams.
The server should wait for the client to send a file descriptor.
Here is the server code …
0
votes
1answer
76 views
how to find keyboard in /dev on osx
On linux / ubuntu, the keyboard and mouse devices are found
in /dev/input/by-path/
Where is the keyboard device mounted in osx?
I added a usb keyboard, and no devices got added i …
4
votes
2answers
81 views
Adding custom struct types to strace
I'm trying to reverse-engineer a user-mode shared object that interacts with a kernel driver via ioctl syscalls. I have a header file with definitions for the kernel driver's ioct …
0
votes
1answer
115 views
unlocked_ioctl vs normal ioctl
In my driver's file_operations structure, I have:
struct file_operations Fops = {
read: device_read,
write: device_write,
unlocked_ioctl: device_ioctl,
...
};
I.e …
3
votes
3answers
135 views
Using Linux ioctl with Mono
I'm trying to do ioctl command through Mono framework, but I cant find what I'm looking for.
I'm trying to send command to a DVB card that has a kernel module. I hope someone can …
0
votes
1answer
151 views
Behavior of SIO_FLUSH
When SIO_FLUSH socket ioctl is used in a Windows environment (in user space), I am confused as to what happens. Does this: (1) completely discard the data from the TCP/IP send que …
1
vote
1answer
274 views
How does iwlist() command scans the wireless networks??
I want to know how iwlist command scans the wireless networks available, in linux. I read its source code and there was an ioctl call using SIOCSIWSCAN to trigger the scan and SIOC …
1
vote
1answer
265 views
Handling User-Break (UART Break) on a /dev/tty device in Linux
Here is some code sample, but the issue is that the signal handler is not called when a 'break' is sent over the serial line with 'putty'.
#include <sys/ioctl.h>
#include &l …
0
votes
1answer
147 views
V4L problem with VIDIOCGCAP ioctl call
Hi guys,
I'm having some issue working with V4L (the API that provides unified access to various video capturing for Linux). I'm tryng to make a VIDIOCGCAP ioctl call, but I get an …
0
votes
1answer
385 views
ioctl FIOREAD on raw socket in Linux
I have an implementation which uses ioctl(FIONREAD) to determine the number of pending octets in the Raw Socket receive buffer in Linux and then call a recv on that.
I read somewh …
