X-Git-Url: https://code.citadel.org/?a=blobdiff_plain;f=citadel%2Fmodules%2Fnntp%2Fserv_nntp.h;h=e7aed6e1d3ae430f44263f1f2f9c3a69d19c182f;hb=720c01b58621857f8cd154deb6c1df84ef581cee;hp=31295ce1614d0e154e53fbc44b991a13a12a4ce4;hpb=09347a0495a9390ce5c015ab25192f7446b189c6;p=citadel.git diff --git a/citadel/modules/nntp/serv_nntp.h b/citadel/modules/nntp/serv_nntp.h index 31295ce16..e7aed6e1d 100644 --- a/citadel/modules/nntp/serv_nntp.h +++ b/citadel/modules/nntp/serv_nntp.h @@ -1,16 +1,16 @@ -/* - * Header file for NNTP server module - * - * Copyright (c) 2014 by the citadel.org team - * - * This program is open source software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License version 3. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - */ +// +// Header file for NNTP server module +// +// Copyright (c) 2014 by the citadel.org team +// +// This program is open source software; you can redistribute it and/or modify +// it under the terms of the GNU General Public License version 3. +// +// This program is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU General Public License for more details. +// // data returned by a message list fetch @@ -27,14 +27,19 @@ struct nntp_list_data { }; -/* - * data passed between nntp_listgroup() and nntp_listgroup_backend() - */ +// +// data passed between nntp_listgroup() and nntp_listgroup_backend() +// struct listgroup_range { long lo; long hi; }; + +typedef struct _citnntp { // Information about the current session + int foo; // dummy thingo +} citnntp; + int wildmat(const char *text, const char *p);