bind() and SIGSEGV when usign UDP



 DEVELOP > c-Plus-Plus > bind() and SIGSEGV when usign UDP

LINK TO THIS PAGE  


rating :  0   |  0


  Page 1 of 1

1

 
Topic: DEVELOP > c-Plus-Plus
User: "USUN_TO"
Date: 30 Jul 2005 03:25:55 PM
Object: bind() and SIGSEGV when usign UDP
Hi, i got problem
when i bind in this way:
local_addr.sin_family = AF_INET;
local_addr.sin_addr.s_addr = inet_addr("127.0.0.1");
local_addr.sin_port = htons(CLIENT_PORT);
i can easly bind port without any SIGSEGV (segmentation fault) but MSDN
wrote:
"If an application does not care what local address is assigned, specify
the manifest constant value ADDR_ANY for the sa_data member of the name
parameter. This allows the underlying service provider to use any
appropriate network address, potentially simplifying application
programming in the presence of multihomed hosts (that is, hosts that
have more than one network interface and address)."
so how write this? What is diference betwean ADDR_ANY and INADDR_ANY?
Thiese lines are wrong cause makes SIGSEGV:
local_addr.sin_addr.s_addr = htonl(ADDR_ANY);
local_addr.sin_addr.s_addr = htons(ADDR_ANY);
local_addr.sin_addr.s_addr = htonl(INADDR_ANY);
local_addr.sin_addr.s_addr = htons(INADDR_ANY);
local_addr.sin_addr.s_addr = INADDR_ANY;
local_addr.sin_addr.s_addr = ADDR_ANY;
Plz help me...
.

User: "Larry I Smith"

Title: Re: bind() and SIGSEGV when usign UDP 30 Jul 2005 04:23:25 PM
USUN_TO wrote:

Hi, i got problem

when i bind in this way:

local_addr.sin_family = AF_INET;
local_addr.sin_addr.s_addr = inet_addr("127.0.0.1");
local_addr.sin_port = htons(CLIENT_PORT);

i can easly bind port without any SIGSEGV (segmentation fault) but MSDN
wrote:

"If an application does not care what local address is assigned, specify
the manifest constant value ADDR_ANY for the sa_data member of the name
parameter. This allows the underlying service provider to use any
appropriate network address, potentially simplifying application
programming in the presence of multihomed hosts (that is, hosts that
have more than one network interface and address)."

so how write this? What is diference betwean ADDR_ANY and INADDR_ANY?

Thiese lines are wrong cause makes SIGSEGV:

local_addr.sin_addr.s_addr = htonl(ADDR_ANY);
local_addr.sin_addr.s_addr = htons(ADDR_ANY);
local_addr.sin_addr.s_addr = htonl(INADDR_ANY);
local_addr.sin_addr.s_addr = htons(INADDR_ANY);
local_addr.sin_addr.s_addr = INADDR_ANY;
local_addr.sin_addr.s_addr = ADDR_ANY;

Plz help me...

Below is a function extracted from one of my older C++
libs for Windows. Ignore the calls to IsOpen() and Close(),
they reside elsewhere, but the code may still help you
find your problem. Remember to add '#include <winsock.h>'
in your code.
int
ServerIpSocket::BindToPort(int port, int queueSize)
{
SOCKADDR_IN serverSockAddr;
int status;
// if already associated with a port, close
if (IsOpen())
Close();
/* MANDATORY - zero the sockaddr_in structure */
memset (&serverSockAddr, 0, sizeof (serverSockAddr));
/* specify the port portion of the address */
serverSockAddr.sin_port = htons ((u_short)port);
/* specify the address family as Internet */
serverSockAddr.sin_family = AF_INET;
/* specify that the address does not matter */
serverSockAddr.sin_addr.s_addr = htonl (INADDR_ANY);
/* create a socket */
theSocket = socket (AF_INET, SOCK_STREAM, 0);
if (theSocket == INVALID_SOCKET)
{
cerr << "ERROR: socket unsuccessful"
<< endl;
return (-1);
}
/* associate the socket with the address */
status = bind (theSocket,
(LPSOCKADDR) & serverSockAddr,
sizeof (serverSockAddr));
if (status == SOCKET_ERROR)
{
cerr << "ERROR: bind unsuccessful" << endl;
// close theSocket opened by the above socket() call
Close();
return (-1);
}
// allow the socket to take connections.
// specify a waiting connection queue size
status = listen (theSocket, queueSize);
if (status == SOCKET_ERROR)
{
cerr << "ERROR: listen unsuccessful" << endl;
// close theSocket opened by the above socket() call
Close();
return (-1);
}
// NOTE: For this socket class, we are NEVER connected to a client.
// ConnectToClient() will create/return a NEW socket to handle
// each client connection. Therefore we NEVER set "isConn" to
// non-zero for this class (ie: IsConnected() always returns
// zero)
return 0;
}
Regards,
Larry
.
User: "USUN_TO"

Title: Re: bind() and SIGSEGV when usign UDP 30 Jul 2005 11:23:02 PM
Larry I Smith napisał(a):

USUN_TO wrote:

Thx a lot Larry but the same code under linux works fine and the same
(of course changing to WinSock spec. ) when i bind UDP i got SIGSEGV
(segmentation fault) but when i continue program works fine (not always
stable - so i tracking errors)
.
User: "red floyd"

Title: OT: bind() and SIGSEGV when usign UDP 31 Jul 2005 01:05:02 AM
USUN_TO wrote:

Larry I Smith napisał(a):

USUN_TO wrote:


Thx a lot Larry but the same code under linux works fine and the same
(of course changing to WinSock spec. ) when i bind UDP i got SIGSEGV
(segmentation fault) but when i continue program works fine (not always
stable - so i tracking errors)

This is OT, but...
The other thing under Winsock is to make damn sure you call WSAStartup.
.
User: "USUN_TO"

Title: Re: OT: bind() and SIGSEGV when usign UDP 31 Jul 2005 10:49:09 AM

The other thing under Winsock is to make damn sure you call WSAStartup.

I use Bcc32 5.5 and Newes MiniGW (from Dev-Cpp 4.9.9.2 with update) and
got thesame SIGSEGV :
http://republika.pl/aao_auth/UDP.rar
there is the source
and plz use GDB as debugger
.


User: "Larry I Smith"

Title: Re: bind() and SIGSEGV when usign UDP 30 Jul 2005 11:58:26 PM
USUN_TO wrote:

Larry I Smith napisał(a):

USUN_TO wrote:


Thx a lot Larry but the same code under linux works fine and the same
(of course changing to WinSock spec. ) when i bind UDP i got SIGSEGV
(segmentation fault) but when i continue program works fine (not always
stable - so i tracking errors)

Is the return value of bind() WSAEACCES?
If it is, then (from the MSDN ref for Winsock), this might be
the problem:
<quote>
Attempt to connect datagram socket to broadcast address failed
because setsockopt() option SO_BROADCAST is not enabled.
</quote>
To use datagrams you have to enable SO_BROADCAST by calling
setsocketopt() before doing the bind().
See the MSDN Winsock docs for setsocketopt() for details.
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/winsock/winsock/setsockopt_2.asp
Regards,
Larry
.



User: "Larry I Smith"

Title: Re: bind() and SIGSEGV when usign UDP 30 Jul 2005 04:11:19 PM
USUN_TO wrote:

Hi, i got problem

when i bind in this way:

local_addr.sin_family = AF_INET;
local_addr.sin_addr.s_addr = inet_addr("127.0.0.1");
local_addr.sin_port = htons(CLIENT_PORT);

i can easly bind port without any SIGSEGV (segmentation fault) but MSDN
wrote:

"If an application does not care what local address is assigned, specify
the manifest constant value ADDR_ANY for the sa_data member of the name
parameter. This allows the underlying service provider to use any
appropriate network address, potentially simplifying application
programming in the presence of multihomed hosts (that is, hosts that
have more than one network interface and address)."

so how write this? What is diference betwean ADDR_ANY and INADDR_ANY?

Thiese lines are wrong cause makes SIGSEGV:

local_addr.sin_addr.s_addr = htonl(ADDR_ANY);
local_addr.sin_addr.s_addr = htons(ADDR_ANY);
local_addr.sin_addr.s_addr = htonl(INADDR_ANY);
local_addr.sin_addr.s_addr = htons(INADDR_ANY);
local_addr.sin_addr.s_addr = INADDR_ANY;
local_addr.sin_addr.s_addr = ADDR_ANY;

Plz help me...

Your posting appears to be from a Windows machine.
If you're asking about the bind() found in the Windows
Winsock lib ("Windows Sockets 2"), then you might get help
in a Windows newsgroup. If you're asking about the socket
bind() in Unix or Linux networking, then you'll have to
ask for help in a newsgroup for the appropriate OS.
Regards,
Larry
.

User: "red floyd"

Title: Re: bind() and SIGSEGV when usign UDP 30 Jul 2005 03:48:07 PM
USUN_TO wrote:

[redacted]

You're OT here. Ask in comp.unix.programmer.
.


  Page 1 of 1

1

 


Related Articles
 

NEWER

pg.1232     pg.940     pg.716     pg.544     pg.412     pg.311     pg.234     pg.175     pg.130     pg.96     pg.70     pg.50     pg.35     pg.24     pg.16     pg.10     pg.6     pg.3     pg.1

OLDER