From 0c54c2b5a3703acc26568605966a324e11c01d5e Mon Sep 17 00:00:00 2001 From: havoc Date: Mon, 8 May 2006 10:33:02 +0000 Subject: [PATCH] fixes to the test program git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@6349 d7cf8633-e32d-0410-b094-e92efae38249 --- lhnet.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/lhnet.c b/lhnet.c index 5beafc77..e244a649 100644 --- a/lhnet.c +++ b/lhnet.c @@ -777,6 +777,8 @@ int main(int argc, char **argv) lhnetaddress_t myaddy1; lhnetaddress_t myaddy2; lhnetaddress_t myaddy3; + lhnetaddress_t localhostaddy1; + lhnetaddress_t localhostaddy2; int test1; int test2; @@ -788,13 +790,15 @@ int main(int argc, char **argv) printf("calling LHNET_FromPort twice to create two local addresses\n"); LHNETADDRESS_FromPort(&myaddy1, LHNETADDRESSTYPE_INET4, 4000); LHNETADDRESS_FromPort(&myaddy2, LHNETADDRESSTYPE_INET4, 4001); + LHNETADDRESS_FromString(&localhostaddy1, "127.0.0.1", 4000); + LHNETADDRESS_FromString(&localhostaddy2, "127.0.0.1", 4001); printf("calling LHNET_OpenSocket_Connectionless twice to create two local sockets\n"); sock1 = LHNET_OpenSocket_Connectionless(&myaddy1); sock2 = LHNET_OpenSocket_Connectionless(&myaddy2); printf("calling LHNET_Write to send a packet from the first socket to the second socket\n"); - test1 = LHNET_Write(sock1, buffer, blen, &myaddy2); + test1 = LHNET_Write(sock1, buffer, blen, &localhostaddy2); printf("sleeping briefly\n"); #ifdef WIN32 Sleep (100); -- 2.39.2