Revision 508cc2b0e078c806bb7cc8bba22fb97a4ca99b91 authored by Frank Pavlic on 10 November 2005, 12:49:15 UTC, committed by Jeff Garzik on 11 November 2005, 13:26:21 UTC
[patch 2/7] s390: minor modification in qeth layer2 code

From: Frank Pavlic <fpavlic@de.ibm.com>
	- use qeth_layer2_send_setdelvlan_cb to check
	  return code of a SET/DELVLAN IP Assist command.
	  It fits better in qeth's design and mechanism of IP Assist
	  command handling.

Signed-off-by: Frank Pavlic <fpavlic@de.ibm.com>

diffstat:
 qeth_main.c |   40 ++++++++++++++++++++++++++--------------
 1 files changed, 26 insertions(+), 14 deletions(-)
Signed-off-by: Jeff Garzik <jgarzik@pobox.com>
1 parent bd389b9
Raw File
infcodes.h
/* infcodes.h -- header to use infcodes.c
 * Copyright (C) 1995-1998 Mark Adler
 * For conditions of distribution and use, see copyright notice in zlib.h 
 */

/* WARNING: this file should *not* be used by applications. It is
   part of the implementation of the compression library and is
   subject to change. Applications should only use zlib.h.
 */

#ifndef _INFCODES_H
#define _INFCODES_H

#include "infblock.h"

struct inflate_codes_state;
typedef struct inflate_codes_state inflate_codes_statef;

extern inflate_codes_statef *zlib_inflate_codes_new (
    uInt, uInt,
    inflate_huft *, inflate_huft *,
    z_streamp );

extern int zlib_inflate_codes (
    inflate_blocks_statef *,
    z_streamp ,
    int);

extern void zlib_inflate_codes_free (
    inflate_codes_statef *,
    z_streamp );

#endif /* _INFCODES_H */
back to top