Displaying 2 results from an estimated 2 matches for "msg_ignore".
Did you mean:
_msg_ignore
2001 Jul 22
1
[patch] ignore SSH2_MSG_IGNORE packets
Hi,
protocolkeepalives sends ssh_msg_ignore, which the ssh2 server handles
incorrectly (i.e. it produces some output to syslog, instead of
ignoring the packet):
Jul 9 11:58:07 ren sshd[16580]: error: Hm, dispatch protocol error:
type 32 plen 4
This patch implements a highly advanced function to ignore these
packets ;)
Matthew
-----------...
2011 Feb 18
1
[PATCH] core: Honor DISPLAY text background color when in VGA mode
...core/conio.inc | 16 ++++++++++++++++
1 files changed, 16 insertions(+), 0 deletions(-)
diff --git a/core/conio.inc b/core/conio.inc
index b450502..0784e65 100644
--- a/core/conio.inc
+++ b/core/conio.inc
@@ -100,9 +100,25 @@ msg_normal: call write_serial_displaymask ; Write to serial port
jz msg_ignore
mov bl,[TextAttribute]
mov bh,[BIOS_page]
+ cmp cl,02h
+ jnz .text
+ push ax
+ mov al,0xdb ; solid block
+ shr bl,4 ; background color
mov ah,09...