active questions tagged networking - Stack Overflow most recent 30 from stackoverflow.com 2009-12-07T21:52:36Z http://stackoverflow.com/feeds/tag/networking http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1861962/windows7-the-specified-network-password-is-not-correct-when-the-password-is 0 Windows7 - "The specified network password is not correct." when the password is in fact correct. [closed] win7user 2009-12-07T18:30:05Z 2009-12-07T18:32:29Z <p>I have a samba server setup for over a year now.</p> <p>I also have a Windows Vista and a Windows XP machine - from both I am able to map <i>\192.168.0.20\Smd</i> with no errors ( <i>net use l: \192.168.0.20\Smd</i> works, after asking for my username and password).</p> <p>I also bought a brand new computer, with Windows 7, and when I try to execute the same exact net use command on it - using the exact same username/password pair, I get a "\"The specified network password is not correct." message. I also tried mapping from the Windows explorer menu, and got the same error.</p> <p>I synchronized the clocks of the two machines, tried again... and yet the same error persists.</p> <p>Anyone has any idea of what could be causing this or how to solve the problem? Thanks</p> http://stackoverflow.com/questions/515436/how-to-get-internet-ip 4 How to get *internet* IP ? Lukas Šalkauskas 2009-02-05T11:02:49Z 2009-12-07T16:14:39Z <p>Imagine a situation, I have PC with two lan cards, one is connected to internet another is connected to local network, how can I detect IP which is connected to internet with C# ?</p> http://stackoverflow.com/questions/1860452/virtualbox-get-network-access-from-host-vista-xp-to-guest-ubuntu-nat 0 virtualbox get network access from host (vista/xp) to guest (ubuntu) - NAT? [closed] stephan 2009-12-07T14:54:05Z 2009-12-07T14:54:05Z <p>after installing ubuntu in virtualbox using NAT the guest system has the IP 10.0.2.15. its possible browse and to ping the host</p> <p>in the global settings i found a virtual host-only interface with an IP 169.254.203.239. this seems to be the IP of the virtualbox "router" - ping is possible what i know what works is using an forwarding to some ports get access to the guest system.</p> <p>but - as i remember of vmware - i want to have access to the guest, as its like a physical one. so i tried to give the guest (ubuntu) an ip from my host net (192.168.178.x)</p> <p>as a result a can no more browse and no ping is possible</p> <p>i only added:</p> <p>auto eth0 iface eth0 inet static address 192.168.178.155 netmask 255.255.255.0 gateway 192.168.178.1</p> <p>to etc/network/interfaces - nameserver is in etc/resolv.conf</p> <p>any ideas?!</p> http://stackoverflow.com/questions/1808375/send-and-receive-data-trough-the-power-network 3 Send and receive data trough the power network luvieere 2009-11-27T12:06:48Z 2009-12-07T11:39:47Z <p>I'm <strong>not</strong> interested in a hardware solution, I want to know about software that may "read" modulated signal received trough the power supply - some sort of a low-level driver that would access the power signal in a convenient place and demodulate it.</p> <p>Is there a way to receive signal from the computer's power supply? I'm interested in an API or library that would allow the computer to be seen as a node in a <a href="http://en.wikipedia.org/wiki/Power%5Fline%5Fcommunication" rel="nofollow">Power Line Communication</a> network and receive data directly through the power cable, without the need for a converter. Is there any active research in this field?</p> <p><strong>Edit:</strong></p> <p>There is software that reads monitors and displays internal component voltages - DC voltage after being converted and filtered by the power supply - now I need is a method of data encoding that would be invariant to conversion and filtering, the original signal embedded in AC being present in some form within the converted DC signal.</p> http://stackoverflow.com/questions/1858519/tcp-connect-takes-x100-longer-than-ping 0 TCP Connect takes X100 longer than ping ripper234 2009-12-07T08:01:36Z 2009-12-07T08:44:27Z <p>I have a java process on machine A communicating with a Tomcat on machine B via TCP. The TCP connect (just the syn-syn/ack exchange) takes on the order of 100 ms consistently, while a ping request takes 1 ms (the serves are on the same LAN).</p> <ol> <li>What could cause the increased delay in establishing a TCP connection? </li> <li>How do I optimize it?</li> </ol> <p>Note that:</p> <ul> <li>This is not yet a 3-way-handshake, I'm measuring only the syn/syn-ack exchange.</li> <li>The server is a very strong machine and not under load at all.</li> <li>The connect request is to an IP, not a hostname, so no DNS lookup is involved. In fact, this is not relevant since I'm measuring the time sine the SYN left machine A.</li> </ul> http://stackoverflow.com/questions/833060/how-to-learn-about-computer-networking 2 How to learn about computer networking? yfel 2009-05-07T05:51:54Z 2009-12-07T05:54:18Z <p>I've read KOZIEROK's <em>the tcp/ip guide</em>(okay,almost.nearly 1100 pages outof 1500).but i found after reading this book,i only grasp how IP,TCP,DNS,BGP,OSPF,NAT(OSI layer 3-4,without 5-7,i.e,TCP.IP application layer) protocol works at the <strong>conceptual level</strong>,which i thought wasn't that helpful.</p> <p>So,in order to know the bolts and nuts of networking,where shold I go.My goals include :</p> <ol> <li>learning how web servers,say Apache works in detail.</li> <li>being able to write my own,simple yet functional web server(okay,just for learning purpose)</li> <li>being able to set up family/commercial networks.</li> </ol> <p>any suggestions?thanks alot!!</p> http://stackoverflow.com/questions/1824418/a-clean-lightweight-alternative-to-pythons-twisted 11 A clean, lightweight alternative to Python's twisted? jkp 2009-12-01T06:49:32Z 2009-12-07T05:52:40Z <p>A (long) while ago I wrote a web-spider that I multithreaded to enable concurrent requests to occur at the same time. That was in my Python youth, in the days before I knew about the <a href="http://www.dabeaz.com/python/GIL.pdf" rel="nofollow">GIL</a> and the associated woes it creates for multithreaded code (IE, most of the time, its not really multithreaded!)...</p> <p>I'd like to rework this code to make it more robust and perform better. There are basically two ways I could do this: I could use the new <a href="http://docs.python.org/library/multiprocessing.html" rel="nofollow">multiprocessing module</a> in 2.6+ or I could go for a reactor / event-based model of some sort. I would rather do the later since it's far simpler and less error-prone.</p> <p>So the question relates to what framework would be best suited to my needs. The following is a list of the options I know about so far:</p> <ul> <li><a href="http://twistedmatrix.com/trac/" rel="nofollow">Twisted</a>: The granddaddy of Python reactor frameworks: seems complex and a bit bloated however. Sleep learning curve for a small task.</li> <li><a href="http://eventlet.net/" rel="nofollow">Eventlet</a>: From the guys at <a href="http://lindenlab.com/" rel="nofollow">lindenlab</a>. Greenlet based framework that's geared towards these kinds of tasks. I had a look at the code though and it's not too pretty: non-pep8 compliant, scattered with prints (why do people do this in a framework!?), API seems a little inconsistent.</li> <li><a href="http://code.google.com/p/pyev/" rel="nofollow">PyEv</a>: Immature, doesn't seem to be anyone using it right now though it is based on libevent so it's got a solid backend.</li> <li><a href="http://docs.python.org/library/asyncore.html" rel="nofollow">asyncore</a>: From the stdlib: über low-level, seems like a lot of legwork involved just to get something off the ground.</li> <li><a href="http://www.tornadoweb.org/" rel="nofollow">tornado</a>: Though this is a server oriented product designed to server dynamic websites it does feature an <a href="http://github.com/facebook/tornado/blob/master/tornado/httpclient.py" rel="nofollow">async HTTP client</a> and a simple <a href="http://github.com/facebook/tornado/blob/master/tornado/ioloop.py" rel="nofollow">ioloop</a>. Looks like it could get the job done but not what it was intended for. [edit: doesn't run on Windows unfortunately, which counts it out for me - its a requirement for me to support this lame platform]</li> <li><a href="http://doc.scrapy.org/intro/overview.html" rel="nofollow">scrapy</a>: A twisted-based framework designed specifically for writing web spiders. Looks really nice in principle except it relies on libxml2 which is not easy to install or distribute on OS X (my preferred host platform) and additionally is not really factored to work like as a library for other host applications <a href="http://dev.scrapy.org/wiki/SEP-004" rel="nofollow">yet</a>.</li> </ul> <p>Is there anything I have missed at all? Surely there must be a library out there that fits the sweet-spot of a simplified async networking library!</p> <p>[edit: big thanks to <a href="http://stackoverflow.com/users/177663/intgr">intgr</a> for his pointer to <a href="http://code.google.com/p/cogen/" rel="nofollow">this page</a>. If you scroll to the bottom you will see there is a really nice list of projects that aim to tackle this task in one way or another. It seems actually that things have indeed moved on since the inception of Twisted: people now seem to favour a <a href="http://en.wikipedia.org/wiki/Coroutine" rel="nofollow">co-routine</a> based solution rather than a traditional reactor / callback oriented one. The benefits of this approach are clearer more direct code: I've certainly found in the past, especially when working with <a href="http://www.boost.org/doc/libs/1%5F41%5F0/doc/html/boost%5Fasio.html" rel="nofollow">boost.asio</a> in C++ that callback based code can lead to designs that can be hard-to-follow and are relatively obscure to the untrained eye. Using co-routines allows you to write code that looks a little more synchronous at least. I guess now my task is to work out which one of these many libraries I like the look of and give it a go! Glad I asked now...]</p> http://stackoverflow.com/questions/1386931/what-are-the-internal-limits-to-wcf 1 What are the internal limits to WCF ligos 2009-09-06T22:49:35Z 2009-12-07T03:05:39Z <p>WCF has lots of limits imposed on it to protect against DoS attacks and other developer brainlessness. What are these limits? And how can they be overriden?</p> <p>Specifically, if I was to try to send a large number of messages in a short period of time to a variety of different clients, what are the internal WCF limits they may cause messages to be sent slowly.</p> <p>PS: this question is a much shorter version of my <a href="http://stackoverflow.com/questions/1371218/sending-wcf-messages-being-delayed-under-load">previous question</a> that did not get much attention.</p> <p><strong>EDIT</strong> I have answered the <a href="http://stackoverflow.com/questions/1371218/sending-wcf-messages-being-delayed-under-load">original question</a>. The issue being my async calls were being turned into synchronous ones.</p> http://stackoverflow.com/questions/1371218/sending-wcf-messages-being-delayed-under-load 1 Sending WCF messages being delayed under load ligos 2009-09-03T02:54:54Z 2009-12-07T03:05:31Z <p>When sending messages from a self hosted WCF service to many clients (about 10 or so), sometimes messages are being delayed significantly longer than I'd expect (several seconds to send to a client on local network). Does anyone have an idea why this would be and how to fix it?</p> <p><hr /></p> <p>Some background: the application is a stock ticker style service. It receives messages from a 3rd party server and re-publishes them to clients that connect to the service. It's very important that messages are published as quickly as possible, and in most cases the time between receiving a message and publishing it to all clients is less than 50ms (it's so quick it approaches the resolution of DateTime.Now).</p> <p>Over the past few weeks, we've been monitoring some occasions when messages are delayed by 2 or 3 seconds. A few days ago, we got a big spike and messages were being delayed by 40-60 seconds. Messages are not being dropped as far as I can tell (unless the entire connection is dropped). The delays does not appear to be specific to any one client; it affects all clients (including ones on the local network).</p> <p>I send messages to the clients by spamming the ThreadPool. As quickly as messages arrive I call BeginInvoke() once per message per client. The theory being that if any one client is slow to receive a message (because it's on dialup and downloading updates or something) that it won't impact other clients. That isn't what I'm observing though; it appears that all clients (including ones on the local network) are impacted by the delay by a similar duration.</p> <p>The volume of messages I'm dealing with is 100-400 per second. Messages contain a string, a guid, a date and, depending on the message type, 10-30 integers. I've observed them using Wireshark as being less than 1kB each. We have 10-20 clients connected at any one time.</p> <p>The WCF server is being hosted in a Windows service on a Windows 2003 Web Edition Server. I'm using the NetTCP binding with SSL/TLS encryption enabled and a custom username / password authentication. It has a 4Mbit internet connection, dual core CPU and 1GB ram and is dedicated to this application. The service is set to ConcurrencyMode.Multiple. The service process, even under high load, rarely exceeds 20% CPU usage.</p> <p>So far, I've tweaked various WCF configuration options such as:</p> <ul> <li>serviceBehaviors/serviceThrottling/maxConcurrentSessions (currently 102)</li> <li>serviceBehaviors/serviceThrottling/maxConcurrentCalls (currently 64)</li> <li>bindings/netTcpBinding/binding/maxConnections (currently 100)</li> <li>bindings/netTcpBinding/binding/listenBacklog (currently 100)</li> <li>bindings/netTcpBinding/binding/sendTimeout (currently 45s, although I've tried it as high as 3 minutes)</li> </ul> <p>It appears to me like the messages are being queued inside WCF once some threshold is reached (hence why I've being increasing the throttling limits). But to affect all clients it would need to max out all outgoing connections with one or two slow clients. Does anyone know if this is true of the WCF internals?</p> <p>I can also improve efficiency by coalescing incoming messages when I send them to the client. However, I suspect there's something underlying going on and coalescing won't fix the problem in the long term.</p> <p>WCF Config (with company names changed):</p> <pre><code>&lt;system.serviceModel&gt; </code></pre> <p> </p> <pre><code>&lt;host&gt; &lt;baseAddresses&gt; &lt;add baseAddress="net.tcp://localhost:8100/Publisher"/&gt; &lt;/baseAddresses&gt; &lt;/host&gt; &lt;endpoint address="ThePublisher" binding="netTcpBinding" bindingConfiguration="Tcp" contract="Company.Product.Server.Publisher.IPublisher" /&gt; </code></pre> <p> </p> <p> </p> <p> </p> <pre><code>&lt;/behavior&gt; </code></pre> <p> </p> <p>Code used to send messages:</p> <pre><code> Private Sub HandleDataBackground(ByVal sender As Object, ByVal e As Timers.ElapsedEventArgs) If Me._FeedDataQueue.Count &gt; 0 Then ' Dequeue any items received in last 50ms. While True Dim dataAndReceivedTime As DataWithReceivedTimeArg SyncLock Me._FeedDataQueue If Me._FeedDataQueue.Count = 0 Then Exit While dataAndReceivedTime = Me._FeedDataQueue.Dequeue() End SyncLock ' Publish data to all clients. Me.SendDataToClients(dataAndReceivedTime) End While End If End Sub Private Sub SendDataToClients(ByVal data As DataWithReceivedTimeArg) Dim clientsToReceive As IEnumerable(Of ClientInformation) SyncLock Me._ClientInformation clientsToReceive = Me._ClientInformation.Values.Where(Function(c) Contract.CollectionContains(c.ContractSubscriptions, data.Data.Contract) AndAlso c.IsUsable).ToList() End SyncLock For Each clientInfo In clientsToReceive Dim futureChangeMethod As New InvokeClientCallbackDelegate(Of DataItem)(AddressOf Me.InvokeClientCallback) futureChangeMethod.BeginInvoke(clientInfo, data.Data, AddressOf Me.SendDataToClient) Next End Sub Private Sub SendDataToClient(ByVal callback As IFusionIndicatorClientCallback, ByVal data As DataItem) ' Send callback.ReceiveData(data) End Sub Private Sub InvokeClientCallback(Of DataT)(ByVal client As ClientInformation, ByVal data As DataT, ByVal method As InvokeClientCallbackMethodDelegate(Of DataT)) Try ' Send If client.IsUsable Then method(client.CallbackObject, data) client.LastContact = DateTime.Now Else ' Make sure the callback channel has been removed. SyncLock Me._ClientInformation Me._ClientInformation.Remove(client.SessionId) End SyncLock End If Catch ex As CommunicationException .... Catch ex As ObjectDisposedException .... Catch ex As TimeoutException .... Catch ex As Exception .... End Try End Sub </code></pre> <p>A sample of one of the message types:</p> <pre><code> &lt;DataContract(), KnownType(GetType(DateTimeOffset)), KnownType(GetType(DataItemDepth)), KnownType(GetType(DataItemDepthDetail)), KnownType(GetType(DataItemHistory))&gt; _ Public MustInherit Class DataItem Implements ICloneable Protected _Contract As String Protected _MessageId As Guid Protected _TradeDate As DateTime &lt;DataMember()&gt; _ Public Property Contract() As String ... End Property &lt;DataMember()&gt; _ Public Property MessageId() As Guid ... End Property &lt;DataMember()&gt; _ Public Property TradeDate() As DateTime ... End Property Public MustOverride Function Clone() As Object Implements System.ICloneable.Clone End Class &lt;DataContract()&gt; _ Public Class DataItemDepth Inherits DataItem Protected _VolumnPriceDetail As IList(Of DataItemDepthItem) &lt;DataMember()&gt; _ Public Property VolumnPriceDetail() As IList(Of DataItemDepthItem) ... End Property Public Overrides Function Clone() As Object ... End Function End Class &lt;DataContract()&gt; _ Public Class DataItemDepthItem Protected _Volume As Int32 Protected _Price As Int32 Protected _BidOrAsk As BidOrAsk ' BidOrAsk is an Int32 enum Protected _Level As Int32 &lt;DataMember()&gt; _ Public Property Volume() As Int32 ... End Property &lt;DataMember()&gt; _ Public Property Price() As Int32 ... End Property &lt;DataMember()&gt; _ Public Property BidOrAsk() As BidOrAsk ' BidOrAsk is an Int32 enum ... End Property &lt;DataMember()&gt; _ Public Property Level() As Int32 ... End Property End Class </code></pre> http://stackoverflow.com/questions/1857327/find-host-name-using-the-ip-address-on-mac-os-x-network 1 find host name using the IP address on Mac OS X network amok 2009-12-07T01:42:25Z 2009-12-07T03:01:39Z <p>I have Mac OS X Server on laptop with OSX and one with Windows (just to give you the background). Dlink is the router.</p> <p>From the mac I want to figure out the hostname knowing the IPAddress. I can't get this done.</p> <p>I do the following: ping 192.168.1.255 (to get the list of all the IPs then I ping individually each machine using the using:</p> <p>host nothing arp -a nothing nslookup </p> <p>how the heck I can grab the hostname knowing the ip address? </p> <p>I am frustrated :-)</p> http://stackoverflow.com/questions/1854139/lightweight-network-visualization-tool 3 Lightweight network visualization tool Pedery 2009-12-06T02:21:51Z 2009-12-07T00:43:22Z <p>I've been trying to find a tool for monitoring my home network. Before I go into the details, I've looked at a ton of different software and they're either an overkill or don't have what I'm looking for. Hopefully the community can help me with some advice.</p> <p>My network is quite small. It consists of a modem connected to a D-Link DI-524 router. To this router I have a number of computers hooked up wirelessly.</p> <p>What I'm looking for is a <em>lightweight</em> tool for monitoring my traffic. The ideal tool would have a GUI that shows an icon of the router, and icons of all devices connected to the router with a bandwidth indicator on the lines connecting the nodes. That's pretty much it.</p> <p>I'm not sure if my router has SNMP. This might be a dealbreaker since many of the cheaper routers don't. I've also read somewhere that many routers can be monitored over UDP.</p> http://stackoverflow.com/questions/1799935/where-can-i-find-benchmarks-on-different-networking-architectures 1 Where can I find benchmarks on different networking architectures? Crazy Chenz 2009-11-25T21:04:55Z 2009-12-06T15:04:59Z <p>Where can I find benchmarks on different networking architectures?</p> <p>I am playing with sockets / threads / forks and I'd like to know what the best is. I was thinking there has got to be a place where someone has already spelled out all the pros and cons of different architectures for a socket service, listed benchmarks with code that runs.</p> <p>Ultimately I'd like to run these various configurations with my own code and see which runs best in different circumstances.</p> <p>Many people I talk to say that I should just use single threaded select. But I see an argument for threads when you're storing state information inside the thread to keep code simple. What is the trade off mark for writing my own state structure vs using a proven thread architecture. </p> <p>I've also been told forking is bad... but when you need 12000 connections on a machine that cannot raise the open file per process limit, forking is an option! Forking is also a nice option for stability when you've got one process that needs restarting, it doesn't disturb the others.</p> <p>Sorry, this is one of my longer questions... so many variables are left empty.</p> <p>Thanks, Chenz</p> http://stackoverflow.com/questions/1855553/network-graph-visualizer 1 Network graph visualizer Peter 2009-12-06T14:38:13Z 2009-12-06T14:46:01Z <p>I need to get a 2d picture of a network graph. I know the topology. Is there any tool which will help me do so?</p> http://stackoverflow.com/questions/1078413/nat-gre-ip-protocol-47-over-linux-router 0 NAT GRE (IP protocol 47) over Linux router andi 2009-07-03T08:41:17Z 2009-12-05T17:37:30Z <p>I have a host that has a permanent static GRE tunnel to a server on the Internet. Right now the host has its own real IP address. I want to put the host behind a Linux box (Smoothwall), and assign it a private IP address.</p> <p>Lets call:<br /> <code>tunnel-server-ip</code> = the IP of the end of the tunnel the host is connecting to (on the internet)<br /> <code>real-ip</code> = the real IP currently used by the host, that I want to assign to the Linux router<br /> <code>false-ip</code> = the IP the host will get after it is put behind the Linux firewall</p> <p>This is what I think I have to do for the tunnel to work: </p> <ol> <li>DNAT all incoming IP GRE packets on the external interface coming from the internet tunnel end, and send them to host. That is change the destination from <code>real-ip</code> to <code>false-ip</code> and send the packet to <code>false-ip</code></li> <li>SNAT all incoming IP GRE packets coming on the internal interface coming from the host to appear they are generated by the Linux box and send them to the tunnel server. That is change the source field from <code>false-ip</code> to <code>real-ip</code> and send the packet to <code>tunnel-server-ip</code></li> </ol> <p>I came up with the following script:</p> <pre><code>tunnel_server_ip=217.x.x.x false_ip=192.168.2.2 real_ip=82.x.x.x /sbin/iptables -A PREROUTING -p 47 --src $tunnel_server_ip -j DNAT --to-destination $false_ip /sbin/iptables -A POSTROUTING -p 47 --src $false_ip -j SNAT --to-source $real_ip /sbin/iptables -A INPUT -p 47 -j ACCEPT </code></pre> <p>Running this results in <code>No chain/target/match by that name</code>.<br /> Could you please tell me what I did wrong? Am I on the right track?</p> http://stackoverflow.com/questions/1852761/networking-over-the-3g-network-and-ftp-wcf 0 Networking over the 3G network and Ftp/WCF Vault 2009-12-05T17:08:58Z 2009-12-05T17:08:58Z <p>I need to upload images to a webserver and each image will have additional information that I'm thinking of encapsulating in an xml file.</p> <p>I am thinking of using FtpWebRequest and FtpWebResponse.</p> <p>Bue to bandwidth issues I will probably queue each image (with its associated xml file) and transfer them 1 at a time</p> <p>To get the best performance is it better that I create a .NET object with the image and additional information and use WCF or is FTP going to be the best to use over the G network?</p> http://stackoverflow.com/questions/1809054/virtual-network-connection 2 Virtual Network Connection Ehsan Baghaki 2009-11-27T14:21:46Z 2009-12-05T15:42:33Z <p>I can see that lot's of programs like openvpn and Teamviewer for their VPN Connection creat a virtual network connection on windows. I want to create one for myself for testing purposes.</p> <p>Is it possible to create one programmatically or so? </p> http://stackoverflow.com/questions/1845060/rails-and-beyond 1 Rails and beyond Rebecca Morgan 2009-12-04T05:36:25Z 2009-12-05T00:22:29Z <p>Hi everybody, </p> <p>I feel like I'm an intermediate-advanced Rails programmer. I've written some small client apps. However, I feel like I'm missing something. I don't really understand HTTP; what a web server is; how networking works; what Mongrel is beyond just "script/server". Are there any good books to explain what HTTP is and other stuff I'm missing out on?</p> <p>Thanks! - Rebecca </p> http://stackoverflow.com/questions/1849372/mud-programming-questions 2 MUD Programming questions Mike Trpcic 2009-12-04T20:12:02Z 2009-12-04T21:16:56Z <p>I used to play a MUD based on the <a href="http://www.smaug.org/" rel="nofollow">Smaug Codebase</a>. It was highly customized, but was the same at the core. I have the source code for this MUD, and am interested in writing my own (Just for a fun project). I've got some questions though, mostly about design aspects. Maybe someone can give me a hand?</p> <ol> <li>What language should I use? Interpreted or compiled? Does it make a difference? SMAUG is written in C. I am comfortable with a lot of languages, and have no problem learning more.</li> <li>Is there a particular approach I should follow to not hinder performance? Object Oriented, functional, etc?</li> <li>What medium should I use for storing data? Flat files (This is what SMAUG uses), or something like SQLite. What are the performance pros/cons of both?</li> <li>Are there any guides that anyone knows of on how to get started on a project like this?</li> </ol> <p>I want it to scale to allow 50 players online at a time with no decrease in performance. If I used Ruby 1.8 (very slow), would it make a difference compared to using Python 3.1 (Faster), or compiled C/C++?</p> <p>If anyone can lend a hand and give some info or advice, I'd be eternally grateful.</p> http://stackoverflow.com/questions/902744/svn-server-running-on-windows-vista-in-a-home-network-accessing-from-mac-os-x 0 SVN Server running on Windows Vista in a Home Network, Accessing from Mac OS X Frank 2009-05-24T00:00:17Z 2009-12-04T15:13:49Z <p>I have SVN running on my main windows development box on my home network. I access the server from various development laptops depending on what I'm doing. I also do this with a Mac OS X development laptop but I apparently have to use the IP Address of the SVN Server. </p> <p>This is causing problems because the IP address of the SVN server changes. On my windows machines, I can access SVN via the servers name. </p> <p>Is it possible for me to do something like this from my Mac? Or perhaps some configuration so I can "configure" my mac to to name an IP Address? (Perhaps the hosts file?)</p> <p>Thank you all!</p> <p>Regards,<br /> Frank</p> <p><strong>Update</strong>: I access my SVN repository on my Mac with <a href="http://zigversion.com/" rel="nofollow">ZigVersion</a>. I use a URL like the following: <a href="http://Frank@192.168.1.7/svn/RepositoryName/" rel="nofollow">http://Frank@192.168.1.7/svn/RepositoryName/</a></p> <p><strong>Update 2</strong>: While Chris gave a good answer (that I understand), I was hoping for something a little more elegant. If you think this is the best method, please chime in by voting. I'm looking for other ideas but also community opinion on how this might be accomplished. </p> <p>Also, If it'd be possible to Post this on <a href="http://serverfault.com/">ServerFault</a>, please let me know how.</p> http://stackoverflow.com/questions/1846638/c-chat-program-lidgren 0 C# Chat Program Lidgren Steven 2009-12-04T12:24:26Z 2009-12-04T13:30:48Z <p>Hello,</p> <p>I wrote the following program that is suppose to start up, show the form and connect to the server and get an messages. However when I start it nothing happens?</p> <pre><code>using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Windows.Forms; using Lidgren.Network; using System.Threading; namespace WindowsGame2 { public partial class Form1 : Form { private NetClient client; private NetBuffer buffer; public Form1() { InitializeComponent(); } private void Connect() { NetConfiguration config = new NetConfiguration("xesh"); NetClient client = new NetClient(config); client.Connect("75.127.105.216", 14242); NetBuffer buffer = client.CreateBuffer(); } private void ReceiveMessages() { Connect(); bool keepGoing = true; while (keepGoing) { NetMessageType type; while (client.ReadMessage(buffer, out type)) { switch (type) { case NetMessageType.DebugMessage: Console.WriteLine(buffer.ReadString()); break; case NetMessageType.StatusChanged: Console.WriteLine("New status: " + client.Status + " Reason: " + buffer.ReadString()); break; case NetMessageType.Data: break; } } } } private void Update(string str) { ReceiveMessages(); textBox1.AppendText(str + "\r\n"); } private void textBox1_TextChanged(object sender, EventArgs e) { } static void Main(string[] args) { Form1 form = new Form1(); } } } </code></pre> http://stackoverflow.com/questions/1846242/network-listener-in-java 0 Network listener in Java Nilesh 2009-12-04T10:58:38Z 2009-12-04T13:21:50Z <p>Hi all, I want to check when the internet goes off can i capture that event .I am not getting the proper API or any example which would explain the same .</p> <p>I am using socket for (TCP)communication and I open a socket when the network is available. I have observed that the socket does not give any exception in case the network goes off.</p> <p>If any one had done or any example links would be really helpful Thanks in advance</p> http://stackoverflow.com/questions/1846337/c-networking-and-function-ctor-signatures 0 C# Networking and function/ctor signatures Semei 2009-12-04T11:17:58Z 2009-12-04T11:34:59Z <p>Hi i was wondering what would be some of possible ways to get my program working like this:</p> <p>1) Server sends command (that is function name/ object creator + arguments) 2) Client decodes what command is this - using some hash table of function id's etc</p> <p>Problem is - if i know that the command is to create objectX and objectX constructor takes two arguments - for example int Z and float Y. </p> <p>Now i know i must create objectX, but how do know what arguments i must read in to construct it? Im looking for fast ways to do this, also so that garbage generation is kept very low. </p> <p>One way would be to just have one big case for each function or ctor, but im not big fan of "uber switch" approaches. </p> <p>Any ideas?</p> http://stackoverflow.com/questions/1846341/localhost-working-127-0-0-1-broken-in-safari 0 localhost working 127.0.0.1 broken in Safari codebox_rob 2009-12-04T11:18:11Z 2009-12-04T11:22:12Z <p>I'm running an http server on a non-standard port on a Mac Powerbook G4 running OSX 10.5.8 and attempting to open a page in Safari 4.0.4. When I use the IP address 127.0.0.1 in the url Safari shows an error:</p> <blockquote> <p>Safari can’t open the page “<a href="http://12.34.56.78/" rel="nofollow">http://12.34.56.78/</a>” because the server where this page is located isn’t responding</p> </blockquote> <p>where the IP address is the external IP of the machine, so somehow Safari translates 127.0.0.1 to my internet-facing IP. When I use the alias 'localhost' in the URL it works as expected and shows the page.</p> <p>The /etc/hosts file is as follows:</p> <pre><code>127.0.0.1 localhost 255.255.255.255 broadcasthost ::1 localhost </code></pre> <p>Any ideas what might be happening here?</p> http://stackoverflow.com/questions/1845098/the-difficulty-in-designing-a-fin-scanning-program 0 The difficulty in designing a FIN scanning program fwoncn 2009-12-04T05:46:49Z 2009-12-04T07:26:15Z <p>I want to implement a Linux C program to do the following task: it uses FIN scanning to scan all the open ports of a host.</p> <p>Here's a short description for the FIN scanning(skip if you already know it):<a href="http://en.wikipedia.org/wiki/Port%5Fscanner#FIN%5Fscanning" rel="nofollow">Wikipedia: FIN scanning</a></p> <p>In FIN scanning, an open port will not respond in any form, while closed port will send back a RST packet. And every computer has 65536 possible ports in total, you know. I've not found some source code which can give me some directions.</p> <p>And my idea, kind of low efficiency, is like this: the main program iteratively send FIN packet to each port and a thread is in charge of receiving the feedback (RST packet). This thread only works for a period of time, and after the timeout, it exit. After that, the main program will check and determine which ports have not been RST'd yet.</p> <p>I think a more serious problem of this scheme is it's not reliable enough because the timeout is hard to define. Does anyone can provide a better scheme, please?</p> http://stackoverflow.com/questions/1840156/standard-and-interesting-books-for-it-engineering 0 Standard and Interesting Books for IT & Engineering Voulnet 2009-12-03T14:22:58Z 2009-12-04T06:41:16Z <p>Hello all, I am a Computer Engineer, fresh off graduation, and I would like to educate myself on a broad range of technological fields and aspects. I am the kind of person who is easily distracted while reading from a screen, and so I would like to ask fellow daniweb members about the best books for computer related topics. I consider my level to be intermediate in some fields, and beginner in others. Some books are de facto standards in a certain technology field, others can be classified as Hidden Gems, while others are Interesting Reads (like GUI Bloopers). Therefore, I would love to hear what is everybody's book recommendation in the following fields:</p> <ul> <li>Programming (C++, C# and Java)</li> <li>Secure coding</li> <li>Networking</li> <li>Electronics (design and simulation)</li> <li>Security (attacks and countermeasures)</li> <li>Web development (especially Ruby and Perl)</li> <li>Unix systems</li> <li>Win32 development</li> <li>Databases</li> <li>Computer Architecture</li> <li>Infrastructure (Think national level)</li> <li>Computer industry business management</li> </ul> <p>These are my desired topics for the next 8 months or so, and I would like to immerse myself into said topics in different methods. Note that I'm not asking about what is everybody's top 10 books, rather I'm asking about each of the above categories. For example in <strong>Security</strong>, what do you think is the solid reference, which one do you think is the interesting, thought provoking read, and which one do you think is the Hidden Gem that is amazing but not well known?</p> <p>Thanks in advance! </p> http://stackoverflow.com/questions/1844048/simple-tcp-networking-with-c 1 Simple TCP networking with C# Nippysaurus 2009-12-04T00:20:04Z 2009-12-04T03:36:04Z <p>Is there a simple way to send objects between applications using C#? The objects will not always be the same, there would be (for example) a "Request" and "Response" class and each side of the connection would have a sort of switch statement which decides which object has been received.</p> <p>Is there a simple way to achieve something like this in C# without the need for 3'rd part libraries?</p> http://stackoverflow.com/questions/638012/managing-features-on-a-license-basis-for-a-c-app 6 managing features on a license basis for a C++ app Raul 2009-03-12T10:22:19Z 2009-12-04T02:38:58Z <p>Hi there,</p> <p>We are trying to offer a license mechanism for every feature our Linux application is running and we are thinking of controlling it in a centralized way using a license server:</p> <p>Our aim for licensing is:</p> <ol> <li>Deny features the operator has not bought.</li> <li>Offer trials (features which expire if they are not bought).</li> <li>Activate features for periods of time, and make them available just for some period of time.</li> </ol> <p>Does anyone know any server license which allow us to do this (basically, we would use sockets to communicate with our app) ? Any open source / pointer / suggestion just to start up with some ideas ? Thanks !</p> <p>Best regards, Raul</p> http://stackoverflow.com/questions/1843770/ssl-http-server-not-responding-issue 0 SSL / HTTP / Server Not Responding Issue Alex 2009-12-03T23:18:42Z 2009-12-03T23:18:42Z <p>I am trying to send commands to a SOAP service, and getting nothing in reply. The SOAP service is at a completely separate site from either server I am testing with.</p> <p>I have written a dummy script with the SOAP XML embedded. When I run it at my local site, on any of three machines -- OSX, Ubuntu, or CentOS 5.3 -- it completes successfully with a good response.</p> <p>I then sent the script to our public host at Slicehost, where I fail to get the response back from the SOAP service. It accepts the TCP socket and proceeds with the SSL handshake. I do not however receive any valid HTTP response.</p> <p>This is the case whether I use my script or curl on the command line. I have rewritten the script using SOAP4R, Net::HTTP and Curb. All of which work at my local site, none of which work at the Slicehost site.</p> <p>I have tried to assemble the CentOS box as closely to match my Slicehost server as possible. I rebuilt the Slice to be a stock CentOS 5.3 and stock CentOS 5.4 with the same results.</p> <p>When I look at a tcpdump of the bad sessions on Slicehost, I see my script or curl send the XML to the remote server, and nothing comes back. When I look at the tcpdump at my local site, I see the response just fine. I have entirely disabled iptables on the Slice.</p> <p>Does anyone have any ideas what could be causing these results? Please let me know what additional information I can furnish.</p> <p>Thank you!</p> http://stackoverflow.com/questions/171012/what-network-names-addresses-does-mac-os-x-server-support-out-of-the-box 1 What network names/addresses does Mac OS X server support out of the box? username 2008-10-04T21:18:15Z 2009-12-03T17:59:47Z <p>Does someone know all the correct names, syntax for ways to locate an OS X server (without adding non-Apple software)? From what I can tell, you have:</p> <p><hr /></p> <p>Network Interface address: 00:19:e3:aa:aa:aa</p> <p>IPv4 address: <em>11.22.33.44</em></p> <p>IPv6 address: 3ffe:3ffe:3ffe:3:200:f8ff:fe21:67cf</p> <p>Domain name: <em>myserver.fqdn</em>.com.</p> <p>AppleTalk Computer name: <em>My Server</em></p> <p>Multicast Domain name: <em>my-server</em>.local</p> <p>NetBIOS (Windows): <em>MYSERVER</em></p> <p><hr /></p> <p>Am I using the correct terms here? Are there others that might have a different syntax?</p> http://stackoverflow.com/questions/1837444/tcp-connection-seems-to-receive-incomplete-data 0 TCP Connection Seems to Receive Incomplete Data SooDesuNe 2009-12-03T03:28:56Z 2009-12-03T17:27:33Z <p>I've setup a simple TCP file transfer. Everything appears to work OK, except for the received file size is sporadically a smaller size than the file that was sent. There doesn't appear to be any pattern to the size of the received file.</p> <p>(in the code below, note that the typical client/server rolls are reversed) My client code is like:</p> <pre><code>#define kMaxBacklog (5) // fill out the sockadd_in for the server struct sockaddr_in servAdddress; //memcpy() to fill in the sockaddr //setup the socket int sockd, returnStatus; sockd = socket(AF_INET, SOCK_STREAM, 0); if (sockd == -1) NSLog(@"could not create client socket"); else NSLog(@"created client socket"); returnStatus = connect(sockd, (struct sockaddr*)&amp;servAdddress, sizeof(servAdddress)); if (returnStatus == -1) NSLog(@"could not connect to server - errno:%i", errno); else NSLog(@"connected to server"); NSData *dataWithHeader = [self getDataToSend]; returnStatus = send(sockd, [dataWithHeader bytes], [dataWithHeader length], 0); if (returnStatus == -1) NSLog(@"could not send file to server"); else if( returnStatus &lt; [dataWithHeader length]) NSLog(@"ONLY PARTIAL FILE SENT"); else NSLog(@"file sent of size: %i", returnStatus); shutdown(sockd, SHUT_WR); close(sockd); </code></pre> <p>The client method ALWAYS reports that it sent the entire file.</p> <p>For the server:</p> <pre><code>#define MAXBUF (10000) int _socket; _socket = socket(AF_INET, SOCK_STREAM, 0); // set up the socket struct sockaddr_in addr; bzero(&amp;addr, sizeof(addr)); addr.sin_len = sizeof(addr); addr.sin_family = AF_INET; addr.sin_addr.s_addr = INADDR_ANY; addr.sin_port = htons(0); int retval = bind(_socket, (struct sockaddr *)&amp;addr, sizeof(addr)); if (retval == -1) NSLog(@"server could not bind to socket"); else NSLog(@"server socket bound"); socklen_t len = sizeof(addr); retval = getsockname(_socket, (struct sockaddr *)&amp;addr, &amp;len); if (retval == -1) NSLog(@"server could not get sock name"); else NSLog(@"server socket name got"); int socket1, socket2, clientAddrLen, returnStatus; struct sockaddr_in servAdddress, clientAddress; clientAddrLen = sizeof(servAdddress); socket1 = _socket; returnStatus = listen(socket1, kMaxBacklog); if (returnStatus == -1) NSLog(@"server could not listen on socket"); else NSLog(@"server socket listening"); while(1){ FILE *fd; int i, readCounter; char file[MAXBUF]; NSLog(@"server blocking on accept()"); socket2 = accept(socket1, (struct sockaddr*)&amp;clientAddress, (socklen_t*)&amp;clientAddrLen); if (socket2 == -1) NSLog(@"server could not accpet the connection"); else NSLog(@"server connection accepted"); i = 0; readCounter = recv(socket2, file, MAXBUF, 0); if(!readCounter) NSLog(@"server connection cancelled, readCount = 0"); else if (readCounter == -1){ NSLog(@"server could not read filename from socket"); close(socket2); continue; } else NSLog(@"server reading file of size: %i", readCounter); fd = fopen([myfilePathObject cStringUsingEncoding:NSASCIIStringEncoding], "wb"); if(!fd){ NSLog(@"server could not open the file for creating"); close(socket2); continue; } else NSLog(@"server file open for creating"); returnStatus = fwrite([myData bytes], 1, [myData length], fd); if (returnStatus == -1) NSLog(@"Error writing data to server side file: %i", errno); else NSLog(@"file written to disk); readCounter = 0; //close (fd); returnStatus = fclose(fd); if(returnStatus) NSLog(@"server error closing file"); </code></pre> <p>So sporadically, the readCounter variable will not contain the same size as the file that was sent, but some times it does. </p> <p>If it matters the file transfer is occurring between an iPhone and an iPhone simulator, both over WIFI. This happens regardless of if the phone is the server or if the simulator is the server.</p> <p>If anyone can help me understand why this is occurring I'd appreciate it. I thought the whole purpose of TCP was to avoid this kind of problem.</p> <p><em>(to give credit where it's due, for my server and client code I borrowed heavily from the book: The Definitive Guide to Linux Network Programming, by Davis, Turner and Yocom from Apress)</em></p>