Changeset 7435ccf


Ignore:
Timestamp:
2007-10-18T19:03:02Z (17 years ago)
Author:
Jelmer Vernooij <jelmer@…>
Branches:
master
Children:
2231302
Parents:
e9b755e
Message:

Fix indentation.

Files:
2 edited

Legend:

Unmodified
Added
Removed
  • bitlbee.c

    re9b755e r7435ccf  
    4545        log_link( LOGLVL_WARNING, LOGOUTPUT_SYSLOG );
    4646       
    47         memset(&hints, 0, sizeof(hints));
     47        memset( &hints, 0, sizeof( hints ) );
    4848        hints.ai_family = PF_UNSPEC;
    4949        hints.ai_socktype = SOCK_STREAM;
    5050        hints.ai_flags = AI_ADDRCONFIG | AI_PASSIVE;
    5151
    52         i = getaddrinfo(global.conf->iface, global.conf->port, &hints,
    53                                                 &addrinfo_bind);
    54         if (i) {
     52        i = getaddrinfo( global.conf->iface, global.conf->port, &hints,
     53                                                &addrinfo_bind );
     54        if ( i ) {
    5555                log_message( LOGLVL_ERROR, "Couldn't parse address `%s': %s",
    5656                                         global.conf->iface, gai_strerror(i) );
     
    6060        global.listen_socket = -1;
    6161
    62         for (res = addrinfo_bind; res; res = res->ai_next) {
    63                 global.listen_socket = socket(res->ai_family, res->ai_socktype,
    64                                                                           res->ai_protocol);
    65                 if (global.listen_socket < 0)
     62        for ( res = addrinfo_bind; res; res = res->ai_next ) {
     63                global.listen_socket = socket( res->ai_family, res->ai_socktype,
     64                                                                           res->ai_protocol );
     65                if ( global.listen_socket < 0 )
    6666                        continue;
    6767
     
    7171                                        sizeof( i ) );
    7272
    73                 i = bind( global.listen_socket, res->ai_addr, res->ai_addrlen);
     73                i = bind( global.listen_socket, res->ai_addr, res->ai_addrlen );
    7474                if( i == -1 )
    7575                {
     
    8181        }
    8282
    83         freeaddrinfo(addrinfo_bind);
     83        freeaddrinfo( addrinfo_bind );
    8484
    8585        i = listen( global.listen_socket, 10 );
  • irc.c

    re9b755e r7435ccf  
    4646        irc_t *irc;
    4747        struct sockaddr_storage sock;
    48         socklen_t socklen = sizeof(sock);
     48        socklen_t socklen = sizeof( sock );
    4949       
    5050        irc = g_new0( irc_t, 1 );
     
    6767        if( global.conf->hostname )
    6868                irc->myhost = g_strdup( global.conf->hostname );
    69         else if( getsockname( irc->fd, (struct sockaddr*) &sock, &socklen ) == 0)
    70         {
    71                 irc->myhost = g_new0(char, NI_MAXHOST);
    72 
    73                 if (getnameinfo((struct sockaddr *)&sock, socklen, irc->myhost,
    74                                                 NI_MAXHOST, NULL, -1, 0)) {
     69        else if( getsockname( irc->fd, (struct sockaddr*) &sock, &socklen ) == 0 )
     70        {
     71                irc->myhost = g_new0( char, NI_MAXHOST );
     72
     73                if (getnameinfo( (struct sockaddr *) &sock, socklen, irc->myhost,
     74                                                NI_MAXHOST, NULL, -1, 0) ) {
    7575                        /* Rare, but possible. */
    76                         strncpy(irc->myhost, "localhost.", NI_MAXHOST);
    77                 }
    78         }
    79        
    80         if( getpeername( irc->fd, (struct sockaddr*) &sock, &socklen ) == 0)
    81         {
    82                 irc->host = g_new0(char, NI_MAXHOST);
    83 
    84                 if (getnameinfo((struct sockaddr *)&sock, socklen, irc->host,
    85                                                 NI_MAXHOST, NULL, -1, 0)) {
     76                        strncpy( irc->myhost, "localhost.", NI_MAXHOST );
     77                }
     78        }
     79       
     80        if( getpeername( irc->fd, (struct sockaddr*) &sock, &socklen ) == 0 )
     81        {
     82                irc->host = g_new0( char, NI_MAXHOST );
     83
     84                if ( getnameinfo( (struct sockaddr *)&sock, socklen, irc->host,
     85                                                NI_MAXHOST, NULL, -1, 0 ) ) {
    8686                        /* Rare, but possible. */
    87                         strncpy(irc->myhost, "localhost.", NI_MAXHOST);
     87                        strncpy( irc->myhost, "localhost.", NI_MAXHOST );
    8888                }
    8989        }
Note: See TracChangeset for help on using the changeset viewer.