Welcome, Guest. Please login or register. Did you miss your activation email?

Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - MillionthVector

Pages: [1]
1
Network / Re: SFML 2.0 Network Examples?
« on: December 14, 2012, 11:12:11 pm »
Just what I needed, thanks!


2
Network / SFML 2.0 Network Examples?
« on: December 14, 2012, 09:28:01 pm »
I was wondering if there are any really simple examples showing the very basics of how to set up a server and a client and send data through a TCP and UDP connection. I've been searching the internet for awhile, and the examples provided with the 2.0 download are already compiled so I've been having a bit of trouble getting started :'( .

Could someone point me in the right direction?

Thanks!

3
Network / Re: Network module, undefined referance
« on: December 12, 2012, 10:55:25 pm »
Okay, did it and now it works, thanks a ton! ;D

4
Network / Re: Network module, undefined referance
« on: December 12, 2012, 06:33:08 pm »
Oh, sorry, I'm using debug.

I don't have anything in the linker settings, I chose SFML project when I started the new project.

Thanks :D.

5
Network / Re: Network module, undefined referance
« on: December 12, 2012, 05:55:36 pm »
I use debug/release, and have used Window and Graphics successfully.
The only library I'm using is SFML.

6
Network / Network module, undefined reference[Solved]
« on: December 12, 2012, 05:42:53 pm »
The other modules I've tried seem to work, but when I try to use the network module I keep getting undefined reference errors, for example:

#include <SFML/Network.hpp>
int main()
{
    sf::IPAddress Address1;
    return EXIT_SUCCESS;
}
gives this error:

"""

obj\Debug\main.o||In function `main':|
C:\Documents and Settings\User\My Documents\testthing\main.cpp|5|undefined reference to `sf::IPAddress::IPAddress()'|
||=== Build finished: 1 errors, 0 warnings (0 minutes, 1 seconds) ===|

"""
OS: WindowsXP
Intel GMA 950 integrated
SFML 1.6

It happens when I try to use other parts of the module as well, I started using SFML last Saturday so it could be something simple, dunno :(.

Thank you very much for any help.

Pages: [1]