- Timestamp:
- Mar 15, 2021, 10:08:19 PM (4 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/downstream.go
r456 r461 881 881 } 882 882 883 if uc := dc.upstream(); uc != nil && uc. networkName != ""{884 isupport = append(isupport, fmt.Sprintf("NETWORK=%v", uc.networkName))883 if uc := dc.upstream(); uc != nil && uc.isupport["NETWORK"] != nil { 884 isupport = append(isupport, fmt.Sprintf("NETWORK=%v", *uc.isupport["NETWORK"])) 885 885 } 886 886 -
trunk/upstream.go
r460 r461 79 79 80 80 serverName string 81 networkName string82 81 availableUserModes string 83 82 availableChannelModes map[byte]channelModeType … … 649 648 return err 650 649 } 651 case "NETWORK":652 uc.networkName = value653 650 } 654 651 }
Note:
See TracChangeset
for help on using the changeset viewer.