// This may look like C code, but it is really -*- C++ -*- // ------------------------------------------------------------------ // The Goldware Library // Copyright (C) 2002 Alexander S. Aganichev // ------------------------------------------------------------------ // This library is free software; you can redistribute it and/or // modify it under the terms of the GNU Library General Public // License as published by the Free Software Foundation; either // version 2 of the License, or (at your option) any later version. // // This library 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 // Library General Public License for more details. // // You should have received a copy of the GNU Library General Public // License along with this program; if not, write to the Free // Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, // MA 02111-1307, USA // ------------------------------------------------------------------ // $Id$ // ------------------------------------------------------------------ // Read areas from Synchronet BBS // ------------------------------------------------------------------ #include #include #include #undef GCFG_NOSYNCHRONET #include #include // ------------------------------------------------------------------ // Synchronet configuration reader void gareafile::ReadSynchronet(char* tag) { Path file, path; char options[80]; ushort shrt, i; grp_t grp; sub_t sub; strcpy(options, tag); char* ptr = strtok(tag, " \t"); while(ptr) { if(*ptr != '-') { strcpy(file, ptr); strschg_environ(file); } ptr = strtok(NULL, " \t"); } if(not fexist(file)) { AddBackslash(file); strcat(file, "msgs.cnf"); } extractdirname(path, file); FILE* in = fsopen(file, "rb", sharemode); if(in) { setvbuf(in, NULL, _IOFBF, 8192); if(not quiet) std::cout << "* Reading " << file << std::endl; // Skip header: // max_qwkmsgs 4 // mail_maxcrcs 4 // mail_maxage 2 // unused (NULL) 512 // unused (0xff) 512 fseek(in, 1034, SEEK_CUR); if(fread(&shrt, sizeof(ushort), 1, in) == 1) { for(i = 0; i < shrt; i++) { if(fread(&grp, sizeof(grp_t), 1, in) != 1) break; } } if(fread(&shrt, sizeof(ushort), 1, in) == 1) { for(i = 0; i < shrt; i++) { if(fread(&sub, sizeof(sub_t), 1, in) != 1) break; AreaCfg aa; aa.reset(); aa.type = GMB_ECHO; aa.attr = attribsecho; aa.msgbase = GMB_SMB; aa.setechoid((sub.misc & SUB_FIDO) ? sub.sname : sub.code); aa.setdesc(sub.lname); aa.groupid = 0x8000 + sub.grp; if(*sub.data_dir) MakePathname(file, sub.data_dir, sub.code); else MakePathname(file, path, sub.code); aa.setpath(file); aa.aka = primary_aka; aa.aka.set(sub.faddr); if(*sub.origline) aa.setorigin(sub.origline); AddNewArea(aa); } } } fclose(in); } // ------------------------------------------------------------------