The UNIX and Linux Forums  

Go Back   The UNIX and Linux Forums > Special Forums > IP Networking
.
google unix.com



IP Networking Learn TCP/IP, Internet Protocol, Routing, Routers, Network protocols in this UNIX and Linux forum.

More UNIX and Linux Forum Topics You Might Find Helpful
Thread Thread Starter Forum Replies Last Post
Send email with attachement-Getting connection refused by domain samuelc UNIX for Dummies Questions & Answers 1 02-08-2008 12:25 PM
Connection refused to ftp from a unix server to a windows pc alexcol Shell Programming and Scripting 1 06-21-2007 01:35 PM
rsh problem connection refused Mace Shell Programming and Scripting 4 06-12-2006 11:28 PM
telnet connection refused printrick SCO 2 01-11-2006 04:38 PM
Connection refused from pop server bluehell IP Networking 2 06-20-2003 11:03 AM

Closed Thread
English Japanese Spanish French German Portuguese Italian Dutch Swedish Russian Norwegian Hungarian Hebrew Danish Bulgarian Greek Powered by Powered by Google
 
LinkBack Thread Tools Search this Thread Rate Thread Display Modes
  #1 (permalink)  
Old 06-04-2008
Dudu1984 Dudu1984 is offline
Registered User
  
 

Join Date: Jun 2008
Posts: 1
Connection refused

Hi there,

Anything will help.

I have running server on computer and want to connect from some clients.

Server:
memset(&hints, 0, sizeof(hints));
hints.ai_family = domain;
hints.ai_socktype = SOCK_STREAM;

error = getaddrinfo("localhost", "8300", &hints, &res0);
if (error)
{
return false;
}

for (res = res0; res; res = res->ai_next)
{
socket_d = socket(res->ai_family, res->ai_socktype, res->ai_protocol);
int result = bind(socket_desc, (const sockaddr *) res->ai_addr, res->ai_addrlen);
}

And I want to connect from some client:

memset(&hints, 0, sizeof(hints));
hints.ai_family = PF_UNKNOWN;
hints.ai_socktype = SOCK_STREAM;

error = getaddrinfo("195.113.21.133", "8300", &hints, &res0);

if (error)
{
return false;
}

for (res = res0; res; res = res->ai_next)
{
socket_d = socket(res->ai_family, res->ai_socktype, res->ai_protocol);
int result = connect(socket_d, res->ai_addr, res->ai_addrlen);
}


When I put "localhost" in getaddrinfo everything is fine. But when I tried to put some other IP, it crashes. IP is correct, both computers are on same network.

THX for any advice!
  #2 (permalink)  
Old 06-04-2008
gaurav.agrawal gaurav.agrawal is offline
Registered User
  
 

Join Date: Jun 2008
Posts: 2
Hello,

The socket() call should be made on the localhost, which means that you wnat to create a socket on the localmachine

In the connect() call, mention the address of the server which you want to connect.

and on the server side, after socket and bind, listen and accept functions should be called for listening and accepting socket from the client.

Regards
Gaurav
Closed Thread

Bookmarks

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On




All times are GMT -4. The time now is 04:36 PM.


Powered by: vBulletin, Copyright ©2000 - 2006, Jelsoft Enterprises Limited. Language Translations Powered by .
vBCredits v1.4 Copyright ©2007 - 2008, PixelFX Studios
The UNIX and Linux Forums Content Copyright ©1993-2009. All Rights Reserved.Ad Management by RedTyger

Content Relevant URLs by vBSEO 3.2.0