Sponsored Content
Top Forums Programming Client/Server Socket Application - Preventing Client from quitting on server crash Post 302348293 by Zykl0n-B on Thursday 27th of August 2009 10:57:41 PM
Old 08-27-2009
I don't think this is possible.

Not to keep the client socket waiting for "nothing", that's totally possible, of course. If you are learning network programming, you may know a few about TCP/IP protocol stack.

If your client/server application communicate using UDP as transport protocol, excuse me then, it's possible. But if your application communicates using TCP as transport protocol, you're doing nothing keeping the client waiting for data that isn't going to arrive.

TCP uses sequence and acknowledgement numbers, on a server "crash" the application will need to be restarted. at this point, the server will start NEW connections, and forget about the previous ones.

The client application will be sending ack's or data to a connection that is no longer available, and the server will ignore the client. so, you are using UDP, right?

Last edited by Zykl0n-B; 08-28-2009 at 12:05 AM..
Zykl0n-B
 

10 More Discussions You Might Find Interesting

1. Programming

UDP socket - can both client and server recv and send

Hi, Am very new to socket programming. When we use UDP sockets to communicate between two processess, will both the client/server socket be able to send/recv ? meaning can sendto()/ recvfrom() be used on both server and client? It could be useful even if anybody provide some link on socket... (1 Reply)
Discussion started by: rvan
1 Replies

2. UNIX for Dummies Questions & Answers

socket programming : client server IPC

I'm new to socket programming. Have a basic doubt. I have a structure(global) at the server side. I have two different client connecting to the server. Will the changes made by one client on the structure be visible to the other client when it accesses the same client? I'm creating a STREAM... (3 Replies)
Discussion started by: abc.working
3 Replies

3. Programming

Server - Client application problem

hi all I'm beginner in CORBA Server-Client appliction development. My server- client application was worked well and i have tested it too. Due to some Network problem we have rebooted our dedicated server , then i restart my corba service, application in the server it started... (0 Replies)
Discussion started by: VijayakumarN
0 Replies

4. UNIX for Dummies Questions & Answers

Running server side application on client demand

Ive written a java based "webscraper to rss feed" which resides on my college web space when I execute the app from putty it creates the feed and sets the permissions perfectly.I then wrote a php script to execute the app on demand from the browser using ... system("java -cp... (1 Reply)
Discussion started by: gleesonger
1 Replies

5. Programming

how can I send and receive data in client server socket programing

char name; printf ("Welcome to the server \n"); printf ("Enter user name: \n"); scanf ("%c", &name); how can client send name to server:what should be the code? int send ( int sid , const char ∗buffer Ptr , int len , int f l a g ) how can client receive ack from... (1 Reply)
Discussion started by: saiful_911
1 Replies

6. Programming

socket programing in client server

hei, i want to enter name and read it by client server socket program after checking name validity put the password and check.if ok than server clirnt say correct other wise incorrect. below my code: char name; printf ("Welcome to the server \n"); printf ("Enter user name: \n"); scanf... (1 Reply)
Discussion started by: saiful_911
1 Replies

7. Windows & DOS: Issues & Discussions

Office server => laptop =>client server ...a lengthy and laborious ftp procedure

Hi All, I need your expertise in finding a way to solve my problem.Please excuse if this is not the right forum to ask this question and guide me to the correct forum,if possible. I am a DBA and on a daily basis i have to ftp huge dump files from my company server to my laptop and then... (3 Replies)
Discussion started by: kunwar
3 Replies

8. Programming

C Socket Client/Server Fork Loop

Hello people. I'm trying to do something like a search engine. Server runs in the background by using ./server & which has data from a textfile stored in an array. Client then runs by using ./client It will then prompt "Search for:" For example, if I searched for Products called Instant... (0 Replies)
Discussion started by: andylbh
0 Replies

9. Programming

Client accidently close when the server crash

The steps to test the problem 1. Open TCP Server 2. Open TCP Client 3. TCP Client sends data to Server. 4. Close TCP Server and the client also crash without any notification Second wonderful test: 1. Comment the following statement in Client.c (at line 168) and compile it Writen(... (1 Reply)
Discussion started by: sehang
1 Replies

10. Programming

Socket dual client/server Linux

I'm trying to make a "dual/server client" (ipv4,ipv6) with sockets in linux but i don't know how to join both codes. I have a dual client ipv4 and ipv6, but i have problems with the server if you notice the only difference between them it's the AF_INET (pf_inet ipv4, and if_inet6 ipv6) and the port... (3 Replies)
Discussion started by: godna
3 Replies
socket.h(3)						     Library Functions Manual						       socket.h(3)

NAME
socket.h - Network addresses and sockets related classes. SYNOPSIS
#include <cc++/address.h> Classes class ost::Socket The Socket is used as the base for all Internet protocol services under Common C++. class ost::DCCPSocket DCCP sockets are used for stream based connected sessions between two sockets. class ost::UDPSocket UDP sockets implement the TCP SOCK_DGRAM UDP protocol. class ost::UDPBroadcast Representing a UDP socket used for subnet broadcasts, this class provides an alternate binding and setPeer() capability for UDP sockets. class ost::UDPTransmit Representing half of a two-way UDP connection, the UDP transmitter can broadcast data to another selected peer host or to an entire subnet. class ost::UDPReceive Representing half of a two-way UDP connection, the UDP receiver can receive data from another peer host or subnet. class ost::UDPDuplex UDP duplex connections impliment a bi-directional point-to-point UDP session between two peer hosts. class ost::TCPSocket TCP sockets are used for stream based connected sessions between two sockets. class ost::TCPV6Socket TCPV6 sockets are used for stream based connected sessions between two ipv6 sockets. class ost::TCPStream TCP streams are used to represent TCP client connections to a server by TCP protocol servers for accepting client connections. class ost::TCPSession The TCP session is used to primarily to represent a client connection that can be managed on a separate thread. class ost::SimpleTCPStream Simple TCP Stream, to be used with Common C++ Library. Namespaces namespace ost Macros #define INVALID_SOCKET -1 #define _IOLEN64 #define _IORET64 #define MSG_DONTWAIT 0 #define MSG_NOSIGNAL 0 #define SOCK_DCCP 6 #define IPPROTO_DCCP 33 #define SOL_DCCP 269 #define DCCP_SOCKOPT_AVAILABLE_CCIDS 12 #define DCCP_SOCKOPT_CCID 13 #define DCCP_SOCKOPT_TX_CCID 14 #define DCCP_SOCKOPT_RX_CCID 15 Typedefs typedef int SOCKET Variables class __EXPORT ost::SimpleTCPStream Detailed Description Network addresses and sockets related classes. Macro Definition Documentation #define _IOLEN64 Referenced by ost::SocketPort::peek(), ost::UDPSocket::peek(), ost::TCPStream::peek(), ost::SocketPort::receive(), ost::UDPReceive::receive(), ost::SocketPort::send(), ost::UDPTransmit::send(), and ost::UDPTransmit::transmit(). #define _IORET64 #define DCCP_SOCKOPT_AVAILABLE_CCIDS 12 #define DCCP_SOCKOPT_CCID 13 #define DCCP_SOCKOPT_RX_CCID 15 #define DCCP_SOCKOPT_TX_CCID 14 #define INVALID_SOCKET -1 #define IPPROTO_DCCP 33 #define MSG_DONTWAIT 0 Referenced by ost::UDPTransmit::transmit(). #define MSG_NOSIGNAL 0 Referenced by ost::UDPTransmit::send(), and ost::UDPTransmit::transmit(). #define SOCK_DCCP 6 #define SOL_DCCP 269 Typedef Documentation typedef int SOCKET Author Generated automatically by Doxygen for GNU CommonC++ from the source code. GNU CommonC++ Sat Jun 23 2012 socket.h(3)
All times are GMT -4. The time now is 09:48 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy