Subversion Repositories Kolibri OS

Compare Revisions

Regard whitespace Rev 2540 → Rev 2541

/kernel/branches/net/applications/telnet/telnet.asm
153,7 → 153,6
 
cmp byte [esi], 0x1b ; escape character
jne .print_byte
mov byte [esi], 0
inc esi
 
cmp word [esi], 0x485b ; move cursor to beginning
170,6 → 169,7
 
@@:
inc esi
inc esi
jmp .print_loop
 
.print_byte:
/kernel/branches/net/network/socket.inc
670,7 → 670,7
cmp [eax + TCP_SOCKET.t_state], TCPS_SYN_RECEIVED ; state must be LISTEN, SYN_SENT or CLOSED
jb .free
 
call TCP_output
call TCP_drop
mov dword [esp+32], 0
 
ret