計算機メモ目次 (目的のページと内容が一致しない場合, 目次から探してください)
Mosaic による DNAS サーバのアクセスへの対応
《古い》
記事まで読めないという現象があったので以下の修正をした。
*** libwww2/HTNews.c.orig Tue Oct 10 20:18:45 1995
--- libwww2/HTNews.c Tue Oct 10 21:57:30 1995
***************
*** 2329,2335 ****
HTStream*, stream)
{
char command[257]; /* The whole command */
! char groupName[GROUP_NAME_LENGTH]; /* Just the group name */
int status; /* tcp return */
int retries; /* A count of how hard we have tried */
BOOL group_wanted; /* Flag: group was asked for, not article */
--- 2329,2335 ----
HTStream*, stream)
{
char command[257]; /* The whole command */
! static char groupName[GROUP_NAME_LENGTH]; /* Just the group name */
int status; /* tcp return */
int retries; /* A count of how hard we have tried */
BOOL group_wanted; /* Flag: group was asked for, not article */
***************
*** 2395,2401 ****
}
else
{
! strcpy(command, "ARTICLE ");
if (strchr(p1, '<')==0)
strcat(command,"<");
strcat(command, p1);
--- 2395,2403 ----
}
else
{
! strcpy(command, "GROUP ");
! strcat(command, groupName);
! strcat(command, "\nARTICLE ");
if (strchr(p1, '<')==0)
strcat(command,"<");
strcat(command, p1);
計算機メモ目次 (目的のページと内容が一致しない場合, 目次から探してください)