Anope IRC Services

Please login or register.

Login with username, password and session length
Advanced search  

News:

Pages: 1 2 [3]   Go Down

Author Topic: Anope 1.8 & InspIRCd 1.2 Support - Stable 1.0 Released. -DEPRICATED  (Read 69426 times)

0 Members and 3 Guests are viewing this topic.

Joseph

  • Anope User
  • Offline Offline
  • Posts: 1
Re: Anope 1.8 & InspIRCd 1.2 Support - Stable 1.0 Released.
« Reply #50 on: December 13, 2009, 06:07:35 PM »

Since the InspIRCd module has reached 1.0, to avoid confusion, could we released it under Anope 1.8.3? That will reduce confusion where to download the right version where the person could accidentally download a beta version of the module from the Main Page.
Logged

Charles Kingsley

  • Contributor
  • *
  • Offline Offline
  • Posts: 1405
Re: Anope 1.8 & InspIRCd 1.2 Support - Stable 1.0 Released.
« Reply #51 on: December 13, 2009, 07:10:07 PM »

1.8.3 will be released when we're ready; there's more to it than *just* InspIRCd 1.2 support.

The advice is clear enough on the home page of the site for the use of InspIRCd 1.2, if people can't read to click a link there's little else we can do.
Logged

John

  • Anope User
  • Offline Offline
  • Posts: 2
Re: Anope 1.8 & InspIRCd 1.2 Support - Stable 1.0 Released.
« Reply #52 on: January 10, 2010, 09:03:32 AM »

Got a new problem (I think.)

When trying to jupe a server (a non-existent server, but I don't think that should matter), I get an error back from InspIRCD, and then disconnected.

[Jan 09 20:41:10.529218 2010] OperServ: jeian: jupe o.hai.there
[Jan 09 20:41:10.530703 2010] debug: Sent: SERVER o.hai.there <servicespassword> 1 7CA :Juped by jeian
[Jan 09 20:41:10.531219 2010] debug: Creating o.hai.there(7CB) uplinked to services.cairc.dev
[Jan 09 20:41:10.532796 2010] debug: Sent: :7CAAAAAAB SNONOTICE g :jeian used JUPE on o.hai.there
[Jan 09 20:41:10.532961 2010] debug: Received: ERROR :Server ID 7CA already exists! You may want to specify the server ID for the server manually with <server:id> so they do not conflict.

After this, InspIRCD closes the connection, and Anope quits. I had a look at the code myself, and I noticed that in inspircd_cmd_server(), there appears:

send_cmd(NULL, "SERVER %s %s %d %s :%s", servname, currentpass, hop, TS6SID, descript);

So it appears to me that whenever Anope introduces a JUPEd pseudo-server to the rest of the network, it always tells the network that the pseudoserver has the same SID as Anope itself. Then in the line after inspircd_cmd_server(), I see:

new_server(me_server, jserver, rbuf, SERVER_JUPED, ts6_sid_retrieve());

Which creates a new SID to be put into the new struct for the juped server?

It's 3AM and my knowledge of the InspIRCD protocol is somewhat lacking, so I could be way off, but that seems a little odd. "_" Any help would be appreciated.
Logged

LEthaLity

  • Team
  • *
  • Offline Offline
  • Gender: Male
  • Posts: 307
    • LEthaLity
Re: Anope 1.8 & InspIRCd 1.2 Support - Stable 1.0 Released.
« Reply #53 on: January 10, 2010, 09:24:00 AM »

Problem got cleared up since the first release of the protocol module.

I dont get the problem on my testnet.
InspIRCd-1.2   Anope-1.8.2-svn (2731)

   
NEW
send_cmd(NULL, "SERVER %s %s %d %s :%s", servname, currentpass, hop,
            sid ? sid : TS6SID, descript);

ORIGINAL
send_cmd(NULL, "SERVER %s %s %d %s :%s", servname, currentpass, hop, TS6SID, descript);
Logged

genius3000

  • Anope User
  • Offline Offline
  • Posts: 37
Re: Anope 1.8 & InspIRCd 1.2 Support - Stable 1.0 Released.
« Reply #54 on: January 10, 2010, 10:03:12 AM »

Problem got cleared up since the first release of the protocol module.

I dont get the problem on my testnet.
InspIRCd-1.2   Anope-1.8.2-svn (2731)

   
NEW
send_cmd(NULL, "SERVER %s %s %d %s :%s", servname, currentpass, hop,
            sid ? sid : TS6SID, descript);

ORIGINAL
send_cmd(NULL, "SERVER %s %s %d %s :%s", servname, currentpass, hop, TS6SID, descript);

Interesting, the code in both the Anope 1.8.2 with InspIRCd 1.2 Support 1.0 Stable and the stand alone module 1.0 have the Original code, not the new code as you have stated.
Logged
-genius3000

Charles Kingsley

  • Contributor
  • *
  • Offline Offline
  • Posts: 1405
Re: Anope 1.8 & InspIRCd 1.2 Support - Stable 1.0 Released.
« Reply #55 on: January 10, 2010, 10:10:39 AM »

Check out the latest 1.8-svn.

Logged

LEthaLity

  • Team
  • *
  • Offline Offline
  • Gender: Male
  • Posts: 307
    • LEthaLity
Re: Anope 1.8 & InspIRCd 1.2 Support - Stable 1.0 Released.
« Reply #56 on: January 10, 2010, 10:13:07 AM »

most likely because i'm using anope from svn, although I do wonder how it wasn't noticed before if it is an issue in the supposedly "stable" version, i guess thats a result of people not actually testing the module properly when it was first released as experimental, if people don't test properly before it is considered stable, it'll happen.
Logged

genius3000

  • Anope User
  • Offline Offline
  • Posts: 37
Re: Anope 1.8 & InspIRCd 1.2 Support - Stable 1.0 Released.
« Reply #57 on: January 10, 2010, 10:31:41 AM »

Yep, the svn is different than the "stable" and stand alone releases. Thanks for the info guys, we'll have to update it via the svn.
Logged
-genius3000

Jan Milants

  • Team
  • *
  • Offline Offline
  • Gender: Male
  • Posts: 1372
Re: Anope 1.8 & InspIRCd 1.2 Support - Stable 1.0 Released.
« Reply #58 on: January 10, 2010, 11:43:22 AM »

Just for the record, nor the anope 1.8 release with insp 1.2 support, nor the original 3rd party inspircd1.2 protocol module are maintained...
Once the module was included into anope svn, both became depricated and several important fixes for inspircd 1.2 support have been applied to svn since.
Maintaining 3 seperate (and different) versions is a bit too much of a good thing...
Logged
If you like me donate coins to 1FBmZVT4J8WAUMHKqpWhgNVj3XXnRN1cCk :)

John

  • Anope User
  • Offline Offline
  • Posts: 2
Re: Anope 1.8 & InspIRCd 1.2 Support - Stable 1.0 Released. -DEPRICATED
« Reply #59 on: January 10, 2010, 09:01:30 PM »

Good to know, I'll rebuild from SVN later today. Thanks all!
Logged
Pages: 1 2 [3]   Go Up