Change unix:// to irc+unix://
When Unix socket support will be added for listeners, unix:// will be ambiguous. It won't be clear whether to setup an IRC server, or some other kind of server (e.g. identd). unix:// is still recognized to avoid breaking existing DBs. git-svn-id: file:///srv/svn/repo/suika/trunk@369 f0ae65fe-ee39-954e-97ec-027ff2717ef4
This commit is contained in:
parent
06cc81a33e
commit
2ebc03a712
@ -128,7 +128,7 @@ abbreviated form, for instance *network* can be abbreviated as *net* or just
|
||||
|
||||
- _[ircs://]<host>[:port]_ connects with TLS over TCP
|
||||
- _irc+insecure://<host>[:port]_ connects with plain-text TCP
|
||||
- _unix:///<path>_ connects to a Unix socket
|
||||
- _irc+unix:///<path>_ connects to a Unix socket
|
||||
|
||||
Other options are:
|
||||
|
||||
|
@ -142,7 +142,7 @@ func connectToUpstream(network *network) (*upstreamConn, error) {
|
||||
if err != nil {
|
||||
return nil, fmt.Errorf("failed to dial %q: %v", addr, err)
|
||||
}
|
||||
case "unix":
|
||||
case "irc+unix", "unix":
|
||||
logger.Printf("connecting to Unix socket at path %q", u.Path)
|
||||
netConn, err = dialer.Dial("unix", u.Path)
|
||||
if err != nil {
|
||||
|
Loading…
x
Reference in New Issue
Block a user