active questions tagged socket - Stack Overflowmost recent 30 from stackoverflow.com2009-12-09T00:56:25Zhttp://stackoverflow.com/feeds/tag/sockethttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1672062/how-to-close-a-tcp-connection-by-port1How to close a TCP connection by port?Tsachi2009-11-04T06:49:06Z2009-12-08T16:55:04Z
<p>Hi,</p>
<p>I would like to close an existing connection between to application running on my server.
If you have a suggestion please reply on how to program this, you will be appreciated.</p>
<p>Note that: TCPView application can close the connection exactly as I need, but I would like to run it as a console application or other command line.</p>
<p>Thanks in advance,
TK</p>
http://stackoverflow.com/questions/1859093/select-on-socket-trouble0select() on socket (trouble)mroztn2009-12-07T10:19:44Z2009-12-07T11:09:46Z
<p>Recently I have done this part of code: <a href="http://dumpz.org/14945/" rel="nofollow">http://dumpz.org/14945/</a></p>
<p>It does work, but select() works bad.
When it has got last reply from server, it begins repeating last reply string with some strange characters in the beginning of reply string.
So look at this:</p>
<pre><code>:nacbot!monitor@nac.bot PRIVMSG testuser1 :VERSION
�C���C��monitor@nac.bot PRIVMSG testuser1 :VERSION
�C���C��monitor@nac.bot PRIVMSG testuser1 :VERSION
�C���C��monitor@nac.bot PRIVMSG testuser1 :VERSION
�C���C��monitor@nac.bot PRIVMSG testuser1 :VERSION
</code></pre>
<p>The first string is the last reply from server. So next strings are just some junk.
I tried to look for information in some search engines, but no luck.</p>
http://stackoverflow.com/questions/1822399/intercept-traffic-above-the-transport-layer2Intercept traffic above the transport layerRay2k2009-11-30T21:06:09Z2009-12-05T08:40:26Z
<p>Firstly, I'm relatively new to network programming. I want to intercept and delay HTTP traffic before it gets to the server application. I've delved into libnetfilter_queue which gives me all the information I need to delay suitably, but at too low a level. I can delay traffic there, but unless I accept the IP datagrams almost immediately (so sending them up the stack when I want to delay them), they will get resent (when no ACK arrives), which isn't what I want.</p>
<p>I don't want or need to have to deal with TCP, just the payloads it delivers. So my question is how do I intercept traffic on a particular port before it reaches its destination, but after TCP has acknowledged and checked it?</p>
<p>Thanks</p>
<p>Edit: Hopefully it's obvious from the tag and libnetfilter_queue - this is for Linux</p>
http://stackoverflow.com/questions/1841298/c-stl-based-socket-library0C++ STL based socket libraryVDVLeon2009-12-03T16:56:15Z2009-12-03T18:44:07Z
<p>I need a C++ STL (iostream, string, etc.) based tcp socket client / server. Does anybody know such library?</p>
http://stackoverflow.com/questions/1838184/signed-unsigned-applets-java-web-start-socket-connections1Signed Unsigned Applets / Java Web Start, Socket Connections?Israel Lopez2009-12-03T07:04:50Z2009-12-03T08:28:41Z
<p>Hello There,</p>
<p>I have been developing a test framework for a particular client/server product (COTS) that exposes XML requests & responses via a raw ip socket. </p>
<p>I have been able to develop my test framework in a PHP application with good results, but my desire is to make the test framework easily portable. Sure a VMWare image is portable 'enough' but a headache for some. (Get & Register VMWare Player, etc,.)</p>
<p>So my idea was to write a Java Applet / Java Web Start to run the test framework in the users local network environment. A website would serve the applet/jnlp and would execute on a desktop, point to a server IP/port and run the test suite. Gather the results and display to the user.</p>
<p>I haven't developed an applet before or a Java Web Start project, but I figure its pretty straightforward. One thing did become a concern was the issue of Socket Connections for Signed & Unsigned applets. Other answered questions say you cannot make socket connections unless its to the originating server(?). In that case how does one sign their application applet/java web start? Who are the certificate providers etc,.?</p>
<p>-Israel</p>
http://stackoverflow.com/questions/1829641/are-sockets-events-queued-in-flash0Are Socket's events queued in Flash?james_bond2009-12-01T23:19:56Z2009-12-02T13:16:18Z
<p>I'm trying to implement a binary protocol between a flash application and a Custom Java Server using TCP/IP sockets, the protocol's messages are of variable length, so my idea is to add a field indicating the number of bytes I have to read before parsing a complete message, something like this:</p>
<pre><code>bytesToRead = socket.readInteger();
var bf:ByteArray;
socket.readBytes(bytesToRead);
parseMessage(bf);
</code></pre>
<p>So my question is: if while processing a message (supossing it is complete) other data arrives through the socket, are messages of type ProgressEvent.SOCKET_DATA queued so the number of times my handler is called is equal (at least in this case) to the number of messages arrived or should I read until all data the socket has available? or simpler: <strong>are in general messages for a handler queued in flash?</strong></p>
http://stackoverflow.com/questions/1827921/net-c-tcpclient-socket-http-client-performance-efficiency0.Net C# TcpClient / Socket HTTP Client Performance / EfficiencyChris2009-12-01T18:20:33Z2009-12-02T01:58:06Z
<p>Hi All,</p>
<p>I'm writing an HTTP client using the .Net TcpClient / Sockets.</p>
<p>So far, the client handles both Content-Length and chunked responses by iterating through the NetworkStream response (after writing a GET request to the TcpClient), parsing the headers and retrieving the relevant message body bytes / chunked bytes. To do this it uses the NetworkStream ReadByte method.</p>
<p>This all works fine, but performance is a key consideration of the application so I would like to make it as quick and efficient as possible.</p>
<p>Initially this will involve swapping ReadByte for Read for the message body (based on Content-Length) or chunked message body byte retrieval into an appropriately sized buffer, using ReadByte in all other areas (such as reading the Headers, Chunk sizes etc).</p>
<p>I'm interested to know thoughts on better / different ways to do this to achieve optimum performance? Obviously the main problem with HTTP is not knowing the length of the response stream unless it is parsed as it is retrieved.</p>
<p>There a specific reasons why I'm not using more abstract classes (eg HttpWebRequest) for this (I need better control at the socket level).</p>
<p>Many Thanks,</p>
<p>Chris</p>
http://stackoverflow.com/questions/1824465/set-timeout-for-winsock-recvfrom1Set timeout for winsock recvfromCory Carlson2009-12-01T07:01:46Z2009-12-01T22:24:19Z
<p>I'm trying to set up a blocking socket to timeout after 16 ms of trying to recvfrom() on a port. Platform is Windows. I've looked at tons of examples online and it seems really simple I just can't seem to get it to work. Any help would be appreciated!</p>
<pre><code>#include <winsock2.h>
#include <string>
#pragma comment(lib, "ws2_32.lib")
#define PORT_NUM 8001
int main(void)
{
std::string localIP;
sockaddr_in localAddr;
sockaddr_in remoteAddr;
hostent* localhost;
char buffer[1024];
WSADATA wsData;
int result = WSAStartup(MAKEWORD(2,2), &wsData); // winsock version 2
localhost = gethostbyname("");
localIP = inet_ntoa(*(in_addr*)*localhost->h_addr_list);
localAddr.sin_family = AF_INET;
localAddr.sin_port = htons(PORT_NUM); // Set Port Number
localAddr.sin_addr.s_addr = inet_addr(localIP.c_str()); // Set IP Address
int mHandle = WSASocket(AF_INET, SOCK_DGRAM, IPPROTO_UDP, NULL, 0, 0);
if(mHandle == INVALID_SOCKET)
return 1;
if(bind(mHandle, (SOCKADDR*)&localAddr, sizeof(localAddr)) == SOCKET_ERROR)
return 1;
timeval tv;
tv.tv_sec = 0;
tv.tv_usec = 1600;
// Set Timeout for recv call
if(setsockopt(mHandle, SOL_SOCKET, SO_RCVTIMEO,
reinterpret_cast<char*>(&tv), sizeof(timeval)))
return 1;
int length = sizeof(remoteAddr);
// <-- Blocks here forever
recvfrom(mHandle, buffer, 1024, 0, (SOCKADDR*)&remoteAddr, &length);
return 0;
}
/* I've also tried passing the time like so:
int ms = 16;
if(setsockopt(mHandle, SOL_SOCKET, SO_RCVTIMEO, reinterpret_cast<char*>(&ms), sizeof(int)))
return 1; */
</code></pre>
http://stackoverflow.com/questions/1237259/about-write-buffer-in-general-network-programming0About write buffer in general network programmingxopht2009-08-06T06:29:56Z2009-12-01T17:12:14Z
<p>I'm writing server using boost.asio. I have read and write buffer for each connection and use asynchronized read/write function (<code>async_write_some</code> / <code>async_read_some</code>).</p>
<p>With read buffer and <code>async_read_some</code>, there's no problem. Just invoking <code>async_read_some</code> function is okay because read buffer is read only in read handler (means in same thread usually).</p>
<p>But, write buffer need to be accessed from several threads so it need to be locked for modifying.</p>
<p>FIRST QUESTION!</p>
<p><strong>Are there any way to avoid LOCK for write buffer?</strong></p>
<p>I write my own packet into stack buffer and copy it to the write buffer. Then, call <code>async_write_some</code> function to send the packet. In this way, if I send two packet in serial, is it okay invoking <code>async_write_some</code> function two times?</p>
<p>SECOND QUESTION!</p>
<p><strong>What is common way for asynchronized writing in socket programming?</strong></p>
<p>Thanks for reading.</p>
http://stackoverflow.com/questions/1367319/best-practice-to-detect-a-client-disconnection-in-net3Best practice to detect a client disconnection in .NET ?cedrou2009-09-02T12:10:36Z2009-12-01T16:33:48Z
<p>I'm developing a server in C# which can accept only one client and I need to know when this client is disconnected to be able to accept another connection requests.</p>
<p>I'm using a first Socket which continuously listen to connection request with <code>Socket.BeginAccept</code> and accept or reject clients. When a client is accepted, the new Socket which is returned by <code>Socket.EndAccept</code> is used for the communication between client and server. Then, the server waits for commands from the client with <code>Socket.Begin/EndReceive</code> and sends responses. The server uses a Telnet-like protocol, which means that each command and each line of response must end with <code>\r\n</code>.</p>
<p>To detect if the client has been disconnected, I've installed a timer which sends every 500ms an empty message ("<code>\r\n</code>") to the client. If the client is disconnected, an exception is thrown by the Socket. This exception is caught by the server which closes the current session and accepts new connection. This solution is robust but implies unneeded traffic over the network and must be handled correctly by the client which must filter dummy messages before getting an actual response. </p>
<p>I've tried to send an empty buffer (<code>Socket.Send(new byte[1], 0, 0)</code>), but it seems that doesn't work in the direction server->client.</p>
<p>Another solution might be to handle the case where <code>Socket.EndReceive</code> returns 0 byte. It works fine for the case of a disconnection which occurs during "idle" time. But if the client disconnects during a message transfert, the server doesn't always see it and waits indefinitely.</p>
<p>I've already seen several threads and questions about this problem, but I've never seen any good solution.</p>
<p>So my question is: what is the best way to detect a disconnection in .Net ?</p>
http://stackoverflow.com/questions/1169739/java-tcp-socket-data-transfer-is-slow1Java TCP socket: data transfer is slowErik2009-07-23T05:20:40Z2009-12-01T09:28:40Z
<p>I set up a server with a ServerSocket, connect to it with a client machine. They're directly networked through a switch and the ping time is <1ms.</p>
<p>Now, I try to push a "lot" of data from the client to the server through the socket's output stream. It takes 23 minutes to transfer 0.6Gb. I can push a much larger file in seconds via scp.</p>
<p>Any idea what I might be doing wrong? I'm basically just looping and calling writeInt on the socket. The speed issue doesn't matter where the data is coming from, even if I'm just sending a constant integer and not reading from disk.</p>
<p>I tried setting the send and receive buffer on both sides to 4Mb, no dice. I use a buffered stream for the reader and writer, no dice.</p>
<p>Am I missing something?</p>
<p>EDIT: code</p>
<p>Here's where I make the socket</p>
<pre><code>System.out.println("Connecting to " + hostname);
serverAddr = InetAddress.getByName(hostname);
// connect and wait for port assignment
Socket initialSock = new Socket();
initialSock.connect(new InetSocketAddress(serverAddr, LDAMaster.LDA_MASTER_PORT));
int newPort = LDAHelper.readConnectionForwardPacket(new DataInputStream(initialSock.getInputStream()));
initialSock.close();
initialSock = null;
System.out.println("Forwarded to " + newPort);
// got my new port, connect to it
sock = new Socket();
sock.setReceiveBufferSize(RECEIVE_BUFFER_SIZE);
sock.setSendBufferSize(SEND_BUFFER_SIZE);
sock.connect(new InetSocketAddress(serverAddr, newPort));
System.out.println("Connected to " + hostname + ":" + newPort + " with buffers snd=" + sock.getSendBufferSize() + " rcv=" + sock.getReceiveBufferSize());
// get the MD5s
try {
byte[] dataMd5 = LDAHelper.md5File(dataFile),
indexMd5 = LDAHelper.md5File(indexFile);
long freeSpace = 90210; // ** TODO: actually set this **
output = new DataOutputStream(new BufferedOutputStream(sock.getOutputStream()));
input = new DataInputStream(new BufferedInputStream(sock.getInputStream()));
</code></pre>
<p>Here's where I do the server-side connection:</p>
<pre><code> ServerSocket servSock = new ServerSocket();
servSock.setSoTimeout(SO_TIMEOUT);
servSock.setReuseAddress(true);
servSock.bind(new InetSocketAddress(LDA_MASTER_PORT));
int currPort = LDA_START_PORT;
while (true) {
try {
Socket conn = servSock.accept();
System.out.println("Got a connection. Sending them to port " + currPort);
clients.add(new MasterClientCommunicator(this, currPort));
clients.get(clients.size()-1).start();
Thread.sleep(500);
LDAHelper.sendConnectionForwardPacket(new DataOutputStream(conn.getOutputStream()), currPort);
currPort++;
} catch (SocketTimeoutException e) {
System.out.println("Done listening. Dispatching instructions.");
break;
}
catch (IOException e) {
e.printStackTrace();
}
catch (Exception e) {
e.printStackTrace();
}
}
</code></pre>
<p>Alright, here's where I'm shipping over ~0.6Gb of data.</p>
<pre><code>public static void sendTermDeltaPacket(DataOutputStream out, TIntIntHashMap[] termDelta) throws IOException {
long bytesTransferred = 0, numZeros = 0;
long start = System.currentTimeMillis();
out.write(PACKET_TERM_DELTA); // header
out.flush();
for (int z=0; z < termDelta.length; z++) {
out.writeInt(termDelta[z].size()); // # of elements for each term
bytesTransferred += 4;
}
for (int z=0; z < termDelta.length; z++) {
for (int i=0; i < termDelta[z].size(); i++) {
out.writeInt(1);
out.writeInt(1);
}
}
</code></pre>
<p>It seems pretty straightforward so far...</p>
http://stackoverflow.com/questions/1550626/how-to-connect-emulator-to-server-in-android-application0how to connect emulator to server in android applicationunknown (google)2009-10-11T12:50:30Z2009-12-01T08:24:54Z
<p>I am developing an application in android to connect emulator to server and then read, edit and write on it. Has any one worked on such application please let me know. Else guide how to develop this application.</p>
<p>I am using Socket in my application. i am able to run the code when my machine is server and client but not able to do when connect to other machines.</p>
http://stackoverflow.com/questions/1824279/how-to-get-ip-address-from-sockaddr0How to get IP address from sockaddrSilmaril892009-12-01T06:04:41Z2009-12-01T06:16:37Z
<p>I want to try and get the ip address of a client after calling accept. This is what I have so far, but I just end up getting some long number that is clearly not an ip address. What could be wrong? Thanks to anyone who replies.</p>
<pre><code>int tcp_sock = socket(AF_INET, SOCK_STREAM, 0);
sockaddr_in client;
client.sin_family = AF_INET;
socklen_t c_len = sizeof(client);
int acc_tcp_sock = accept(tcp_sock, (sockaddr*)&client, &c_len);
cout << "Connected to: " << client.sin_addr.s_addr << endl;
</code></pre>
http://stackoverflow.com/questions/1807518/nntp-socket-how-to-interrupt0NNTP & Socket - How to interrupt?Cosmo2009-11-27T08:52:42Z2009-12-01T04:14:36Z
<p>Hi. I'm sending a message to a NNTP server in order to fetch an article's body. I don't want to wait for the answer to complete, cause I only need the first 3 lines from the body. How can I interrupt the transfer and move on to the next article? Now when I request another's article message body, I still get data from the previous one.</p>
<p>The only way that worked for me, was to close the stream and reopen it. In my opinion this is a little bit hardcore, cause I have to login to the server every time I need a new file.</p>
<p>Any help would be appreciated.</p>
<p>Kind Regards. </p>
http://stackoverflow.com/questions/1385591/how-can-my-thread-get-stuck-in-isconnectionreset-plainsocketimpl0How can my thread get stuck in isConnectionReset (PlainSocketImpl)bmargulies2009-09-06T12:46:56Z2009-11-30T18:00:03Z
<p>Someone helping me with a hung Java server studied the thread dump and does not understand the following state :</p>
<pre>
INFO | jvm 1 | 2009/08/30 18:11:46 | "103468119@qtp-2047706572-1" prio=10 tid=0x0000000041758000 nid=0x13d7 waiting on condition [0x00007f6dbb75e000]
INFO | jvm 1 | 2009/08/30 18:11:46 | java.lang.Thread.State: RUNNABLE
INFO | jvm 1 | 2009/08/30 18:11:46 | at java.net.PlainSocketImpl.isConnectionReset(PlainSocketImpl.java:602)
INFO | jvm 1 | 2009/08/30 18:11:46 | - locked (a java.lang.Object)
</pre>
<p>The code is running in </p>
<pre>
java version "1.6.0_14"
Java(TM) SE Runtime Environment (build 1.6.0_14-b08)
Java HotSpot(TM) 64-Bit Server VM (build 14.0-b16, mixed mode)
</pre>
<p>Indeed, according to the PlainSocketImpl source code, it should be impossible to stay a long time in the isConnectionReset() method even with the inner synchronization :</p>
<pre><code>public boolean isConnectionReset() {
synchronized (resetLock) {
return (resetState == CONNECTION_RESET);
}
}
</code></pre>
<p>Anyway, if the thread was blocked by the lock, its state would be BLOCKED. A thread in the state RUNNABLE "waiting on condition" means that the thread is waiting on an internal VM conditions variable.</p>
http://stackoverflow.com/questions/1815030/receiving-a-response-through-udp1Receiving a response through UDPNeo_b2009-11-29T08:40:03Z2009-11-30T10:27:24Z
<p>Hello. I have seen applications send a packet through UDP to an IP on some port and receiving a response. Which port does the response go to? (Btw, how can the router know that the response is for my PC, if there are no ports forwarded to my PC?)</p>
<p>Greetings, Neo_b</p>
http://stackoverflow.com/questions/1816091/nsstream-reading-writing-outside-the-delegate-method-handleeventeventcode0NSStream reading\writing outside the delegate method handleEvent:eventCodekevin2009-11-29T17:15:01Z2009-11-29T17:34:28Z
<p>Hi, in an iPhone app, I have a socket connection through wifi, and I need to read from inputStream and write to outputStream. The problem is that stream management is event-driven, and I have to wait for event NSStreamEventHasBytesAvailable before reading. So I can't know when reading\writing outside the handleEvent:eventCode delegate method.</p>
<p>I tried a while loop, but I realized that during the while loop the app doesn't receive delegate messages and never stops:</p>
<p>Pseudo-code:</p>
<pre><code>-(void) myFunction {
canRead=NO;
[self writeToStream:someData];
while(!canRead) { };
readData=[self readFromStream];
}
- (void)stream:(NSStream *)stream handleEvent:(NSStreamEvent)eventCode {
switch(eventCode) {
case NSStreamEventHasBytesAvailable: {
canRead=YES;
break;
}
}
}
</code></pre>
<p>I think I could read\write inside the delegate method, but I need to read\write many times outside that.</p>
<p>Help!
Thankyou </p>
http://stackoverflow.com/questions/319732/tips-techniques-for-high-performance-c-server-sockets6Tips / techniques for high-performance C# server socketsMcKenzieG12008-11-26T04:17:02Z2009-11-29T16:02:04Z
<p>I have a .NET 2.0 server that seems to be running into scaling problems, probably due to poor design of the socket-handling code, and I am looking for guidance on how I might redesign it to improve performance.</p>
<p><strong>Usage scenario:</strong> 50 - 150 clients, high rate (up to 100s / second) of small messages (10s of bytes each) to / from each client. Client connections are long-lived - typically hours. (The server is part of a trading system. The client messages are aggregated into groups to send to an exchange over a smaller number of 'outbound' socket connections, and acknowledgment messages are sent back to the clients as each group is processed by the exchange.) OS is Windows Server 2003, hardware is 2 x 4-core X5355. </p>
<p><strong>Current client socket design:</strong> A <code>TcpListener</code> spawns a thread to read each client socket as clients connect. The threads block on <code>Socket.Receive</code>, parsing incoming messages and inserting them into a set of queues for processing by the core server logic. Acknowledgment messages are sent back out over the client sockets using async <code>Socket.BeginSend</code> calls from the threads that talk to the exchange side.</p>
<p><strong>Observed problems:</strong> As the client count has grown (now 60-70), we have started to see intermittent delays of up to 100s of milliseconds while sending and receiving data to/from the clients. (We log timestamps for each acknowledgment message, and we can see occasional long gaps in the timestamp sequence for bunches of acks from the same group that normally go out in a few ms total.) </p>
<p>Overall system CPU usage is low (< 10%), there is plenty of free RAM, and the core logic and the outbound (exchange-facing) side are performing fine, so the problem seems to be isolated to the client-facing socket code. There is ample network bandwidth between the server and clients (gigabit LAN), and we have ruled out network or hardware-layer problems.</p>
<p>Any suggestions or pointers to useful resources would be greatly appreciated. If anyone has any diagnostic or debugging tips for figuring out exactly what is going wrong, those would be great as well.</p>
<p><em>Note: I have the MSDN Magazine article <a href="http://msdn2.microsoft.com/en-us/magazine/cc300760.aspx" rel="nofollow">Winsock: Get Closer to the Wire with High-Performance Sockets in .NET</a>, and I have glanced at the Kodart "XF.Server" component - it looks sketchy at best.</em></p>
http://stackoverflow.com/questions/1814389/c-socket-vs-c-socket-which-is-better0C# socket vs c++ Socket, which is better?speed.zheng2009-11-29T01:58:58Z2009-11-29T02:40:29Z
<p>I have a server-side project which must be developed on .Net platform, but I doubt about the c# socket performance, some guys told me that C# application always eat a lot of memory, especially when constantly exchanged large bunch of data in real time. the memory data recycle is too slow. anyone give some ideas about C# socket performance?</p>
http://stackoverflow.com/questions/649290/socket-readfile-issue1Socket ReadFile Issueybelsare2009-03-16T04:46:44Z2009-11-28T02:00:06Z
<p>We have a application which uses ReadFile to read a socket . In one of the scenarios the ReadFile gets a call saying that there are 2 bytes to read , but when the ReadFile tries to read this it return with bytesread as 0 . Does this mean that the socket on the other end has closed down ? . I mean does it necessarily mean that the socket on the other end has closed down when ReadFile reads 0 bytes ? . or could it be a error ?</p>
http://stackoverflow.com/questions/1808798/zero-window-when-sending-files-through-posix-sockets1Zero Window when sending files through posix socketsArchwimiliuopoczański2009-11-27T13:31:59Z2009-11-28T01:58:49Z
<p>Hi</p>
<p>I have a problem - when I'm trying to send huge amounts of data through posix sockets ( doesn't matter if it's files or some data ) at some point I don't receive what I expect - I used wireshark to determine what's causing errors, and I found out, that exactly at the point my app breaks there are packets marked red saying "zero window" or "window full" sent in both directions.</p>
<p>The result is, that the application layer does not get a piece of data sent by send() function. It gets the next part though...</p>
<p>Am I doing something wrong?</p>
<p>EDIT: </p>
<p>Lets say I want to send 19232 pieces of data 1024 bytes each - at some random point ( or not at all ) instead of the 9344th packet I get the 9345th. And I didn't implement any retransmission protocol because I thought TCP does it for me.</p>
http://stackoverflow.com/questions/1810354/ejabberd-ip-address0ejabberd ip addressunknown (google)2009-11-27T19:35:25Z2009-11-27T19:35:25Z
<p>Does anyone know if there's a direct way to map an IP address to a user logged into ejabberd? I found an indirect way by modifying ejabberd_receiver.erl and calling inet:peername(Socket) from here: <a href="http://stackoverflow.com/questions/1240312/determining-ip-address-and-port-of-an-incoming-tcp-ip-connection-in-erlang">http://stackoverflow.com/questions/1240312/determining-ip-address-and-port-of-an-incoming-tcp-ip-connection-in-erlang</a></p>
<p>but there doesn't seem to be a way to link a socket to a user after they've successfully been authenticated. If anyone knows of a way, please let me know! Thanks.</p>
http://stackoverflow.com/questions/1805862/socket-available-data-for-read0Socket available data for readunick2009-11-26T22:01:04Z2009-11-27T00:22:24Z
<p>I need fast method for check socket has available data for read.
I use select(), but it is not fast.
Is faster method exists?</p>
http://stackoverflow.com/questions/1805706/socket-client-was-disconnected-or-not1Socket: Client was disconnected or not?unick2009-11-26T21:20:58Z2009-11-26T21:35:15Z
<p>I am creating socket server. But I do not know, How I can know client disconnected or not?
I am creating server under Windows and using berkeley sockets function (read, send, connect....).
Preferably I want a cross-platfomennoe solution (without WSA functions).</p>
<p>I can write to socket 0 byte and ckeck error. But it is not good solution. </p>
http://stackoverflow.com/questions/1804980/reading-socket-buffer-using-asyncore0Reading socket buffer using asyncorepHk2009-11-26T17:56:48Z2009-11-26T18:16:25Z
<p>I'm new to Python (I have been programming in Java for multiple years now though), and I am working on a simple socket-based networking application (just for fun). The idea is that my code connects to a remote TCP end-point and then listens for any data being pushed from the server to the client, and perform some parsing on this.</p>
<p>The data being pushed from server -> client is UTF-8 encoded text, and each line is delimited by <code>CRLF</code> (<code>\x0D\x0A</code>). You probably guessed: the idea is that the client connects to the server (until cancelled by the user), and then reads and parses the lines as they come in.</p>
<p>I've managed to get this to work, however, I'm not sure that I'm doing this quite the right way. So hence my actual questions (code to follow):</p>
<ol>
<li>Is this the right way to do it in Python (ie. is it really this simple)?</li>
<li>Any tips/tricks/useful resources (apart from the reference documentation) regarding buffers/<code>asyncore</code>?</li>
</ol>
<p>Currently, the data is being read and buffered as follows:</p>
<pre><code>def handle_read(self):
self.ibuffer = b""
while True:
self.ibuffer += self.recv(self.buffer_size)
if ByteUtils.ends_with_crlf(self.ibuffer):
self.logger.debug("Got full line including CRLF")
break
else:
self.logger.debug("Buffer not full yet (%s)", self.ibuffer)
self.logger.debug("Filled up the buffer with line")
print(str(self.ibuffer, encoding="UTF-8"))
</code></pre>
<p>The <code>ByteUtils.ends_with_crlf</code> function simply checks the last two bytes of the buffer for <code>\x0D\x0A</code>. The first question is the main one (answer is based on this), but any other ideas/tips are appreciated. Thanks.</p>
http://stackoverflow.com/questions/1759428/java-web-server-and-pdf-files0Java web server and PDF filesJohn2009-11-18T22:01:50Z2009-11-26T03:06:15Z
<p>I have created my own HTTP server. I need to return a PDF file (generated by Jasper Reports) to the web browser. However, when I read the PDF file and write its contents to the socket, the web browser receives a blank PDF file. When I save this file and compare it to the original, I see that many of the characters have been converted from their original value to 0x3F (which is '?').</p>
<p>When I read the file, my debug output shows that the correct values are read and that the correct values are written to the socket. Can anyone help me?</p>
<h2>Here is the code (minus all the debug code) that reads the PDF file:</h2>
<pre><code>File f = new File(strFilename);
long len = f.length();
byteBuffPdfData = ByteBuffer.allocate( (int)len );
FileInputStream in = new FileInputStream(strFilename);
boolean isEOF = false;
while (!isEOF)
{
int iValue = in.read();
if (iValue == -1)
{
isEOF = true;
}
else
{
byteBuffPdfData.put( (byte)iValue );
}
}
</code></pre>
<p><hr></p>
<h2>Next is the code that writes from the byte buffer to the socket...</h2>
<pre><code>printWriter = new PrintWriter( socket.getOutputStream(), true );
printWriter.write(strHttpHeaders);
// Headers:
// HTTP/1.0 200 OK
// Date: Wed, 18 Nov 2009 21:04:36
// Expires: Wed, 18 Nov 2009 21:09:36
// Cache-Control: public
// Content-Type: application/pdf
// Content-Length: 1811
// Connection: keep-alive
//
byteBuffPdfData.rewind();
while(byteBuffPdfData.hasRemaining())
{
printWriter.print( (char)byteBuffPdfData.get() );
}
printWriter.flush();
socket.close();
</code></pre>
<p>Any help that can be offered is greatly appreciated. I am sure that I need to do something with the character sets but at this point I have tried a million things and nothing seems to work.</p>
<p>John</p>
http://stackoverflow.com/questions/1797953/sockets-in-objective-c0sockets in objective-cmtasic2009-11-25T16:02:42Z2009-11-26T00:24:22Z
<p>I'm using <strong>gcc</strong> for compiling and linking Objective-C programs, and I'm wondering if there is socket library that is unified, portable, and/or cross-platform (like Python's socket module).</p>
http://stackoverflow.com/questions/1790491/ways-to-prevent-broken-pipe0Ways to prevent broken pipe?Trick2009-11-24T14:40:41Z2009-11-24T18:32:57Z
<pre><code>ClientAbortException: java.net.SocketException: Broken pipe
</code></pre>
<p>If I am wright, this happens when user aborts current operation or makes another request, before the last one is finished. </p>
<p>Can this reflects on browsing user or is this (always) <em>just</em> a Catalinas exception?</p>
<p>Are there any ways to avoid this exception? </p>
http://stackoverflow.com/questions/535820/java-sockets-with-out-of-band-data2Java sockets with out of band dataCd-MaN2009-02-11T07:51:47Z2009-11-24T14:25:40Z
<p>Does anybody know how to receive (how to know that you received) out-of-band data with Java sockets? In particular I've read the documentation for <a href="http://java.sun.com/j2se/1.4.2/docs/api/java/net/Socket.html#sendUrgentData(int)" rel="nofollow">sendUrgentData</a> and <a href="http://java.sun.com/j2se/1.5.0/docs/api/java/net/Socket.html#setOOBInline(boolean)" rel="nofollow">setOOBInline</a> which states that:</p>
<blockquote>
<p>Note, only limited support is provided for handling incoming urgent data. In particular, no notification of incoming urgent data is provided and there is no capability to distinguish between normal data and urgent data unless provided by a higher level protocol.</p>
</blockquote>
<p>But I'm still hoping that somebody has a solution :-)</p>
<p>More details:</p>
<p>I'm sending serialized objects trough the socket and I'm not really seeing how I can find a "random" OOB byte inserted in the stream (other than the fact that Java will give me an exception when I'll try to deserialize the object).</p>
http://stackoverflow.com/questions/1783660/mono-c-sockets-performance1mono, c#, sockets, performanceAdrian Serafin2009-11-23T15:01:51Z2009-11-24T12:37:58Z
<p>Hi!</p>
<p>I developed simple async server that listens to unix socket and sync client that send the some small piece of data. Time between moment when i send data from client to the moment when server receives them is completly random, from 1 to 9 seconds. I wonder why is the reason? Server is implemented as shown in msdn example here (using beginReceive): <a href="http://msdn.microsoft.com/en-us/library/fx6588te.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/fx6588te.aspx</a></p>
<pre><code>EndPoint ep = new UnixEndPoint(_fileName);
_socket = new Socket(AddressFamily.Unix, SocketType.Stream, ProtocolType.IP);
try
{
_socket.Bind(ep);
_socket.Listen(_maxConnectionsInQuee);
while(true)
{
done.Reset();
_socket.BeginAccept(new AsyncCallback(AcceptCallback), null);
done.WaitOne();
}
}
</code></pre>
<p>And in the client:</p>
<pre><code>EndPoint ep = new UnixEndPoint(_fileName);
_socket = new Socket(AddressFamily.Unix, SocketType.Stream, ProtocolType.IP);
_socket.Connect(ep);
byte[] bytes = Encoding.UTF8.GetBytes(message);
_socket.Send(bytes);
</code></pre>
<p>Method that sends data to the server is called from webservice method (running via xsp2).</p>