Home
last modified time | relevance | path

Searched refs:httpPort (Results 1 – 9 of 9) sorted by relevance

/external/libvncserver/libvncserver/
Dhttpd.c102 if (rfbScreen->httpPort == 0) { in rfbHttpInitSockets()
103 rfbScreen->httpPort = rfbScreen->port-100; in rfbHttpInitSockets()
107 rfbListenOnTCPPort(rfbScreen->httpPort, rfbScreen->listenInterface)) < 0) { in rfbHttpInitSockets()
111 rfbLog("Listening for HTTP connections on TCP port %d\n", rfbScreen->httpPort); in rfbHttpInitSockets()
112 rfbLog(" URL http://%s:%d\n",rfbScreen->thisHost,rfbScreen->httpPort); in rfbHttpInitSockets()
Dcargs.c167 rfbScreen->httpPort = atoi(argv[++i]); in rfbProcessArguments()
Dmain.c845 screen->httpPort=0; in rfbGetScreen()
/external/libvncserver/test/
Dcargstest.c20 CHECK(httpPort,3002); in main()
/external/libvncserver/x11vnc/
Dremote.c508 if (screen->httpPort == 0) { in http_connections()
512 screen->httpPort = port; in http_connections()
529 if (screen->httpPort != 0 && screen->httpListenSock < 0) { in http_connections()
530 rfbLog("http_connections: failed to listen on http port: %d\n", screen->httpPort); in http_connections()
532 fd6 = listen6(screen->httpPort); in http_connections()
539 if (ipv6_listen && screen->httpPort > 0) { in http_connections()
541 fd6 = listen6(screen->httpPort); in http_connections()
547 screen->httpPort, ipv6_http_fd); in http_connections()
590 screen->httpPort = hp; in reset_httpport()
600 } else if (screen->httpPort == 0) { in reset_httpport()
[all …]
Dscreen.c3866 if ((screen->httpListenSock > -1 || ipv6_http_fd > -1) && screen->httpPort) {
3875 announce_http(screen->httpPort, 2, listen_str, "");
3882 announce_http(screen->httpPort, 2, listen_str, pmsg);
3891 announce_http(screen->httpPort, 0, listen_str, "");
3902 if (screen->httpListenSock > -1 && screen->httpPort) {
Duser.c1169 if (inetd || screen->httpPort == 0) { in handle_one_http_request()
1173 screen->httpPort = port; in handle_one_http_request()
1239 int sock = connect_tcp("127.0.0.1", screen->httpPort); in handle_one_http_request()
Dsslhelper.c3575 if (screen->httpListenSock >= 0 && screen->httpPort > 0) { in accept_openssl()
3592 int hport = screen->httpPort; in accept_openssl()
/external/libvncserver/rfb/
Drfb.h291 int httpPort; member