18bdc5a62SPatrick Kelsey /* 28bdc5a62SPatrick Kelsey * Redistribution and use in source and binary forms, with or without 38bdc5a62SPatrick Kelsey * modification, are permitted provided that: (1) source code 48bdc5a62SPatrick Kelsey * distributions retain the above copyright notice and this paragraph 58bdc5a62SPatrick Kelsey * in its entirety, and (2) distributions including binary code include 68bdc5a62SPatrick Kelsey * the above copyright notice and this paragraph in its entirety in 78bdc5a62SPatrick Kelsey * the documentation or other materials provided with the distribution. 88bdc5a62SPatrick Kelsey * THIS SOFTWARE IS PROVIDED ``AS IS'' AND 98bdc5a62SPatrick Kelsey * WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, WITHOUT 108bdc5a62SPatrick Kelsey * LIMITATION, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS 118bdc5a62SPatrick Kelsey * FOR A PARTICULAR PURPOSE. 128bdc5a62SPatrick Kelsey */ 138bdc5a62SPatrick Kelsey 143340d773SGleb Smirnoff /* \summary: File Transfer Protocol (FTP) printer */ 158bdc5a62SPatrick Kelsey 16*ee67461eSJoseph Mingrone #include <config.h> 178bdc5a62SPatrick Kelsey 18*ee67461eSJoseph Mingrone #include "netdissect-stdinc.h" 198bdc5a62SPatrick Kelsey 208bdc5a62SPatrick Kelsey #include "netdissect.h" 218bdc5a62SPatrick Kelsey 228bdc5a62SPatrick Kelsey void 238bdc5a62SPatrick Kelsey ftp_print(netdissect_options *ndo, const u_char *pptr, u_int len) 248bdc5a62SPatrick Kelsey { 25*ee67461eSJoseph Mingrone ndo->ndo_protocol = "ftp"; 26*ee67461eSJoseph Mingrone txtproto_print(ndo, pptr, len, NULL, 0); 278bdc5a62SPatrick Kelsey } 28