Changeset 369 in code
- Timestamp:
- Jul 22, 2020, 1:44:19 PM (5 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/doc/soju.1.scd
r368 r369 129 129 - _[ircs://]<host>[:port]_ connects with TLS over TCP 130 130 - _irc+insecure://<host>[:port]_ connects with plain-text TCP 131 - _ unix:///<path>_ connects to a Unix socket131 - _irc+unix:///<path>_ connects to a Unix socket 132 132 133 133 Other options are: -
trunk/upstream.go
r355 r369 143 143 return nil, fmt.Errorf("failed to dial %q: %v", addr, err) 144 144 } 145 case " unix":145 case "irc+unix", "unix": 146 146 logger.Printf("connecting to Unix socket at path %q", u.Path) 147 147 netConn, err = dialer.Dial("unix", u.Path)
Note:
See TracChangeset
for help on using the changeset viewer.