Sponsored Content
Top Forums Programming Linux BSD sockets blocking issue Post 302222186 by johnmb on Wednesday 6th of August 2008 07:19:41 AM
Old 08-06-2008
my code

The following is my code for both server and client sockets: -
Code:
    bzero(&sa,sizeof(struct sockaddr_in)); /* clear our address */ 

    if (master) {

        if (gethostname(myname,MAXHOSTNAME) < 0) std::cerr << "Error hostname: " << myname; /* who are we? */ 
        hp= gethostbyname(myname); /* get our address info */     

        if (hp != NULL)  { 
            sa.sin_family= hp->h_addrtype; /* this is our host address */ 
            sa.sin_port= htons(port); /* this is our port number */ 
        }

        if ((s= socket(AF_INET,SOCK_STREAM,0)) >= 0)  {          /* create socket */  

            int on = 1;
            setsockopt(s, SOL_SOCKET, SO_REUSEADDR, &on, sizeof(on)); 

            if (bind(s, reinterpret_cast<struct sockaddr*>(&sa), sizeof sa) >= 0)  {    /* bind address to socket */ 

                listen(s, 3); /* max # of queued connects */ 
                established = true;
                master_socket_ref = s;

                int flags = fcntl(master_socket_ref, F_GETFL, 0);
                fcntl(master_socket_ref, F_SETFL, flags | O_NONBLOCK | O_NOCTTY | O_NDELAY | O_RDWR | O_ASYNC); 

            }
            else close(s);
        } 
    }
    else {

        if ((hp= gethostbyname(node_name(node_ref).c_str())) != NULL)  {
  
            bzero(&sa,sizeof(sa)); 
            bcopy(hp->h_addr, (char *)&sa.sin_addr, hp->h_length); /* set address */ 

            sa.sin_family= hp->h_addrtype; 
            sa.sin_port= htons(port); 

            if ((s= socket(hp->h_addrtype,SOCK_STREAM,0)) >= 0)  {   /* get socket */ 

                int on = 1;
                setsockopt(s, SOL_SOCKET, SO_REUSEADDR, &on, sizeof(on)); 

                if (connect(s, reinterpret_cast<struct sockaddr*>(&sa), sizeof sa) >= 0)  {       /* Connect */
                    established = true;
                    socket_ref = s;

                    int flags = fcntl(socket_ref, F_GETFL, 0);
                    fcntl(socket_ref, F_SETFL, flags | O_NONBLOCK | O_NOCTTY | O_NDELAY | O_RDWR | O_ASYNC); 
                }
                else close(s);   
            }
        }
    }

If I have set up a server listening socket using the above code, I accept a client as follows :-
Code:
    getsockname(master_socket_ref, reinterpret_cast<struct sockaddr*>(&isa), reinterpret_cast<socklen_t*>(&i));           /* for accept() */ 

    int on = 1;
    socket_ref = accept(master_socket_ref, reinterpret_cast<struct sockaddr*>(&isa), reinterpret_cast<socklen_t*>(&i));
    setsockopt(socket_ref, SOL_SOCKET, SO_REUSEADDR, &on, sizeof(on)); 

    int flags = fcntl(socket_ref, F_GETFL, 0);
    fcntl(socket_ref, F_SETFL, flags | O_NONBLOCK | O_NOCTTY | O_NDELAY | O_RDWR | O_ASYNC);


Last edited by jim mcnamara; 08-06-2008 at 08:22 AM.. Reason: please use code tags
 

8 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

linux + bsd + solaris

I prepare to install linux distros , freebsd and solaris(totally 6 OS) in a 40G harddisk, but I fail to do it, so I would like to ask some question here. Can different distros share the same linux swap?or each distros need to have their own? I made 6 partitions(5 x 7G , 1 x 4G) and 256M(I... (8 Replies)
Discussion started by: jcheng
8 Replies

2. BSD

for linux and BSD users interested in Unix system V/bsd

for all you unix/linux interested heres an online book for free that covers the basics of BSD SysV Unix commands and applications . giving the average linux user a perspective on the differences in context of the two operating systems and for BSD users covers material as a refernce guide. ... (0 Replies)
Discussion started by: moxxx68
0 Replies

3. Programming

C programming on Linux/BSD : which tools to use?

Hello there, i've lurked this forum for a while (in few month i will have been registered for two years) but this is my firts post. Well, after having looked to C language as a black monster, i finally have decided to learn it, and to learn it very well! So, i'm quite new to C, although i... (1 Reply)
Discussion started by: Freddie
1 Replies

4. Cybersecurity

[Linux] Blocking Your w00tw00ts with iptables

I noticed a few w00tw00ts in our Apache2 logfile the other day, so I thought I would write a quick post on blocking them with iptables. Feel free to improve upon any of my scripts or ideas in this thread. First of all, what is a w00tw00t and where might we find one? Well, a w00tw00t is an... (10 Replies)
Discussion started by: Neo
10 Replies

5. UNIX for Dummies Questions & Answers

Partial Write for sockets in LINUX

We have a server-client communication in our application. Sockets are used for the communication. We are using AF_INET sockets with SOCK_STREAM(TCP/IP). Also these sockets are in Non Blocking mode (O_NONBLOCK). Application is written in C++ on UNIX. In our system the Server will write to a... (4 Replies)
Discussion started by: sanushchacko
4 Replies

6. Programming

Sockets (C under Linux)

Hi, I have to write an UDP broadcast. It works so far, but how can I get the actual network address at runtime? Should run under Linux and Unix (Solaris). Thanks (1 Reply)
Discussion started by: peng1967
1 Replies

7. UNIX and Linux Applications

Unix/Linux/BSD

I'm planning to learn Unix/Linux as much as possible to be able to expert on Unix system. I have a few questions in regard to Unix system 1. How come they are so many different type of Linux, and do they follow same standard commands in the Unix system? I'm afraid of having so many choices... (6 Replies)
Discussion started by: mindful123
6 Replies

8. Programming

Which are blocking and non-blocking api's in sockets in C ?

among the below socket programming api's, please let me know which are blocking and non-blocking. socket accept bind listen write read close (2 Replies)
Discussion started by: VSSajjan
2 Replies
SOCKSTAT(1)						    BSD General Commands Manual 					       SOCKSTAT(1)

NAME
sockstat -- list open sockets SYNOPSIS
sockstat [-46cLlu] [-j jid] [-p ports] [-P protocols] DESCRIPTION
The sockstat command lists open Internet or UNIX domain sockets. The following options are available: -4 Show AF_INET (IPv4) sockets. -6 Show AF_INET6 (IPv6) sockets. -c Show connected sockets. -j jid Show only sockets belonging to the specified jail ID. -L Only show Internet sockets if the local or foreign addresses are not in the loopback network prefix 127.0.0.0/8, or do not con- tain the IPv6 loopback address ::1. -l Show listening sockets. -p ports Only show Internet sockets if either the local or foreign port number is on the specified list. The ports argument is a comma- separated list of port numbers and ranges specified as first and last port separated by a dash. -P protocols Only show sockets of the specified protocols. The protocols argument is a comma-separated list of protocol names, as they are defined in protocols(5). -u Show AF_LOCAL (UNIX) sockets. If neither -4, -6 or -u is specified, sockstat will list sockets in all three domains. If neither -c or -l is specified, sockstat will list both listening and connected sockets. The information listed for each socket is: USER The user who owns the socket. COMMAND The command which holds the socket. PID The process ID of the command which holds the socket. FD The file descriptor number of the socket. PROTO The transport protocol associated with the socket for Internet sockets, or the type of socket (stream or datagram) for UNIX sockets. LOCAL ADDRESS For Internet sockets, this is the address the local end of the socket is bound to (see getsockname(2)). For bound UNIX sockets, it is the socket's filename. For other UNIX sockets, it is a right arrow followed by the endpoint's filename, or ``??'' if the endpoint could not be determined. FOREIGN ADDRESS (Internet sockets only) The address the foreign end of the socket is bound to (see getpeername(2)). If a socket is associated with more than one file descriptor, it is shown multiple times. If a socket is not associated with any file descriptor, the first four columns have no meaning. SEE ALSO
fstat(1), netstat(1), procstat(1), inet(4), inet6(4), protocols(5) HISTORY
The sockstat command appeared in FreeBSD 3.1. AUTHORS
The sockstat command and this manual page were written by Dag-Erling Smorgrav <des@FreeBSD.org>. BSD
May 16, 2012 BSD
All times are GMT -4. The time now is 10:41 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy