12f6484f创建于 2024年9月19日历史提交
/** @file
 *
 * Wiretap Library
 * Copyright (c) 1998 by Gilbert Ramirez <gram@alumni.rice.edu>
 *
 * SPDX-License-Identifier: GPL-2.0-or-later
 */

#ifndef __ATM_H__
#define __ATM_H__
#include <glib.h>
#include "ws_symbol_export.h"
#include <stdint.h>

typedef struct wtap_rec wtap_rec;

/*
 * Routines to use with ATM capture file types that don't include information
 * about the *type* of ATM traffic (or, at least, where we haven't found
 * that information).
 */

extern void
atm_guess_traffic_type(wtap_rec *rec, const uint8_t *pd);

extern void
atm_guess_lane_type(wtap_rec *rec, const uint8_t *pd);

#endif /* __ATM_H__ */