dcerpc-netlogon: split out find_tmp_netlogon_auth_vars()
[wireshark-sm.git] / wiretap / atm.h
blob5ee981228ae0cbfbee4c1fc4aa1b0e7c2f0a8729
1 /** @file
3 * Wiretap Library
4 * Copyright (c) 1998 by Gilbert Ramirez <gram@alumni.rice.edu>
6 * SPDX-License-Identifier: GPL-2.0-or-later
7 */
9 #ifndef __ATM_H__
10 #define __ATM_H__
11 #include <glib.h>
12 #include "ws_symbol_export.h"
13 #include <stdint.h>
15 typedef struct wtap_rec wtap_rec;
18 * Routines to use with ATM capture file types that don't include information
19 * about the *type* of ATM traffic (or, at least, where we haven't found
20 * that information).
23 extern void
24 atm_guess_traffic_type(wtap_rec *rec, const uint8_t *pd);
26 extern void
27 atm_guess_lane_type(wtap_rec *rec, const uint8_t *pd);
29 #endif /* __ATM_H__ */