tags:

views:

47

answers:

2

Is it possible for an iphone to send UDP messages through an IP on port 3330?

Thanks! Elijah

+1  A: 

Of course. You can open an UDP connection with BSD sockets API.

Check out these functions:

  1. socket()
  2. connect()
  3. bind()
  4. send()
  5. recv()
  6. sendto()
  7. recvfrom()
Pablo Santa Cruz
+1  A: 

Checkout the AsyncUdpSocket Class from cocoaasyncsocket. This should make things easier.

vikingosegundo