Changeset 376 for TwitterIrcGateway/TwitterIrcGatewayCLI/Program.cs
- Timestamp:
- 05/07/08 22:03:43 (8 months ago)
- Files:
-
- 1 modified
-
TwitterIrcGateway/TwitterIrcGatewayCLI/Program.cs (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
TwitterIrcGateway/TwitterIrcGatewayCLI/Program.cs
r369 r376 60 60 _server.BroadcastUpdateMessageIsNotice = options.BroadcastUpdateMessageIsNotice; 61 61 _server.SessionStartedRecieved += new EventHandler<SessionStartedEventArgs>(_server_SessionStartedRecieved); 62 _server.Proxy = new WebProxy(options.Proxy); 62 63 63 64 Console.WriteLine("Start TwitterIrcGateway Server v{0}", typeof(Server).Assembly.GetName().Version); … … 79 80 Console.WriteLine("[Configuration] ClientMessageWait: {0}", _server.ClientMessageWait); 80 81 Console.WriteLine("[Configuration] BroadcatUpdateMessageIsNotice: {0}", _server.BroadcastUpdateMessageIsNotice); 82 Console.WriteLine("[Configuration] Proxy: {0}", _server.Proxy); 81 83 82 84 _server.Start(bindAddress, options.Port); … … 172 174 [Description("broadcast status message type is NOTICE")] 173 175 public Boolean BroadcastUpdateMessageIsNotice { get; set; } 176 177 [DefaultValue("")] 178 [Description("web proxy url")] 179 public String Proxy { get; set; } 174 180 } 175 181 }
