home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Usenet 1994 October
/
usenetsourcesnewsgroupsinfomagicoctober1994disk2.iso
/
misc
/
volume30
/
tin
/
part14
/
common.patch
next >
Wrap
Text File
|
1992-05-20
|
2KB
|
62 lines
Files common.old/Makefile and common/Makefile are identical
Files common.old/README and common/README are identical
Files common.old/README.HPUX and common/README.HPUX are identical
Files common.old/README.IRIX and common/README.IRIX are identical
Files common.old/README.LIB and common/README.LIB are identical
Files common.old/README.MTXNIU and common/README.MTXNIU are identical
Files common.old/README.SYSV and common/README.SYSV are identical
Files common.old/README.XENIX and common/README.XENIX are identical
Files common.old/clientlib.c and common/clientlib.c are identical
Files common.old/clientlib.h and common/clientlib.h are identical
Only in common: conf.h
diff -rcs common.old/conf.h.dist common/conf.h.dist
*** common.old/conf.h.dist Wed May 6 09:01:11 1992
--- common/conf.h.dist Mon May 4 07:31:14 1992
***************
*** 7,12 ****
--- 7,20 ----
* Compile time options.
*/
+ /*
+ * Extensions to NNTP RFC977 (I.Lea 07-03-92)
+ */
+
+ #define XUSER /* log clients username to nntp logfile */
+ #define XINDEX /* retieve tin index files from server */
+ #define SUBSCRIPTIONS_FILE "/usr/lib/news/subscriptions"
+
#undef ALONE /* True if we're running without inetd */
Only in common: conf.h.dst.old
Only in common: conf.h.norisc
diff -rcs common.old/nntp.h common/nntp.h
*** common.old/nntp.h Wed May 6 09:01:11 1992
--- common/nntp.h Tue Mar 10 08:52:12 1992
***************
*** 38,43 ****
--- 38,46 ----
#define OK_GOODBYE 205 /* Closing connection */
#define OK_GROUP 211 /* Group selected */
#define OK_GROUPS 215 /* Newsgroups follow */
+ #ifdef XINDEX
+ #define OK_XINDEX 218 /* Group index file follows */
+ #endif
#define OK_ARTICLE 220 /* Article (head & body) follows */
#define OK_HEAD 221 /* Head follows */
#define OK_BODY 222 /* Body follows */
***************
*** 57,62 ****
--- 60,68 ----
#define ERR_GOODBYE 400 /* Have to hang up for some reason */
#define ERR_NOGROUP 411 /* No such newsgroup */
#define ERR_NCING 412 /* Not currently in newsgroup */
+ #ifdef XINDEX
+ #define ERR_XINDEX 418 /* No index file for newsgroup */
+ #endif
#define ERR_NOCRNT 420 /* No current article selected */
#define ERR_NONEXT 421 /* No next article in this group */
#define ERR_NOPREV 422 /* No previous article in this group */
Files common.old/version.c and common/version.c are identical