The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
1k views

how to do non blocking accept() in Python?

I cannot use threads thus I want to write a server program that can be interrupted after a while: d = show_non_modal_dialog("serving clients") s = socket(...) s.bind(...) s.listen() while ...
0
votes
2answers
800 views

Unblocking accept()

I have a blocking call to accept(). From another thread I close the socket, hoping that it'll unblock the accept() call, which it does but I have a case when it doesn't: e.g. thread A enters accept(), ...
1
vote
2answers
153 views

Creating a local server visible through firewalls

I have a local server written in C++ listening to inbound TCP connects using plain socket ::accept() and UDP recvfrom(). I have two problems with this that I wish to solve: Can I programatically ...
1
vote
2answers
3k views

Java “Printer is not accepting jobs” old Brother printers

I have client which has a problem with printing from JAVA applications, using old Brother printers. The exception he gets is "Printer is not accepting jobs". Other applications (not java ...
0
votes
1answer
372 views

how can I restrict django ImageFieldFile to accept input only Image files from browser?

I've used django ImageFieldFile, from django.db.models.fields.files import ImageFieldFile now I want to restrict the user to use only Image files when uploading from browser
1
vote
2answers
2k views

WinSock best accept() practices

Imagine you have a server which can handle only one client at a time. The server uses WSAAsyncSelect to be notified of new connections. In this case, what is the best way of handling FD_ACCEPT ...
1
vote
1answer
245 views

WSACONNREFUSED when connecting to server

I'm currently working on a server. I know that the client side is working (I can connect to www.google.com on port 80, for example), but the server is not functioning correctly. The socket has ...
1
vote
3answers
2k views

in socket programming, can accept() the same listening socket in multi-process(thread)?

i.e. open a listening socket in parent process call epoll_wait(listening_socket) in child1,child2,child3.... call accept in each child if there is connection request
1
vote
1answer
4k views

socket.accept error 24: To many open files

I have a problem with open files under my Ubuntu 9.10 when running server in Python2.6 And main problem is that, that i don't know why it so.. I have set ulimit -n = 999999 net.core.somaxconn = ...
2
votes
2answers
543 views

Why would Linux reuse a file descriptor allocated by pipe()

I'm seeing an issue using both sockets and pipes in Linux. Specifically, we call pipe(), which allocates the next two available file descriptors... let's say 10 and 11. Then we call accept() on a ...
7
votes
3answers
4k views

Socket listen doesn't unbind in C++ under linux

I have a socket that listens on some port. I send the SIGSTOP signal to the thread that waits on the port(using accept) and terminate it. then I close the fd of the socket that I waited on. But for ...
0
votes
4answers
1k views

Java socket accept queue length

According to the Sun's documentation on ServerSocket: The maximum queue length for incoming connection indications (a request to connect) is set to 50. If a connection indication arrives when the ...
0
votes
2answers
2k views

accept/epoll problem

I have this code that uses epoll and it has a problem. When I run it, it gives output: Server-socket() is OK... Server-bind() is OK... 3 4 accept: Invalid argument I'm running it on ubuntu linux, ...
1
vote
2answers
2k views

Accept SSL Certificate in vb6 using the Webbrowser control

The Problem: I am creating a vb6 application that will connect to a particular web service located on a a HTTPS site. The problem is, the HTTPS site I'm accessing requires all request to accept it's ...
6
votes
2answers
2k views

Rejecting a TCP connection before it's being accepted?

There are 3 different accept versions in winsock. Aside from the basic accept which is there for standard compliance, there's also AcceptEx which seems the most advanced version (due to it's ...
1
vote
2answers
453 views

Set Response format inside a function according to Accept header and not outside with ResponseFormat = WebMessageFormat.Json in REST

i am using the Plain old XML template from WCF REST Starter Kit Preview 2 to build a REST service and i would like to set the ResponseFormat inside the OperationContract, not outside(not with ...
0
votes
3answers
939 views

what ip address does accept return

see the following code: accept(sockfd, (struct sockaddr*)&cliaddr, &slen); cout << inet_ntop(AF_INET, cliaddr.sin_addr, ipv4addr, 100); my client connects from localhost. i get an ...
13
votes
7answers
13k views

jquery droppable accept

Can anyone tell me how can i write a function in accept condition and then how does it finds out that what to accept and what not to accept. Fo r eg i want to accept div a and div b in accept ...
8
votes
1answer
3k views

accept() with sockets shared between multiple processes (based on Apache preforking)

I'm working on some Python code modeled on Apache's MPM prefork server. I am more an applications programmer than a network programmer and it's been 10 years since I read Stevens, so I'm trying to get ...
1
vote
1answer
2k views

How does Restlet handle the HTTP Accept header?

The Restlet framework is supposed to handle automatic content negotiation; however, it doesn't seem to do it properly. When a client sends and HTTP GET request with the Accept header with a value, ...
1
vote
2answers
770 views

WinForms Accept Button Annoyance

I have a base panel class that has (among other things) three buttons. I use subclasses of this base class in two different config dialogues. Both dialogues have an OK button set as the accept button. ...
8
votes
2answers
7k views

How do I send a custom header with urllib2 in a HTTP Request?

I want to send a custom "Accept" header in my request when using urllib2.urlopen(..). How do I do that?

1 2 3