Include <time.h> to declare "gmtime()".
[obnox/wireshark/wip.git] / packet-nntp.c
1 /* packet-nntp.c
2  * Routines for nntp packet dissection
3  * Copyright 1999, Richard Sharpe <rsharpe@ns.aus.com>
4  *
5  * $Id: packet-nntp.c,v 1.6 1999/11/16 11:42:42 guy Exp $
6  *
7  * Ethereal - Network traffic analyzer
8  * By Gerald Combs <gerald@unicom.net>
9  * Copyright 1998 Gerald Combs
10  *
11  * This program is free software; you can redistribute it and/or
12  * modify it under the terms of the GNU General Public License
13  * as published by the Free Software Foundation; either version 2
14  * of the License, or (at your option) any later version.
15  * 
16  * This program is distributed in the hope that it will be useful,
17  * but WITHOUT ANY WARRANTY; without even the implied warranty of
18  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19  * GNU General Public License for more details.
20  * 
21  * You should have received a copy of the GNU General Public License
22  * along with this program; if not, write to the Free Software
23  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
24  */
25
26 #ifdef HAVE_CONFIG_H
27 # include "config.h"
28 #endif
29
30 #include <stdio.h>
31
32 #ifdef HAVE_SYS_TYPES_H
33 # include <sys/types.h>
34 #endif
35
36 #ifdef HAVE_NETINET_IN_H
37 # include <netinet/in.h>
38 #endif
39
40 #include <string.h>
41 #include <glib.h>
42 #include "packet.h"
43
44 static int proto_nntp = -1;
45 static int hf_nntp_response = -1;
46 static int hf_nntp_request = -1;
47
48 static gint ett_nntp = -1;
49
50 void
51 dissect_nntp(const u_char *pd, int offset, frame_data *fd, proto_tree *tree)
52 {
53         gchar           *type;
54         proto_tree      *nntp_tree, *ti;
55         const u_char    *data, *dataend;
56         const u_char    *lineend, *eol;
57         int             linelen;
58         int             max_data = pi.captured_len - offset;
59
60         data = &pd[offset];
61         dataend = data + END_OF_FRAME;
62         if (dataend > data + max_data)
63                 dataend = data + max_data;
64
65         if (pi.match_port == pi.destport)
66                 type = "Request";
67         else
68                 type = "Response";
69
70         if (check_col(fd, COL_PROTOCOL))
71                 col_add_str(fd, COL_PROTOCOL, "NNTP");
72
73         if (check_col(fd, COL_INFO)) {
74                 /*
75                  * Put the first line from the buffer into the summary.
76                  */
77                 lineend = find_line_end(data, dataend, &eol);
78                 linelen = eol - data;
79                 col_add_fstr(fd, COL_INFO, "%s: %s", type,
80                     format_text(data, linelen));
81         }
82
83         if (tree) {
84
85           ti = proto_tree_add_item(tree, proto_nntp, offset, END_OF_FRAME, NULL);
86           nntp_tree = proto_item_add_subtree(ti, ett_nntp);
87
88           if (pi.match_port == pi.destport) {
89             proto_tree_add_item_hidden(nntp_tree, hf_nntp_request, 0, 0, TRUE);
90           } else {
91             proto_tree_add_item_hidden(nntp_tree, hf_nntp_response, 0, 0, TRUE);
92           }
93
94           /*
95            * Show the request or response as text, a line at a time.
96            * XXX - for requests, we could display the stuff after the
97            * first line, if any, based on what the request was, and
98            * for responses, we could display it based on what the
99            * matching request was, although the latter requires us to
100            * know what the matching request was....
101            */
102           while (data < dataend) {
103                 /*
104                  * Find the end of the line.
105                  */
106                 lineend = find_line_end(data, dataend, &eol);
107                 linelen = lineend - data;
108
109                 /*
110                  * Put this line.
111                  */
112                 proto_tree_add_text(nntp_tree, offset, linelen, "%s",
113                     format_text(data, linelen));
114                 offset += linelen;
115                 data = lineend;
116           }
117         }
118 }
119
120 void
121 proto_register_nntp(void)
122 {
123   
124   static hf_register_info hf[] = {
125     { &hf_nntp_response,
126       { "Response",           "nntp.response",
127         FT_BOOLEAN, BASE_NONE, NULL, 0x0,
128         "TRUE if NNTP response" }},
129
130     { &hf_nntp_request,
131       { "Request",            "nntp.request",
132         FT_BOOLEAN, BASE_NONE, NULL, 0x0,
133         "TRUE if NNTP request" }}
134   };
135   static gint *ett[] = {
136     &ett_nntp,
137   };
138
139   proto_nntp = proto_register_protocol("Network News Transfer Protocol", 
140                                        "nntp");
141   proto_register_field_array(proto_nntp, hf, array_length(hf));
142   proto_register_subtree_array(ett, array_length(ett));
143 }