1*3a289941SAaron LI /* 2*3a289941SAaron LI * Copyright (c) 1993, 1994, 1995, 1996, 1997 3*3a289941SAaron LI * The Regents of the University of California. All rights reserved. 4*3a289941SAaron LI * 5*3a289941SAaron LI * Redistribution and use in source and binary forms, with or without 6*3a289941SAaron LI * modification, are permitted provided that: (1) source code distributions 7*3a289941SAaron LI * retain the above copyright notice and this paragraph in its entirety, (2) 8*3a289941SAaron LI * distributions including binary code include the above copyright notice and 9*3a289941SAaron LI * this paragraph in its entirety in the documentation or other materials 10*3a289941SAaron LI * provided with the distribution, and (3) all advertising materials mentioning 11*3a289941SAaron LI * features or use of this software display the following acknowledgement: 12*3a289941SAaron LI * ``This product includes software developed by the University of California, 13*3a289941SAaron LI * Lawrence Berkeley Laboratory and its contributors.'' Neither the name of 14*3a289941SAaron LI * the University nor the names of its contributors may be used to endorse 15*3a289941SAaron LI * or promote products derived from this software without specific prior 16*3a289941SAaron LI * written permission. 17*3a289941SAaron LI * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR IMPLIED 18*3a289941SAaron LI * WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF 19*3a289941SAaron LI * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. 20*3a289941SAaron LI * 21*3a289941SAaron LI * sf-pcapng.h - pcapng-file-format-specific routines 22*3a289941SAaron LI * 23*3a289941SAaron LI * Used to read pcapng savefiles. 24*3a289941SAaron LI */ 25*3a289941SAaron LI 26*3a289941SAaron LI #ifndef sf_pcapng_h 27*3a289941SAaron LI #define sf_pcapng_h 28*3a289941SAaron LI 29*3a289941SAaron LI extern pcap_t *pcap_ng_check_header(const uint8_t *magic, FILE *fp, 30*3a289941SAaron LI u_int precision, char *errbuf, int *err); 31*3a289941SAaron LI 32*3a289941SAaron LI #endif 33