Tagged Questions
The filedescriptor tag has no wiki summary.
8
votes
7answers
2k views
How to iterate through a fd_set
I'm wondering if there's an easy way to iterate through a fd_set? The reason I want to do this is to not having to loop through all connected sockets, since select() alters these fd_sets to only ...
6
votes
2answers
4k views
What is the theoretical maximum number of open TCP connections that a modern Linux box can have
Assuming infinite performance from hardware, can a Linux box support >65536 open TCP connections?
I understand that the number of ephemeral ports (<65536) limits the number of connections from one ...
3
votes
2answers
600 views
Range for FD (File Descriptor) in Linux [closed]
Possible Duplicate:
Is 0 or 1 valid return values for socket() function call
what is the range for FD(File Descriptor)?
For example :
int sockfd = socket(AF_INET, SOCK_STREAM, 0);
or
...
3
votes
2answers
779 views
Example for using Python Twisted with File Descriptors
I'm looking to use twisted to control communication across Linux pipes (os.pipe()) and fifos (os.mkfifo()) between a master process and a set of slave processes. While I'm positive tat it's possible ...
2
votes
2answers
144 views
How would I assign multiple MMAP's from single file descriptor?
So, for my final year project, I'm using Video4Linux2 to pull YUV420 images from a camera, parse them through to x264 (which uses these images natively), and then send the encoded stream via Live555 ...
2
votes
1answer
94 views
c++ socket question
When I get a new file descriptor from accept() and fork a new process directly after that does the new process get the file descriptor? Second in the parent process can I close the descriptor or will ...
2
votes
2answers
333 views
What's the difference between socket and HANDLE in Windows?
I'm trying to make a Linux server running in Windows.
Socket and file descriptor are treated the same in Linux.
Some system api are avaliable for both socket and file descriptor.
However, I deal ...
2
votes
1answer
30 views
Ensure a file is not changed while trying to remove it
In a POSIX environment, I want to remove a file from disk, but calculate its checksum before removing it, to make sure it was not changed. Is locking enough? Should I open it, unlink, calculate ...
2
votes
2answers
1k views
fopen problem - too many open files
I have a multithreaded application running on Win XP. At a certain stage one of a threads is failing to open an existing file using fopen function. _get_errno function returns EMFILE which means Too ...
1
vote
4answers
425 views
Finding open file descriptors for a process linux ( C code )?
I wanted to find all fds opened for a process in linux.
Can I do it with glib library functions ?
1
vote
2answers
2k views
Stream live video from phone to phone using socket fd
I am new to android programming and have found myself stuck I have been researching various ways to stream live video from phone to phone and seem to have it mostly functional, except of course the ...
1
vote
1answer
115 views
4-Argument-Select-Question
From SELECT_TUT:
"... is used to efficiently monitor multiple file descriptors, to see if any of them is, or becomes, "ready"; that is, to see whether I/O becomes possible, or an "exceptional ...
1
vote
2answers
3k views
Exception when calling setDataSource(FileDescriptor) method (failed.: status=0x80000000)
I'm developing a video streaming application and I'm getting stuck when calling set setDataSource with a FileDescriptor.
I want my application to play the video as it is being downloaded, so once I ...
1
vote
2answers
602 views
Python persistent socket connection
I'm new to python :) I would like to create persistent socket. I tried to do this using file descriptors. What I tried is:
Open a socket socket connection s = socket.socket(socket.AF_INET, ...
1
vote
2answers
260 views
Duplicate file descriptor after popen
I am using popen to execute a command under linux, then 4 process wile use the same output.
I am trying to duplicate the file descriptor again to pass it to each process.
here is my code:
FILE* ...
1
vote
1answer
340 views
Increasing the number of file descriptors in Linux
I have a long running process which monitors the system and prints periodic logs. If I let it run for longer than 10-15 minutes, it exits with a message saying:
Too many open files.
The program is ...
1
vote
3answers
4k views
How to use the select() function in socket programming?
The prototype is:
int select (int nfds,
fd_set *read-fds,
fd_set *write-fds,
fd_set *except-fds,
struct timeval *timeout);
I've been struggling to ...
1
vote
1answer
989 views
Opening pipe connection to a file descriptor in C#
I have a legacy app where it reads message from a client program from file descriptor 3. This is an external app so I cannot change this. The client is written in C#. How can we open a connection to a ...
0
votes
0answers
47 views
how to get ParcelFileDescriptor for file content?
I use eclipse-indigo and android 2.3.3_r1 and I download a string from a server in network.
It is the content of “docx” file.
Can I receive a ParcelFileDescritor from it? I guess that MemoryFile can ...
0
votes
2answers
174 views
Java / Tomcat and file descriptor limits?
Does Java have any synthetic upper limits on the amount of open files a given process can use? I have set the system wide open files limit at 20000 but am still receiving FD too many open files ...
0
votes
1answer
317 views
c read() causing bad file descriptor error
Context for this is that the program is basically reading through a filestream, 4K chunks at a time, looking for a certain pattern. It starts by reading in 4k, and if doesn't find the pattern there, ...
0
votes
2answers
199 views
Opera leaves long polling socket(s) open
We have a problem with long polling and opera. I myself am a c-programmer and have developed a customized http-daemon for our needs. In this case we needed a long polling server that would be able to ...
0
votes
3answers
379 views
How to open / use a file descriptor
I have a particular problem, I have some program that I cannot modify but that provides some functionality I'd like to use inside office. So I am writing a plugin for Office that takes my document, ...
0
votes
1answer
198 views
What's the use of FileDescriptor class in Java and its in,out and err methods?
What's the use of the FileDescriptor class in Java ? We can only obtain it with the getFD() methods on streams and then we can use the obtained FD to create another instance of, say, FileInputStream ...
0
votes
4answers
134 views
Why does the following code raise a SegFault. c(Linux)
This a code that would reverse the data of a document and save it in the same document itself.
However I am getting a Segmentation Fault.Please Help,I don't know why it gives a SegFault.
#include ...
0
votes
3answers
151 views
Problem in code with File Descriptors. C (Linux)
I've written code that should ideally take in data from one document, encrypt it and save it in another document.
But when I try executing the code it does not put the encrypted data in the new file. ...
0
votes
4answers
2k views
C: how to redirect stderr from System-command to stdout or file?
The shell command $ avrdude -c usbtiny outputs text to stderr. I cannot read it with commmands such as head-less-more cos it is not stdout. I want the text to stdout or to a file. How can I do it in ...