Search found 10 matches

by mantracker
Mon Feb 05, 2018 11:36 pm
Forum: SLikeNet - Support
Topic: Integrating NATPunchSamples into external projects
Replies: 3
Views: 31965

Re: Integrating NATPunchSamples into external projects

Hi Luke, I was able to integrate Raknet into our project after wrangling with it quite a bit. It seems that I will have to write pretty low level netcode in Unreal to integrate SLikeNet because as you said, other applications can't connect using the hole punched by RakNet. That being said, i am work...
by mantracker
Thu Feb 01, 2018 2:02 am
Forum: SLikeNet - Support
Topic: Integrating NATPunchSamples into external projects
Replies: 3
Views: 31965

Integrating NATPunchSamples into external projects

Hi, so I finally got NATCompleteClient and NATCompleteServer working and running. Now comes the hard part of figuring out how to integrate them into my Unreal project. Prior to trying to integrate the samples into Unreal, I am just trying to do some basic testing. Specifically, I am able to create a...
by mantracker
Tue Jan 30, 2018 12:27 am
Forum: SLikeNet - Support
Topic: Cannot build NATCompleteServer using CMake
Replies: 22
Views: 90900

Re: Cannot build NATCompleteServer using CMake

If the logs you provided there are accurate then it seems as if you entered the wrong GUID of the listening client when setting up the "other client". The Listening client reported its GUID to be: 67555774598987172 According to the log in the "other client" you entered: 1076360901365999200 Regardin...
by mantracker
Mon Jan 29, 2018 6:40 pm
Forum: SLikeNet - Support
Topic: Cannot build NATCompleteServer using CMake
Replies: 22
Views: 90900

Re: Cannot build NATCompleteServer using CMake

So I've tried to add both the listening client, and the connecting client as well. The listening client is fine, but the connecting client is not. I've attached all the logs below: Also, note that I barely made any modifications to the samples. I assume it's just supposed to work out of the box righ...
by mantracker
Mon Jan 29, 2018 6:24 pm
Forum: SLikeNet - Support
Topic: Cannot build NATCompleteServer using CMake
Replies: 22
Views: 90900

Re: Cannot build NATCompleteServer using CMake

So it seems as if you successfully run the NATPunchthrough server and the client can also successfully establish a connection to the server. The error you are getting (ID_NET_TARGET_NOT_CONNECTED) suggests that the target you are setting in the client to pass the data through by the server didn't c...
by mantracker
Fri Jan 26, 2018 8:00 pm
Forum: SLikeNet - Support
Topic: Cannot build NATCompleteServer using CMake
Replies: 22
Views: 90900

Re: Cannot build NATCompleteServer using CMake

From the netstat output you sent me I would conclude that everything seems to work fine. The port is open (see line 6 in the output you sent me). Did you actually try to connect a NATCompleteClient to the server? In case you wanna give a native Linux binary a try, I just fixed the build issues of t...
by mantracker
Fri Jan 26, 2018 12:50 am
Forum: SLikeNet - Support
Topic: Cannot build NATCompleteServer using CMake
Replies: 22
Views: 90900

Re: Cannot build NATCompleteServer using CMake

I did several detailed test runs over the day. As far as my tests go everything seems to work with the NATCompleteServer sample in all of my test environments which is: - Windows 10 1709 (64-bit) - Windows 10 1703 (64-bit) - Ubuntu 16.04 (32-bit) - Ubuntu 14.04 (64-bit) Let's tackle your issue from...
by mantracker
Thu Jan 25, 2018 12:31 am
Forum: SLikeNet - Support
Topic: Cannot build NATCompleteServer using CMake
Replies: 22
Views: 90900

Re: Cannot build NATCompleteServer using CMake

This is weird. I don't have an immediate other idea at hand. Looks like I'll have to test this on the cloud instance myself. I try to get this squeezed in at some point (atm we are busy putting together the 0.1.1 release). I'll get back to you once I have further information. I tested this on both ...
by mantracker
Sun Jan 21, 2018 11:32 pm
Forum: SLikeNet - Support
Topic: Cannot build NATCompleteServer using CMake
Replies: 22
Views: 90900

Re: Cannot build NATCompleteServer using CMake

The error is about your WS2_32.dll not providing the required inet_pton function. This is part of the Windows DLL and not SLikeNet/RakNet. Hence, using the static lib or dynamic lib won't make a difference. I take it you are using Wine to run the exe on Linux? If so, the changelog entry for Wine 1....
by mantracker
Sun Jan 21, 2018 10:29 pm
Forum: SLikeNet - Support
Topic: Cannot build NATCompleteServer using CMake
Replies: 22
Views: 90900

Re: Cannot build NATCompleteServer using CMake

The sample integration in the CMake project is unfortunately not working entirely yet (note, this was also broken in RakNet). SLikeNet 0.1.0 fixed part of the issues, but I'm not sure whether this suffices for you. You can try defining RAKNET_ENABLE_SAMPLES when configuring CMake. This should produ...