Displaying 4 results from an estimated 4 matches for "sconnection".
Did you mean:
connection
2018 Aug 01
0
Strange vncserver behavior
...stening for VNC connections on all interface(s), port 5902
?vncext:????? created VNC server for screen 0
Wed Aug? 1 08:45:23 2018
?ComparingUpdateTracker: 0 pixels in / 0 pixels out
?ComparingUpdateTracker: (1:nan ratio)
Wed Aug? 1 08:51:01 2018
?Connections: accepted: 192.168.160.20::53318
?SConnection: Client needs protocol version 3.8
?SConnection: Client requests security type VeNCrypt(19)
?SVeNCrypt:?? Client requests security type TLSVnc (258)
etc.
========
what is going on with systemctl?
thanks
2010 Mar 11
3
VNC viewer blank screen
Hi,
I have configured vnc on my centos server machine. But, unable to access the
vnc client. When ever i try to access my client. All I get is a blank screen
with only mouse working.
I am very clue less about the problem, Can I find out this error.
Regards,
Vijay Shanker Dubey
-------------- next part --------------
An HTML attachment was scrubbed...
URL:
2008 Jul 06
3
VNC 'fix' for 256 colour game only shows 2 colours?
...elease 10499901,
Sun Jul 6 16:50:44 2008
vncext: VNC extension running!
vncext: Listening for VNC connections on port 5902
vncext: created VNC server for screen 0
Failed to allocate for full set of GLX visuals
Sun Jul 6 16:51:11 2008
Connections: accepted: 127.0.0.1::35753
SConnection: Client needs protocol version 3.8
SConnection: Client requests security type VncAuth(2)
Sun Jul 6 16:51:14 2008
VNCSConnST: Server default pixel format depth 8 (8bpp) colour-map
VNCSConnST: Client pixel format depth 8 (8bpp) colour-map
I'm suspicious of whether the line "Failed...
2005 Sep 18
0
Updated rawConnection() patch
...new);
- error(_("allocation of text connection failed"));
- }
- strcpy(new->class, "textConnection");
+ if(!new) goto f1;
+ new->class = (char *) malloc(strlen("xxxxConnection") + 1);
+ if(!new->class) goto f2;
+ sprintf(new->class, "%sConnection", isText ? "text" : "raw");
new->description = (char *) malloc(strlen(description) + 1);
- if(!new->description) {
- free(new->class); free(new);
- error(_("allocation of text connection failed"));
- }
+ if(!new->description) goto f3;...