From 48e477893fdc3cd87b46e445b1e3e2d1395c4b94 Mon Sep 17 00:00:00 2001 From: brain Date: Wed, 14 Dec 2005 16:07:04 +0000 Subject: Removed depreciated docs git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@2420 e03df62e-2008-0410-955e-edbf42e46eb7 --- docs/module-doc/modules_8cpp-source.html | 923 ++++++++++++++++--------------- 1 file changed, 464 insertions(+), 459 deletions(-) (limited to 'docs/module-doc/modules_8cpp-source.html') diff --git a/docs/module-doc/modules_8cpp-source.html b/docs/module-doc/modules_8cpp-source.html index 9a36d4e5b..0ecd0c95b 100644 --- a/docs/module-doc/modules_8cpp-source.html +++ b/docs/module-doc/modules_8cpp-source.html @@ -338,611 +338,616 @@ 00329 Config->Read(false,NULL); 00330 } 00331 -00332 void Server::DelSocket(InspSocket* sock) +00332 ServerConfig* Server::GetConfig() 00333 { -00334 for (std::vector<InspSocket*>::iterator a = module_sockets.begin(); a < module_sockets.end(); a++) -00335 { -00336 if (*a == sock) -00337 { -00338 module_sockets.erase(a); -00339 return; -00340 } -00341 } -00342 } -00343 -00344 void Server::SendOpers(std::string s) -00345 { -00346 WriteOpers("%s",s.c_str()); +00334 return Config; +00335 } +00336 +00337 void Server::DelSocket(InspSocket* sock) +00338 { +00339 for (std::vector<InspSocket*>::iterator a = module_sockets.begin(); a < module_sockets.end(); a++) +00340 { +00341 if (*a == sock) +00342 { +00343 module_sockets.erase(a); +00344 return; +00345 } +00346 } 00347 } 00348 -00349 bool Server::MatchText(std::string sliteral, std::string spattern) +00349 void Server::SendOpers(std::string s) 00350 { -00351 char literal[MAXBUF],pattern[MAXBUF]; -00352 strlcpy(literal,sliteral.c_str(),MAXBUF); -00353 strlcpy(pattern,spattern.c_str(),MAXBUF); -00354 return match(literal,pattern); -00355 } -00356 -00357 void Server::SendToModeMask(std::string modes, int flags, std::string text) -00358 { -00359 WriteMode(modes.c_str(),flags,"%s",text.c_str()); +00351 WriteOpers("%s",s.c_str()); +00352 } +00353 +00354 bool Server::MatchText(std::string sliteral, std::string spattern) +00355 { +00356 char literal[MAXBUF],pattern[MAXBUF]; +00357 strlcpy(literal,sliteral.c_str(),MAXBUF); +00358 strlcpy(pattern,spattern.c_str(),MAXBUF); +00359 return match(literal,pattern); 00360 } 00361 -00362 chanrec* Server::JoinUserToChannel(userrec* user, std::string cname, std::string key) +00362 void Server::SendToModeMask(std::string modes, int flags, std::string text) 00363 { -00364 return add_channel(user,cname.c_str(),key.c_str(),false); +00364 WriteMode(modes.c_str(),flags,"%s",text.c_str()); 00365 } 00366 -00367 chanrec* Server::PartUserFromChannel(userrec* user, std::string cname, std::string reason) +00367 chanrec* Server::JoinUserToChannel(userrec* user, std::string cname, std::string key) 00368 { -00369 return del_channel(user,cname.c_str(),reason.c_str(),false); +00369 return add_channel(user,cname.c_str(),key.c_str(),false); 00370 } 00371 -00372 chanuserlist Server::GetUsers(chanrec* chan) +00372 chanrec* Server::PartUserFromChannel(userrec* user, std::string cname, std::string reason) 00373 { -00374 chanuserlist userl; -00375 userl.clear(); -00376 std::vector<char*> *list = chan->GetUsers(); -00377 for (std::vector<char*>::iterator i = list->begin(); i != list->end(); i++) -00378 { -00379 char* o = *i; -00380 userl.push_back((userrec*)o); -00381 } -00382 return userl; -00383 } -00384 void Server::ChangeUserNick(userrec* user, std::string nickname) -00385 { -00386 force_nickchange(user,nickname.c_str()); -00387 } -00388 -00389 void Server::QuitUser(userrec* user, std::string reason) +00374 return del_channel(user,cname.c_str(),reason.c_str(),false); +00375 } +00376 +00377 chanuserlist Server::GetUsers(chanrec* chan) +00378 { +00379 chanuserlist userl; +00380 userl.clear(); +00381 std::vector<char*> *list = chan->GetUsers(); +00382 for (std::vector<char*>::iterator i = list->begin(); i != list->end(); i++) +00383 { +00384 char* o = *i; +00385 userl.push_back((userrec*)o); +00386 } +00387 return userl; +00388 } +00389 void Server::ChangeUserNick(userrec* user, std::string nickname) 00390 { -00391 kill_link(user,reason.c_str()); +00391 force_nickchange(user,nickname.c_str()); 00392 } 00393 -00394 bool Server::IsUlined(std::string server) +00394 void Server::QuitUser(userrec* user, std::string reason) 00395 { -00396 return is_uline(server.c_str()); +00396 kill_link(user,reason.c_str()); 00397 } 00398 -00399 void Server::CallCommandHandler(std::string commandname, char** parameters, int pcnt, userrec* user) +00399 bool Server::IsUlined(std::string server) 00400 { -00401 call_handler(commandname.c_str(),parameters,pcnt,user); +00401 return is_uline(server.c_str()); 00402 } 00403 -00404 bool Server::IsValidModuleCommand(std::string commandname, int pcnt, userrec* user) +00404 void Server::CallCommandHandler(std::string commandname, char** parameters, int pcnt, userrec* user) 00405 { -00406 return is_valid_cmd(commandname.c_str(), pcnt, user); +00406 call_handler(commandname.c_str(),parameters,pcnt,user); 00407 } 00408 -00409 void Server::Log(int level, std::string s) +00409 bool Server::IsValidModuleCommand(std::string commandname, int pcnt, userrec* user) 00410 { -00411 log(level,"%s",s.c_str()); +00411 return is_valid_cmd(commandname.c_str(), pcnt, user); 00412 } 00413 -00414 void Server::AddCommand(char* cmd, handlerfunc f, char flags, int minparams, char* source) +00414 void Server::Log(int level, std::string s) 00415 { -00416 createcommand(cmd,f,flags,minparams,source); +00416 log(level,"%s",s.c_str()); 00417 } 00418 -00419 void Server::SendMode(char **parameters, int pcnt, userrec *user) +00419 void Server::AddCommand(char* cmd, handlerfunc f, char flags, int minparams, char* source) 00420 { -00421 server_mode(parameters,pcnt,user); +00421 createcommand(cmd,f,flags,minparams,source); 00422 } 00423 -00424 void Server::Send(int Socket, std::string s) +00424 void Server::SendMode(char **parameters, int pcnt, userrec *user) 00425 { -00426 Write(Socket,"%s",s.c_str()); +00426 server_mode(parameters,pcnt,user); 00427 } 00428 -00429 void Server::SendServ(int Socket, std::string s) +00429 void Server::Send(int Socket, std::string s) 00430 { -00431 WriteServ(Socket,"%s",s.c_str()); +00431 Write(Socket,"%s",s.c_str()); 00432 } 00433 -00434 void Server::SendFrom(int Socket, userrec* User, std::string s) +00434 void Server::SendServ(int Socket, std::string s) 00435 { -00436 WriteFrom(Socket,User,"%s",s.c_str()); +00436 WriteServ(Socket,"%s",s.c_str()); 00437 } 00438 -00439 void Server::SendTo(userrec* Source, userrec* Dest, std::string s) +00439 void Server::SendFrom(int Socket, userrec* User, std::string s) 00440 { -00441 if (!Source) -00442 { -00443 // if source is NULL, then the message originates from the local server -00444 Write(Dest->fd,":%s %s",this->GetServerName().c_str(),s.c_str()); -00445 } -00446 else +00441 WriteFrom(Socket,User,"%s",s.c_str()); +00442 } +00443 +00444 void Server::SendTo(userrec* Source, userrec* Dest, std::string s) +00445 { +00446 if (!Source) 00447 { -00448 // otherwise it comes from the user specified -00449 WriteTo(Source,Dest,"%s",s.c_str()); +00448 // if source is NULL, then the message originates from the local server +00449 Write(Dest->fd,":%s %s",this->GetServerName().c_str(),s.c_str()); 00450 } -00451 } -00452 -00453 void Server::SendChannelServerNotice(std::string ServName, chanrec* Channel, std::string text) -00454 { -00455 WriteChannelWithServ((char*)ServName.c_str(), Channel, "%s", text.c_str()); +00451 else +00452 { +00453 // otherwise it comes from the user specified +00454 WriteTo(Source,Dest,"%s",s.c_str()); +00455 } 00456 } 00457 -00458 void Server::SendChannel(userrec* User, chanrec* Channel, std::string s,bool IncludeSender) +00458 void Server::SendChannelServerNotice(std::string ServName, chanrec* Channel, std::string text) 00459 { -00460 if (IncludeSender) -00461 { -00462 WriteChannel(Channel,User,"%s",s.c_str()); -00463 } -00464 else -00465 { -00466 ChanExceptSender(Channel,User,"%s",s.c_str()); -00467 } -00468 } -00469 -00470 bool Server::CommonChannels(userrec* u1, userrec* u2) -00471 { -00472 return (common_channels(u1,u2) != 0); +00460 WriteChannelWithServ((char*)ServName.c_str(), Channel, "%s", text.c_str()); +00461 } +00462 +00463 void Server::SendChannel(userrec* User, chanrec* Channel, std::string s,bool IncludeSender) +00464 { +00465 if (IncludeSender) +00466 { +00467 WriteChannel(Channel,User,"%s",s.c_str()); +00468 } +00469 else +00470 { +00471 ChanExceptSender(Channel,User,"%s",s.c_str()); +00472 } 00473 } 00474 -00475 void Server::SendCommon(userrec* User, std::string text,bool IncludeSender) +00475 bool Server::CommonChannels(userrec* u1, userrec* u2) 00476 { -00477 if (IncludeSender) -00478 { -00479 WriteCommon(User,"%s",text.c_str()); -00480 } -00481 else -00482 { -00483 WriteCommonExcept(User,"%s",text.c_str()); -00484 } -00485 } -00486 -00487 void Server::SendWallops(userrec* User, std::string text) -00488 { -00489 WriteWallOps(User,false,"%s",text.c_str()); +00477 return (common_channels(u1,u2) != 0); +00478 } +00479 +00480 void Server::SendCommon(userrec* User, std::string text,bool IncludeSender) +00481 { +00482 if (IncludeSender) +00483 { +00484 WriteCommon(User,"%s",text.c_str()); +00485 } +00486 else +00487 { +00488 WriteCommonExcept(User,"%s",text.c_str()); +00489 } 00490 } 00491 -00492 void Server::ChangeHost(userrec* user, std::string host) +00492 void Server::SendWallops(userrec* User, std::string text) 00493 { -00494 ChangeDisplayedHost(user,host.c_str()); +00494 WriteWallOps(User,false,"%s",text.c_str()); 00495 } 00496 -00497 void Server::ChangeGECOS(userrec* user, std::string gecos) +00497 void Server::ChangeHost(userrec* user, std::string host) 00498 { -00499 ChangeName(user,gecos.c_str()); +00499 ChangeDisplayedHost(user,host.c_str()); 00500 } 00501 -00502 bool Server::IsNick(std::string nick) +00502 void Server::ChangeGECOS(userrec* user, std::string gecos) 00503 { -00504 return (isnick(nick.c_str()) != 0); +00504 ChangeName(user,gecos.c_str()); 00505 } 00506 -00507 userrec* Server::FindNick(std::string nick) +00507 bool Server::IsNick(std::string nick) 00508 { -00509 return Find(nick); +00509 return (isnick(nick.c_str()) != 0); 00510 } 00511 -00512 userrec* Server::FindDescriptor(int socket) +00512 userrec* Server::FindNick(std::string nick) 00513 { -00514 return (socket < 65536 ? fd_ref_table[socket] : NULL); +00514 return Find(nick); 00515 } 00516 -00517 chanrec* Server::FindChannel(std::string channel) +00517 userrec* Server::FindDescriptor(int socket) 00518 { -00519 return FindChan(channel.c_str()); +00519 return (socket < 65536 ? fd_ref_table[socket] : NULL); 00520 } 00521 -00522 std::string Server::ChanMode(userrec* User, chanrec* Chan) +00522 chanrec* Server::FindChannel(std::string channel) 00523 { -00524 return cmode(User,Chan); +00524 return FindChan(channel.c_str()); 00525 } 00526 -00527 bool Server::IsOnChannel(userrec* User, chanrec* Chan) +00527 std::string Server::ChanMode(userrec* User, chanrec* Chan) 00528 { -00529 return has_channel(User,Chan); +00529 return cmode(User,Chan); 00530 } 00531 -00532 std::string Server::GetServerName() +00532 bool Server::IsOnChannel(userrec* User, chanrec* Chan) 00533 { -00534 return getservername(); +00534 return has_channel(User,Chan); 00535 } 00536 -00537 std::string Server::GetNetworkName() +00537 std::string Server::GetServerName() 00538 { -00539 return getnetworkname(); +00539 return getservername(); 00540 } 00541 -00542 std::string Server::GetServerDescription() +00542 std::string Server::GetNetworkName() 00543 { -00544 return getserverdesc(); +00544 return getnetworkname(); 00545 } 00546 -00547 Admin Server::GetAdmin() +00547 std::string Server::GetServerDescription() 00548 { -00549 return Admin(getadminname(),getadminemail(),getadminnick()); +00549 return getserverdesc(); 00550 } 00551 -00552 -00553 -00554 bool Server::AddExtendedMode(char modechar, int type, bool requires_oper, int params_when_on, int params_when_off) -00555 { -00556 if (((modechar >= 'A') && (modechar <= 'Z')) || ((modechar >= 'a') && (modechar <= 'z'))) -00557 { -00558 if (type == MT_SERVER) -00559 { -00560 log(DEBUG,"*** API ERROR *** Modes of type MT_SERVER are reserved for future expansion"); -00561 return false; -00562 } -00563 if (((params_when_on>0) || (params_when_off>0)) && (type == MT_CLIENT)) +00552 Admin Server::GetAdmin() +00553 { +00554 return Admin(getadminname(),getadminemail(),getadminnick()); +00555 } +00556 +00557 +00558 +00559 bool Server::AddExtendedMode(char modechar, int type, bool requires_oper, int params_when_on, int params_when_off) +00560 { +00561 if (((modechar >= 'A') && (modechar <= 'Z')) || ((modechar >= 'a') && (modechar <= 'z'))) +00562 { +00563 if (type == MT_SERVER) 00564 { -00565 log(DEBUG,"*** API ERROR *** Parameters on MT_CLIENT modes are not supported"); +00565 log(DEBUG,"*** API ERROR *** Modes of type MT_SERVER are reserved for future expansion"); 00566 return false; 00567 } -00568 if ((params_when_on>1) || (params_when_off>1)) +00568 if (((params_when_on>0) || (params_when_off>0)) && (type == MT_CLIENT)) 00569 { -00570 log(DEBUG,"*** API ERROR *** More than one parameter for an MT_CHANNEL mode is not yet supported"); +00570 log(DEBUG,"*** API ERROR *** Parameters on MT_CLIENT modes are not supported"); 00571 return false; 00572 } -00573 return DoAddExtendedMode(modechar,type,requires_oper,params_when_on,params_when_off); -00574 } -00575 else -00576 { -00577 log(DEBUG,"*** API ERROR *** Muppet modechar detected."); -00578 } -00579 return false; -00580 } -00581 -00582 bool Server::AddExtendedListMode(char modechar) -00583 { -00584 bool res = DoAddExtendedMode(modechar,MT_CHANNEL,false,1,1); -00585 if (res) -00586 ModeMakeList(modechar); -00587 return res; -00588 } -00589 -00590 int Server::CountUsers(chanrec* c) -00591 { -00592 return usercount(c); +00573 if ((params_when_on>1) || (params_when_off>1)) +00574 { +00575 log(DEBUG,"*** API ERROR *** More than one parameter for an MT_CHANNEL mode is not yet supported"); +00576 return false; +00577 } +00578 return DoAddExtendedMode(modechar,type,requires_oper,params_when_on,params_when_off); +00579 } +00580 else +00581 { +00582 log(DEBUG,"*** API ERROR *** Muppet modechar detected."); +00583 } +00584 return false; +00585 } +00586 +00587 bool Server::AddExtendedListMode(char modechar) +00588 { +00589 bool res = DoAddExtendedMode(modechar,MT_CHANNEL,false,1,1); +00590 if (res) +00591 ModeMakeList(modechar); +00592 return res; 00593 } 00594 -00595 -00596 bool Server::UserToPseudo(userrec* user,std::string message) -00597 { -00598 unsigned int old_fd = user->fd; -00599 user->fd = FD_MAGIC_NUMBER; -00600 user->ClearBuffer(); -00601 Write(old_fd,"ERROR :Closing link (%s@%s) [%s]",user->ident,user->host,message.c_str()); -00602 SE->DelFd(old_fd); -00603 shutdown(old_fd,2); -00604 close(old_fd); -00605 return true; -00606 } -00607 -00608 bool Server::PseudoToUser(userrec* alive,userrec* zombie,std::string message) -00609 { -00610 zombie->fd = alive->fd; -00611 alive->fd = FD_MAGIC_NUMBER; -00612 alive->ClearBuffer(); -00613 Write(zombie->fd,":%s!%s@%s NICK %s",alive->nick,alive->ident,alive->host,zombie->nick); -00614 kill_link(alive,message.c_str()); -00615 fd_ref_table[zombie->fd] = zombie; -00616 for (unsigned int i = 0; i < zombie->chans.size(); i++) -00617 { -00618 if (zombie->chans[i].channel != NULL) -00619 { -00620 if (zombie->chans[i].channel->name) -00621 { -00622 chanrec* Ptr = zombie->chans[i].channel; -00623 WriteFrom(zombie->fd,zombie,"JOIN %s",Ptr->name); -00624 if (Ptr->topicset) -00625 { -00626 WriteServ(zombie->fd,"332 %s %s :%s", zombie->nick, Ptr->name, Ptr->topic); -00627 WriteServ(zombie->fd,"333 %s %s %s %d", zombie->nick, Ptr->name, Ptr->setby, Ptr->topicset); -00628 } -00629 userlist(zombie,Ptr); -00630 WriteServ(zombie->fd,"366 %s %s :End of /NAMES list.", zombie->nick, Ptr->name); -00631 -00632 } -00633 } -00634 } -00635 return true; -00636 } -00637 -00638 void Server::AddGLine(long duration, std::string source, std::string reason, std::string hostmask) -00639 { -00640 add_gline(duration, source.c_str(), reason.c_str(), hostmask.c_str()); +00595 int Server::CountUsers(chanrec* c) +00596 { +00597 return usercount(c); +00598 } +00599 +00600 +00601 bool Server::UserToPseudo(userrec* user,std::string message) +00602 { +00603 unsigned int old_fd = user->fd; +00604 user->fd = FD_MAGIC_NUMBER; +00605 user->ClearBuffer(); +00606 Write(old_fd,"ERROR :Closing link (%s@%s) [%s]",user->ident,user->host,message.c_str()); +00607 SE->DelFd(old_fd); +00608 shutdown(old_fd,2); +00609 close(old_fd); +00610 return true; +00611 } +00612 +00613 bool Server::PseudoToUser(userrec* alive,userrec* zombie,std::string message) +00614 { +00615 zombie->fd = alive->fd; +00616 alive->fd = FD_MAGIC_NUMBER; +00617 alive->ClearBuffer(); +00618 Write(zombie->fd,":%s!%s@%s NICK %s",alive->nick,alive->ident,alive->host,zombie->nick); +00619 kill_link(alive,message.c_str()); +00620 fd_ref_table[zombie->fd] = zombie; +00621 for (unsigned int i = 0; i < zombie->chans.size(); i++) +00622 { +00623 if (zombie->chans[i].channel != NULL) +00624 { +00625 if (zombie->chans[i].channel->name) +00626 { +00627 chanrec* Ptr = zombie->chans[i].channel; +00628 WriteFrom(zombie->fd,zombie,"JOIN %s",Ptr->name); +00629 if (Ptr->topicset) +00630 { +00631 WriteServ(zombie->fd,"332 %s %s :%s", zombie->nick, Ptr->name, Ptr->topic); +00632 WriteServ(zombie->fd,"333 %s %s %s %d", zombie->nick, Ptr->name, Ptr->setby, Ptr->topicset); +00633 } +00634 userlist(zombie,Ptr); +00635 WriteServ(zombie->fd,"366 %s %s :End of /NAMES list.", zombie->nick, Ptr->name); +00636 +00637 } +00638 } +00639 } +00640 return true; 00641 } 00642 -00643 void Server::AddQLine(long duration, std::string source, std::string reason, std::string nickname) +00643 void Server::AddGLine(long duration, std::string source, std::string reason, std::string hostmask) 00644 { -00645 add_qline(duration, source.c_str(), reason.c_str(), nickname.c_str()); +00645 add_gline(duration, source.c_str(), reason.c_str(), hostmask.c_str()); 00646 } 00647 -00648 void Server::AddZLine(long duration, std::string source, std::string reason, std::string ipaddr) +00648 void Server::AddQLine(long duration, std::string source, std::string reason, std::string nickname) 00649 { -00650 add_zline(duration, source.c_str(), reason.c_str(), ipaddr.c_str()); +00650 add_qline(duration, source.c_str(), reason.c_str(), nickname.c_str()); 00651 } 00652 -00653 void Server::AddKLine(long duration, std::string source, std::string reason, std::string hostmask) +00653 void Server::AddZLine(long duration, std::string source, std::string reason, std::string ipaddr) 00654 { -00655 add_kline(duration, source.c_str(), reason.c_str(), hostmask.c_str()); +00655 add_zline(duration, source.c_str(), reason.c_str(), ipaddr.c_str()); 00656 } 00657 -00658 void Server::AddELine(long duration, std::string source, std::string reason, std::string hostmask) +00658 void Server::AddKLine(long duration, std::string source, std::string reason, std::string hostmask) 00659 { -00660 add_eline(duration, source.c_str(), reason.c_str(), hostmask.c_str()); +00660 add_kline(duration, source.c_str(), reason.c_str(), hostmask.c_str()); 00661 } 00662 -00663 bool Server::DelGLine(std::string hostmask) +00663 void Server::AddELine(long duration, std::string source, std::string reason, std::string hostmask) 00664 { -00665 return del_gline(hostmask.c_str()); +00665 add_eline(duration, source.c_str(), reason.c_str(), hostmask.c_str()); 00666 } 00667 -00668 bool Server::DelQLine(std::string nickname) +00668 bool Server::DelGLine(std::string hostmask) 00669 { -00670 return del_qline(nickname.c_str()); +00670 return del_gline(hostmask.c_str()); 00671 } 00672 -00673 bool Server::DelZLine(std::string ipaddr) +00673 bool Server::DelQLine(std::string nickname) 00674 { -00675 return del_zline(ipaddr.c_str()); +00675 return del_qline(nickname.c_str()); 00676 } 00677 -00678 bool Server::DelKLine(std::string hostmask) +00678 bool Server::DelZLine(std::string ipaddr) 00679 { -00680 return del_kline(hostmask.c_str()); +00680 return del_zline(ipaddr.c_str()); 00681 } 00682 -00683 bool Server::DelELine(std::string hostmask) +00683 bool Server::DelKLine(std::string hostmask) 00684 { -00685 return del_eline(hostmask.c_str()); +00685 return del_kline(hostmask.c_str()); 00686 } 00687 -00688 long Server::CalcDuration(std::string delta) +00688 bool Server::DelELine(std::string hostmask) 00689 { -00690 return duration(delta.c_str()); +00690 return del_eline(hostmask.c_str()); 00691 } 00692 -00693 bool Server::IsValidMask(std::string mask) +00693 long Server::CalcDuration(std::string delta) 00694 { -00695 const char* dest = mask.c_str(); -00696 if (strchr(dest,'!')==0) -00697 return false; -00698 if (strchr(dest,'@')==0) -00699 return false; -00700 for (unsigned int i = 0; i < strlen(dest); i++) -00701 if (dest[i] < 32) -00702 return false; -00703 for (unsigned int i = 0; i < strlen(dest); i++) -00704 if (dest[i] > 126) -00705 return false; -00706 unsigned int c = 0; -00707 for (unsigned int i = 0; i < strlen(dest); i++) -00708 if (dest[i] == '!') -00709 c++; -00710 if (c>1) -00711 return false; -00712 c = 0; -00713 for (unsigned int i = 0; i < strlen(dest); i++) -00714 if (dest[i] == '@') -00715 c++; -00716 if (c>1) -00717 return false; -00718 -00719 return true; -00720 } -00721 -00722 Module* Server::FindModule(std::string name) -00723 { -00724 for (int i = 0; i <= MODCOUNT; i++) -00725 { -00726 if (Config->module_names[i] == name) -00727 { -00728 return modules[i]; -00729 } -00730 } -00731 return NULL; -00732 } -00733 -00734 ConfigReader::ConfigReader() -00735 { -00736 Config->ClearStack(); -00737 this->cache = new std::stringstream(std::stringstream::in | std::stringstream::out); -00738 this->errorlog = new std::stringstream(std::stringstream::in | std::stringstream::out); -00739 this->readerror = Config->LoadConf(CONFIG_FILE,this->cache,this->errorlog); -00740 if (!this->readerror) -00741 this->error = CONF_FILE_NOT_FOUND; -00742 } -00743 -00744 -00745 ConfigReader::~ConfigReader() -00746 { -00747 if (this->cache) -00748 delete this->cache; -00749 if (this->errorlog) -00750 delete this->errorlog; -00751 } -00752 -00753 -00754 ConfigReader::ConfigReader(std::string filename) -00755 { -00756 Config->ClearStack(); -00757 this->cache = new std::stringstream(std::stringstream::in | std::stringstream::out); -00758 this->errorlog = new std::stringstream(std::stringstream::in | std::stringstream::out); -00759 this->readerror = Config->LoadConf(filename.c_str(),this->cache,this->errorlog); -00760 if (!this->readerror) -00761 this->error = CONF_FILE_NOT_FOUND; -00762 }; -00763 -00764 std::string ConfigReader::ReadValue(std::string tag, std::string name, int index) -00765 { -00766 char val[MAXBUF]; -00767 char t[MAXBUF]; -00768 char n[MAXBUF]; -00769 strlcpy(t,tag.c_str(),MAXBUF); -00770 strlcpy(n,name.c_str(),MAXBUF); -00771 int res = Config->ReadConf(cache,t,n,index,val); -00772 if (!res) -00773 { -00774 this->error = CONF_VALUE_NOT_FOUND; -00775 return ""; -00776 } -00777 return val; -00778 } -00779 -00780 bool ConfigReader::ReadFlag(std::string tag, std::string name, int index) -00781 { -00782 char val[MAXBUF]; -00783 char t[MAXBUF]; -00784 char n[MAXBUF]; -00785 strlcpy(t,tag.c_str(),MAXBUF); -00786 strlcpy(n,name.c_str(),MAXBUF); -00787 int res = Config->ReadConf(cache,t,n,index,val); -00788 if (!res) -00789 { -00790 this->error = CONF_VALUE_NOT_FOUND; -00791 return false; -00792 } -00793 std::string s = val; -00794 return ((s == "yes") || (s == "YES") || (s == "true") || (s == "TRUE") || (s == "1")); -00795 } -00796 -00797 long ConfigReader::ReadInteger(std::string tag, std::string name, int index, bool needs_unsigned) -00798 { -00799 char val[MAXBUF]; -00800 char t[MAXBUF]; -00801 char n[MAXBUF]; -00802 strlcpy(t,tag.c_str(),MAXBUF); -00803 strlcpy(n,name.c_str(),MAXBUF); -00804 int res = Config->ReadConf(cache,t,n,index,val); -00805 if (!res) -00806 { -00807 this->error = CONF_VALUE_NOT_FOUND; -00808 return 0; -00809 } -00810 for (unsigned int i = 0; i < strlen(val); i++) +00695 return duration(delta.c_str()); +00696 } +00697 +00698 bool Server::IsValidMask(std::string mask) +00699 { +00700 const char* dest = mask.c_str(); +00701 if (strchr(dest,'!')==0) +00702 return false; +00703 if (strchr(dest,'@')==0) +00704 return false; +00705 for (unsigned int i = 0; i < strlen(dest); i++) +00706 if (dest[i] < 32) +00707 return false; +00708 for (unsigned int i = 0; i < strlen(dest); i++) +00709 if (dest[i] > 126) +00710 return false; +00711 unsigned int c = 0; +00712 for (unsigned int i = 0; i < strlen(dest); i++) +00713 if (dest[i] == '!') +00714 c++; +00715 if (c>1) +00716 return false; +00717 c = 0; +00718 for (unsigned int i = 0; i < strlen(dest); i++) +00719 if (dest[i] == '@') +00720 c++; +00721 if (c>1) +00722 return false; +00723 +00724 return true; +00725 } +00726 +00727 Module* Server::FindModule(std::string name) +00728 { +00729 for (int i = 0; i <= MODCOUNT; i++) +00730 { +00731 if (Config->module_names[i] == name) +00732 { +00733 return modules[i]; +00734 } +00735 } +00736 return NULL; +00737 } +00738 +00739 ConfigReader::ConfigReader() +00740 { +00741 Config->ClearStack(); +00742 this->cache = new std::stringstream(std::stringstream::in | std::stringstream::out); +00743 this->errorlog = new std::stringstream(std::stringstream::in | std::stringstream::out); +00744 this->readerror = Config->LoadConf(CONFIG_FILE,this->cache,this->errorlog); +00745 if (!this->readerror) +00746 this->error = CONF_FILE_NOT_FOUND; +00747 } +00748 +00749 +00750 ConfigReader::~ConfigReader() +00751 { +00752 if (this->cache) +00753 delete this->cache; +00754 if (this->errorlog) +00755 delete this->errorlog; +00756 } +00757 +00758 +00759 ConfigReader::ConfigReader(std::string filename) +00760 { +00761 Config->ClearStack(); +00762 this->cache = new std::stringstream(std::stringstream::in | std::stringstream::out); +00763 this->errorlog = new std::stringstream(std::stringstream::in | std::stringstream::out); +00764 this->readerror = Config->LoadConf(filename.c_str(),this->cache,this->errorlog); +00765 if (!this->readerror) +00766 this->error = CONF_FILE_NOT_FOUND; +00767 }; +00768 +00769 std::string ConfigReader::ReadValue(std::string tag, std::string name, int index) +00770 { +00771 char val[MAXBUF]; +00772 char t[MAXBUF]; +00773 char n[MAXBUF]; +00774 strlcpy(t,tag.c_str(),MAXBUF); +00775 strlcpy(n,name.c_str(),MAXBUF); +00776 int res = Config->ReadConf(cache,t,n,index,val); +00777 if (!res) +00778 { +00779 this->error = CONF_VALUE_NOT_FOUND; +00780 return ""; +00781 } +00782 return val; +00783 } +00784 +00785 bool ConfigReader::ReadFlag(std::string tag, std::string name, int index) +00786 { +00787 char val[MAXBUF]; +00788 char t[MAXBUF]; +00789 char n[MAXBUF]; +00790 strlcpy(t,tag.c_str(),MAXBUF); +00791 strlcpy(n,name.c_str(),MAXBUF); +00792 int res = Config->ReadConf(cache,t,n,index,val); +00793 if (!res) +00794 { +00795 this->error = CONF_VALUE_NOT_FOUND; +00796 return false; +00797 } +00798 std::string s = val; +00799 return ((s == "yes") || (s == "YES") || (s == "true") || (s == "TRUE") || (s == "1")); +00800 } +00801 +00802 long ConfigReader::ReadInteger(std::string tag, std::string name, int index, bool needs_unsigned) +00803 { +00804 char val[MAXBUF]; +00805 char t[MAXBUF]; +00806 char n[MAXBUF]; +00807 strlcpy(t,tag.c_str(),MAXBUF); +00808 strlcpy(n,name.c_str(),MAXBUF); +00809 int res = Config->ReadConf(cache,t,n,index,val); +00810 if (!res) 00811 { -00812 if (!isdigit(val[i])) -00813 { -00814 this->error = CONF_NOT_A_NUMBER; -00815 return 0; -00816 } -00817 } -00818 if ((needs_unsigned) && (atoi(val)<0)) -00819 { -00820 this->error = CONF_NOT_UNSIGNED; -00821 return 0; +00812 this->error = CONF_VALUE_NOT_FOUND; +00813 return 0; +00814 } +00815 for (unsigned int i = 0; i < strlen(val); i++) +00816 { +00817 if (!isdigit(val[i])) +00818 { +00819 this->error = CONF_NOT_A_NUMBER; +00820 return 0; +00821 } 00822 } -00823 return atoi(val); -00824 } -00825 -00826 long ConfigReader::GetError() -00827 { -00828 long olderr = this->error; -00829 this->error = 0; -00830 return olderr; -00831 } -00832 -00833 void ConfigReader::DumpErrors(bool bail, userrec* user) -00834 { -00835 if (bail) -00836 { -00837 printf("There were errors in your configuration:\n%s",errorlog->str().c_str()); -00838 exit(0); -00839 } -00840 else +00823 if ((needs_unsigned) && (atoi(val)<0)) +00824 { +00825 this->error = CONF_NOT_UNSIGNED; +00826 return 0; +00827 } +00828 return atoi(val); +00829 } +00830 +00831 long ConfigReader::GetError() +00832 { +00833 long olderr = this->error; +00834 this->error = 0; +00835 return olderr; +00836 } +00837 +00838 void ConfigReader::DumpErrors(bool bail, userrec* user) +00839 { +00840 if (bail) 00841 { -00842 char dataline[1024]; -00843 if (user) -00844 { -00845 WriteServ(user->fd,"NOTICE %s :There were errors in the configuration file:",user->nick); -00846 while (!errorlog->eof()) -00847 { -00848 errorlog->getline(dataline,1024); -00849 WriteServ(user->fd,"NOTICE %s :%s",user->nick,dataline); -00850 } -00851 } -00852 else -00853 { -00854 WriteOpers("There were errors in the configuration file:",user->nick); -00855 while (!errorlog->eof()) -00856 { -00857 errorlog->getline(dataline,1024); -00858 WriteOpers(dataline); -00859 } -00860 } -00861 return; -00862 } -00863 } -00864 -00865 -00866 int ConfigReader::Enumerate(std::string tag) -00867 { -00868 return Config->EnumConf(cache,tag.c_str()); -00869 } +00842 printf("There were errors in your configuration:\n%s",errorlog->str().c_str()); +00843 exit(0); +00844 } +00845 else +00846 { +00847 char dataline[1024]; +00848 if (user) +00849 { +00850 WriteServ(user->fd,"NOTICE %s :There were errors in the configuration file:",user->nick); +00851 while (!errorlog->eof()) +00852 { +00853 errorlog->getline(dataline,1024); +00854 WriteServ(user->fd,"NOTICE %s :%s",user->nick,dataline); +00855 } +00856 } +00857 else +00858 { +00859 WriteOpers("There were errors in the configuration file:",user->nick); +00860 while (!errorlog->eof()) +00861 { +00862 errorlog->getline(dataline,1024); +00863 WriteOpers(dataline); +00864 } +00865 } +00866 return; +00867 } +00868 } +00869 00870 -00871 int ConfigReader::EnumerateValues(std::string tag, int index) +00871 int ConfigReader::Enumerate(std::string tag) 00872 { -00873 return Config->EnumValues(cache, tag.c_str(), index); +00873 return Config->EnumConf(cache,tag.c_str()); 00874 } 00875 -00876 bool ConfigReader::Verify() +00876 int ConfigReader::EnumerateValues(std::string tag, int index) 00877 { -00878 return this->readerror; +00878 return Config->EnumValues(cache, tag.c_str(), index); 00879 } 00880 -00881 -00882 FileReader::FileReader(std::string filename) -00883 { -00884 file_cache c; -00885 readfile(c,filename.c_str()); -00886 this->fc = c; -00887 } -00888 -00889 FileReader::FileReader() -00890 { -00891 } -00892 -00893 void FileReader::LoadFile(std::string filename) -00894 { -00895 file_cache c; -00896 readfile(c,filename.c_str()); -00897 this->fc = c; -00898 } -00899 -00900 -00901 FileReader::~FileReader() -00902 { +00881 bool ConfigReader::Verify() +00882 { +00883 return this->readerror; +00884 } +00885 +00886 +00887 FileReader::FileReader(std::string filename) +00888 { +00889 file_cache c; +00890 readfile(c,filename.c_str()); +00891 this->fc = c; +00892 } +00893 +00894 FileReader::FileReader() +00895 { +00896 } +00897 +00898 void FileReader::LoadFile(std::string filename) +00899 { +00900 file_cache c; +00901 readfile(c,filename.c_str()); +00902 this->fc = c; 00903 } 00904 -00905 bool FileReader::Exists() -00906 { -00907 if (fc.size() == 0) -00908 { -00909 return(false); -00910 } -00911 else -00912 { -00913 return(true); -00914 } -00915 } -00916 -00917 std::string FileReader::GetLine(int x) -00918 { -00919 if ((x<0) || ((unsigned)x>fc.size())) -00920 return ""; -00921 return fc[x]; -00922 } -00923 -00924 int FileReader::FileSize() -00925 { -00926 return fc.size(); +00905 +00906 FileReader::~FileReader() +00907 { +00908 } +00909 +00910 bool FileReader::Exists() +00911 { +00912 if (fc.size() == 0) +00913 { +00914 return(false); +00915 } +00916 else +00917 { +00918 return(true); +00919 } +00920 } +00921 +00922 std::string FileReader::GetLine(int x) +00923 { +00924 if ((x<0) || ((unsigned)x>fc.size())) +00925 return ""; +00926 return fc[x]; 00927 } 00928 -00929 -00930 std::vector<Module*> modules(255); -00931 std::vector<ircd_module*> factory(255); -00932 -00933 int MODCOUNT = -1; +00929 int FileReader::FileSize() +00930 { +00931 return fc.size(); +00932 } +00933 00934 -00935 -
Generated on Wed Dec 14 14:49:17 2005 for InspIRCd by  +00935 std::vector<Module*> modules(255); +00936 std::vector<ircd_module*> factory(255); +00937 +00938 int MODCOUNT = -1; +00939 +00940 +
Generated on Wed Dec 14 15:55:46 2005 for InspIRCd by  doxygen 1.4.4-20050815
-- cgit v1.2.3