Home | History | Annotate | Download | only in gdx

Lines Matching defs:Net

26 import com.badlogic.gdx.net.HttpRequestHeader;

27 import com.badlogic.gdx.net.HttpResponseHeader;
28 import com.badlogic.gdx.net.HttpStatus;
29 import com.badlogic.gdx.net.ServerSocket;
30 import com.badlogic.gdx.net.ServerSocketHints;
31 import com.badlogic.gdx.net.Socket;
32 import com.badlogic.gdx.net.SocketHints;
55 public interface Net {
112 * <li><strong>httpMethod:</strong> GET or POST are most common, can use {@link Net.HttpMethods HttpMethods} for static
127 * httpGet.setUrl("http://somewhere.net");
130 * Gdx.net.sendHttpRequest (httpGet, new HttpResponseListener() {
289 * {@link Net#sendHttpRequest(HttpRequest, HttpResponseListener)}. */
330 /** Protocol used by {@link Net#newServerSocket(Protocol, int, ServerSocketHints)} and
331 * {@link Net#newClientSocket(Protocol, String, int, SocketHints)}.