Skip to main content
1 vote
0 answers
126 views

I am developing an application, which has a built-in TCP server. I want the server to be secure via OpenSSL. The server has to identify its clients and the clients must identify the server. If I ...
loltrol's user avatar
  • 113
1 vote
1 answer
126 views

I am writing a tcp server in C++ on Linux and am currently trying to move on from my thread pool to a event driven I/O system using epoll. My Server currently creates a listening socket, then accepts ...
X3NON's user avatar
  • 13
0 votes
0 answers
72 views

The SYN packets are sent together before receiving any SYN-ACK from the server. Both SYN has the same source dest IP address & port. They only differ in seq no, so what will happen in this case?
Aashish Aggarwal's user avatar
0 votes
1 answer
75 views

I have a Tcp socket server class that is to run in CPython and MicroPython. It does, no problem there. Only I would like to extend its functionality with an IP filter. From an earlier version that ...
resurrected user's user avatar
0 votes
0 answers
40 views

I'm learning to use reactor-netty to create a TCP server with UI, and I have to do something like send a message to client then send other after 10s when I push a button.Here is my code val fx = Flux&...
Kreig's user avatar
  • 61
1 vote
1 answer
109 views

I need to create a connection between 4 clients and a server and they should communicate over a networkprotocol. I'm quite clueless and I don't know what I need to implement in which class. I managed ...
Chulija's user avatar
  • 11
-1 votes
1 answer
116 views

I have been asked to implement a card game(the loading and save don't function as intended, but this shouldn't affect the connection) from a previous project in a TCP server/client situation. In order ...
Ria's user avatar
  • 25
0 votes
1 answer
50 views

I'm implementing a socket server for python. Ideally I would use a socketserver.TCPServer in combination with thereadline-functionality of socketserver.StreamRequestHandler, see for instance the ...
obachtos's user avatar
  • 1,061
1 vote
2 answers
326 views

I would like to create a simple example TCP server in C. It should be able to receive multiple client connections and to send a string to each of them separately, before closing the connection. Many ...
BowPark's user avatar
  • 1,554
1 vote
0 answers
34 views

I'm working on an online game. For communication between clients and the server, I'm using TCP. Now, when clients send their usernames to the server, the server should message them back '1', but the ...
Howell's user avatar
  • 11
-1 votes
1 answer
297 views

I wrote a TCP Server application using project reactor netty. It's a simple application that receives a byte array request message from a client, processes it, then returns a byte array response ...
bscott's user avatar
  • 319
0 votes
1 answer
297 views

I'm using python TCP server, and the clients will just send data to the server via sockets. In Linux, there are the buffer size defined for TCP. So does that mean when the client writes to the socket, ...
Ames ISU's user avatar
  • 417
1 vote
0 answers
55 views

I want to send images, videos, audio through TCP in chunks. I wrote this function but for some reason every Browser I use closes the connection after recieving only a few chunks of data. Is there a ...
NunjaUwU's user avatar
0 votes
0 answers
56 views

I have a c++ application running on a linux device that supports adb and is connected to my laptop. The application does have a local server running. void TCPServer::start() { ...
bourne's user avatar
  • 1,269
0 votes
0 answers
200 views

Let me brief my scenario on SIP REGISTER, There is an endpoint behind NAT and gets connected to my application server over TCP via NAT device. TCP Handshake done, endpoint(A) sent SIP REGISTER(let's ...
Prakash GiBBs's user avatar

15 30 50 per page
1
2 3 4 5
47