view src/if_sniff.h @ 2124:dc8a5699253b v7.2.406

updated for version 7.2.406 Problem: Patch 7.2.119 introduces uninit mem read. (Dominique Pelle) Solution: Only used ScreeenLinesC when ScreeenLinesUC is not zero. (Yukihiro Nakadaira) Also clear ScreeenLinesC when allocating.
author Bram Moolenaar <bram@zimbu.org>
date Tue, 23 Mar 2010 15:36:35 +0100
parents 3fc0f57ecb91
children 7c8c7c95a865
line wrap: on
line source

/*
 * if_sniff.h Interface between Vim and SNiFF+
 *
 * $Id$
 */

#ifndef __if_sniff_h__
#define __if_sniff_h__

extern int  want_sniff_request;
extern int  sniff_request_waiting;
extern int  sniff_connected;
extern int  fd_from_sniff;
extern void sniff_disconnect __ARGS((int immediately));
extern void ProcessSniffRequests __ARGS((void));
extern void ex_sniff __ARGS((exarg_T *eap));

#endif