Difference between revisions of "Talk:ServerList"

From Mibbit Wiki
Jump to: navigation, search
(Modify mibbit to send host name using the USER statement.)
 
Line 1: Line 1:
If you'd modify mibbit to send the hostname using the USER token then you could also add irc.scarynet.org, send me a message if you've done that and give me a list of ip's you use for the outgoing connection.
+
If you'd modify mibbit to send the hostname using the USER token then you could also add irc.scarynet.org.
 
Below is the way I implemented cgiirc support, and this can also be used by mibbit.  
 
Below is the way I implemented cgiirc support, and this can also be used by mibbit.  
 
(Sending the USER token the below way is doing it the right way anyways).  
 
(Sending the USER token the below way is doing it the right way anyways).  
 
most ircd's ignore the hostname parameter since they perform there own resolving.  
 
most ircd's ignore the hostname parameter since they perform there own resolving.  
So I reused this to transfer the host of the connecting client between a webchat and the ircd in combination with a so-called W:Line (webchat).
+
So I reused this to transfer the host of the connecting client between a webchat and the ircd in combination with a so-called W:Line (webchat). Your ip has been added to that list.
  
 
/*
 
/*

Revision as of 03:33, 3 May 2008

If you'd modify mibbit to send the hostname using the USER token then you could also add irc.scarynet.org. Below is the way I implemented cgiirc support, and this can also be used by mibbit. (Sending the USER token the below way is doing it the right way anyways). most ircd's ignore the hostname parameter since they perform there own resolving. So I reused this to transfer the host of the connecting client between a webchat and the ircd in combination with a so-called W:Line (webchat). Your ip has been added to that list.

/*

* m_user
*
* parv[0] = sender prefix
* parv[1] = username           (login name, account)
* parv[2] = host name          (hostname if webchat)
* parv[3] = server name        (ignored)
* parv[4] = users real name info
*/