1234567891011121314151617181920212223242526272829303132 |
- #ifdef HAVE_CONFIG_H
- #include "config.h"
- #endif
- #include <netdissect-stdinc.h>
- #include <stdio.h>
- #include <stdlib.h>
- #include "netdissect.h"
- #include "extract.h"
- void
- ftp_print(netdissect_options *ndo, const u_char *pptr, u_int len)
- {
- txtproto_print(ndo, pptr, len, "ftp", NULL, 0);
- }
|