Search found 3 matches

by PhonicUK
Sat Mar 08, 2008 5:59 am
Forum: PSP Development
Topic: Using TCP and UDP at Once
Replies: 22
Views: 10681

Yes as long as the port is free, your app should be able to connect to the outside world.

Stick to as few ports as you can. Makes things much eaiser in the long run.
by PhonicUK
Sat Mar 08, 2008 3:54 am
Forum: PSP Development
Topic: Using TCP and UDP at Once
Replies: 22
Views: 10681

Mixing UDP and TCP is usually how its done. TCP for stuff that doesn't need to be fast and instant like login and scores, UDP for things like movement and position. With UDP there is a risk that the packet will either be lost forever, or will show up again later than expected. So you need a means of...
by PhonicUK
Fri Mar 07, 2008 3:17 am
Forum: PSP Development
Topic: Invoking the PSP web browser?
Replies: 1
Views: 1119

Invoking the PSP web browser?

I've had a search through the forums, google, dox etc and can't find anything on this.

How can I make my application invoke the PSP web browser with a given URL? Cheers!