0

for my iPhone app i'd like to make all incoming tcp connections to port 1000 of my iPhone/iPad (for example IP: 10.1.2.10) to be forward to the port 1000 on host 10.1.2.250.

can someone help me?

HugoBoss
  • 95
  • 3
  • 11

1 Answers1

2

You would use TCP and something like CocoaAsyncSocket and/or SocketKit.

Other related question on SO:

Building a Server/Client application in Cocoa

Community
  • 1
  • 1
Jordan
  • 2,992
  • 2
  • 20
  • 29
  • i have a service runnung on this port on my server. some webpages asks for this services, so i need a way to forward the requests. – HugoBoss Mar 29 '13 at 06:12