This is the new home of the egghelp.org community forum.
All data has been migrated (including user logins/passwords) to a new phpBB version.


For more information, see this announcement post. Click the X in the top right-corner of this box to dismiss this message.

have eggdrop 1.6.18 ipv6 support?

General support and discussion of Eggdrop bots.
Post Reply
Z
Zerg
Halfop
Posts: 49
Joined: Sat May 20, 2006 10:03 am

have eggdrop 1.6.18 ipv6 support?

Post by Zerg »

hello,
have eggdrop 1.6.18 ipv6 support?

or must i compile this with an ipv6 option?

Code: Select all

[23:15:21] <)egg> [23:15] Versuche Server linz.irc.at:6667
[23:16:21] <)egg> [23:16] Timeout: connect to linz.irc.at
[23:16:22] <)egg> [23:16] Versuche Server linz.irc.at:6667
[23:17:31] <)egg> [23:17] Timeout: connect to linz.irc.at
[23:17:32] <)egg> [23:17] Versuche Server linz.irc.at:6667

Code: Select all

set servers {
  linz.irc.at:6667
}
is the code right for ipv6 servers?

thank you very much for help
n
nml375
Revered One
Posts: 2860
Joined: Fri Aug 04, 2006 2:09 pm

Post by nml375 »

There is NO ipv6 support built into 1.6.18 (as it was removed in 1.6.16 due to the poor implementation of it)

Should you need to connect to an ipv6-hosted irc-server, I'd recommend running 6tunnel or similar software tunneler.
NML_375
Z
Zerg
Halfop
Posts: 49
Joined: Sat May 20, 2006 10:03 am

Post by Zerg »

nml375 wrote:There is NO ipv6 support built into 1.6.18 (as it was removed in 1.6.16 due to the poor implementation of it)

Should you need to connect to an ipv6-hosted irc-server, I'd recommend running 6tunnel or similar software tunneler.
i have a tunnel.
where can i get the ipv6 module?

I havent found the module on www.eggheads.org

thank you very much for help
n
nml375
Revered One
Posts: 2860
Joined: Fri Aug 04, 2006 2:09 pm

Post by nml375 »

There is no ipv6-module...

6tunnel is a standalone tunneling application, and is not develeoped, maintained, or otherwize associated with eggdrop or eggheads.org.
Check your system wether it's available, otherwize google for it
NML_375
Z
Zerg
Halfop
Posts: 49
Joined: Sat May 20, 2006 10:03 am

Post by Zerg »

nml375 wrote:There is no ipv6-module...

6tunnel is a standalone tunneling application, and is not develeoped, maintained, or otherwize associated with eggdrop or eggheads.org.
Check your system wether it's available, otherwize google for it
than can i use only the old eggdrops version with ipv6 support? why is the ipv6 modul in the new versions of eggdrop removed?
User avatar
De Kus
Revered One
Posts: 1361
Joined: Sun Dec 15, 2002 11:41 am
Location: Germany

Post by De Kus »

It has never been a module, and it was removed for reasons mentioned ealier in this thread.
De Kus
StarZ|De_Kus, De_Kus or DeKus on IRC
Copyright © 2005-2009 by De Kus - published under The MIT License
Love hurts, love strengthens...
User avatar
slennox
Owner
Posts: 593
Joined: Sat Sep 22, 2001 8:00 pm
Contact:

Post by slennox »

Patch for 1.6.18 was posted today on the main site. Not sure if it has the same issues mentioned in this thread.
n
nml375
Revered One
Posts: 2860
Joined: Fri Aug 04, 2006 2:09 pm

Post by nml375 »

Unfortunately, as can be seen in the part below from the patch-file, it does suffer from the same issues. Bots using this patch will most likely crash randomly.

Code: Select all

...
 #define tell_bottree ((void (*)(int, int))global[276])
+#define getprotocol ((int (*)(char *))global[277]) /* get protocol */
 #define MD5_Init ((void (*)(MD5_CTX *))global[277])
...

Code: Select all

...
   /* 276 - 279 */
   (Function) tell_bottree,
+  (Function) getprotocol,
   (Function) MD5_Init,
...
Whenever any of the following exported commands are invoked by any loaded module, your bot will most likely crash due to segment violation:

MD5_Init, MD5_Update, MD5_Final, wild_match_per, killtransfer, write_ignores, copy_to_tmp, quiet_reject, file_readable, strip_mirc_codes, check_ansi, oatoi, str_isdigit, remove_crlf
NML_375
User avatar
slennox
Owner
Posts: 593
Joined: Sat Sep 22, 2001 8:00 pm
Contact:

Post by slennox »

I've added a warning to the patch description and informed Free-bob.
Post Reply