X-Git-Url: https://code.citadel.org/?a=blobdiff_plain;f=citadel%2Fmodules%2Fnntp%2Fserv_nntp.h;fp=citadel%2Fmodules%2Fnntp%2Fserv_nntp.h;h=0a734c428abd002f9cfb58b4b1ad476fccac68a6;hb=20762a39a345482cadea3745fc37de80f4c7a0b6;hp=0000000000000000000000000000000000000000;hpb=8e1c356fd71ef6b5980742d46c410b8eb565f59b;p=citadel.git diff --git a/citadel/modules/nntp/serv_nntp.h b/citadel/modules/nntp/serv_nntp.h new file mode 100644 index 000000000..0a734c428 --- /dev/null +++ b/citadel/modules/nntp/serv_nntp.h @@ -0,0 +1,28 @@ +/* + * 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 +struct nntp_msglist { + int num_msgs; + long *msgnums; +}; + + +// data passed by the LIST commands to its helper function +struct nntp_list_data { + int list_format; +}; + +