HomeSort by relevance Sort by last modified time
    Searched refs:udpPort (Results 1 - 2 of 2) sorted by null

  /system/extras/tests/bionic/libc/common/
test_udp.c 39 int udpPort = DEFAULT_PORT;
54 udpPort = atoi(optName+1);
55 if (udpPort < 1024 || udpPort > 65535) {
82 si_me.sin_port = htons(udpPort);
87 printf("UDP server listening on %s:%d\n", inet_ntoa(si_me.sin_addr), udpPort);
105 si_other.sin_port = htons(udpPort);
108 printf("UDP client sending packets to %s:%d\n", inet_ntoa(si_other.sin_addr), udpPort);
  /external/jmonkeyengine/engine/src/networking/com/jme3/network/
Network.java 72 public static Server createServer( int tcpPort, int udpPort ) throws IOException
74 return createServer( DEFAULT_GAME_NAME, DEFAULT_VERSION, tcpPort, udpPort );
87 * @param udpPort The port upon which the UDP hosting will listen for new 'fast' UDP
91 public static Server createServer( String gameName, int version, int tcpPort, int udpPort ) throws IOException
93 UdpKernel fast = udpPort == -1 ? null : new UdpKernel(udpPort);

Completed in 110 milliseconds