Mercurial > pidgin.yaz
diff pidgin/plugins/crazychat/cc_network.c @ 31534:a8cc50c2279f
Remove trailing whitespace
author | Richard Laager <rlaager@wiktel.com> |
---|---|
date | Tue, 04 Jan 2011 06:55:30 +0000 |
parents | f23c41e65f63 |
children |
line wrap: on
line diff
--- a/pidgin/plugins/crazychat/cc_network.c Tue Jan 04 06:42:45 2011 +0000 +++ b/pidgin/plugins/crazychat/cc_network.c Tue Jan 04 06:55:30 2011 +0000 @@ -69,7 +69,7 @@ struct cc_session *session); /** - * Handles checking the network for new feature data and sending out the + * Handles checking the network for new feature data and sending out the * latest features. * @param session the session we're checking for network traffic */ @@ -99,7 +99,7 @@ PurpleConversation *conv; PurpleConvIm *im; char buf[BUFSIZ]; - + session = cc_find_session(cc, name); if (session) return; /* already have a session with this guy */ session = cc_add_session(cc, name); @@ -158,7 +158,7 @@ g_signal_connect(GTK_OBJECT(dialog), "response", G_CALLBACK(invite_handler), args); - + gtk_widget_show_all(dialog); } } @@ -184,7 +184,7 @@ static void cc_net_send_ready(PurpleAccount *account, struct cc_session *session) { struct sock_accept_args *args; - + assert(session); Debug("Initializing the server socket and sending ready message\n"); /* create the server socket */ @@ -261,7 +261,7 @@ char buf[BUFSIZ]; PurpleConversation *conv; PurpleConvIm *im; - + if (response == GTK_RESPONSE_ACCEPT) { assert(args); session = cc_find_session(args->cc, args->name); @@ -319,7 +319,7 @@ sock = accept(session->tcp_sock, (struct sockaddr*)&client_addr, &sin_size); assert(sock != -1); - + /* check if it's a match */ if (client_addr.sin_addr.s_addr == session->peer_ip) { /* cool, we're set */ @@ -354,9 +354,9 @@ struct sockaddr_in my_addr; struct sockaddr_in peer_addr; int reuse; - + /* send/obtain the udp port information */ - + assert(__send(session->tcp_sock, (char*)&session->cc->udp_port, sizeof(session->cc->udp_port)) == sizeof(session->cc->udp_port)); @@ -365,14 +365,14 @@ sizeof(session->peer_port)); Debug("Established a CrazyChat session with %s!\n", session->name); - + /* connect the udp sockets */ - + session->udp_sock = socket(AF_INET, SOCK_DGRAM, 0); assert(!setsockopt(session->udp_sock, SOL_SOCKET, SO_REUSEADDR, &reuse, sizeof(reuse))); - + my_addr.sin_family = AF_INET; my_addr.sin_port = htons(session->cc->udp_port); assert(inet_aton(purple_network_get_my_ip(-1), @@ -387,7 +387,7 @@ Debug("Bound udp sock to port %d, connecting to port %d\n", session->cc->udp_port, session->peer_port); - + memset(&session->features, 0, sizeof(session->features)); session->output = init_output(&session->features, session); @@ -452,7 +452,7 @@ assert(ret != -1); features = &session->features; - + while (ret) { /* have data, let's copy it for output */ struct sockaddr_in from; int fromlen;