active questions tagged network - Stack Overflowmost recent 30 from stackoverflow.com2009-12-12T06:13:19Zhttp://stackoverflow.com/feeds/tag/networkhttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1892347/what-is-the-overhead-of-using-https-compared-to-http-1What is the overhead of using HTTPS compared to HTTP?KernelNewbie2009-12-12T04:57:19Z2009-12-12T05:25:07Z
<p>Hi,</p>
<p>I was reading this blog(<a href="http://googlepublicpolicy.blogspot.com/2009/06/https-security-for-web-applications.html" rel="nofollow">http://googlepublicpolicy.blogspot.com/2009/06/https-security-for-web-applications.html</a>) posted by google on not enabling HTTPS for gmail by default. One of the paragraph says as below.</p>
<p>Unless there are negative effects on the user experience or it's otherwise impractical, we intend to turn on HTTPS by default more broadly, hopefully for all Gmail users. We're also considering how to make this work best for other apps including Google Docs and Google Calendar (we offer free HTTPS for those apps as well).</p>
<p>I didn't understand what negative effects can there be, by shifting over to HTTPS. Is there a benchmarking done on the peformance of HTTP and HTTPS.</p>
<p>I feel that https actually involves some additional protocol messages initially and data encryption later on. Can't these issues be taken care by having SSL browser code to be loaded by default etc..</p>
<p>Thank you
Bala</p>
http://stackoverflow.com/questions/1892368/does-browsers-have-intrusion-detection-system-2Does browsers have intrusion detection system? [closed]KernelNewbie2009-12-12T05:04:44Z2009-12-12T05:06:42Z
<p>Hi,</p>
<p>I have read about intrusion detection systems and how they protect computers from various attacks. But now a days, I feel that lot of attacks happen from the browser like downloading malware etc..I want to know if there exists an intrusion detection system available for browser? If it exists, can someone point me to the website. </p>
<p>-- Bala</p>
http://stackoverflow.com/questions/1892360/botnet-communication-channels-3Botnet communication channels [closed]KernelNewbie2009-12-12T05:00:20Z2009-12-12T05:00:20Z
<p>Hi,</p>
<p>I am amazed at how botnets operate and want to know more about which communication channels are used to communicate with victim computers. Is there any good reading on this?</p>
<p>Thank you
Bala</p>
http://stackoverflow.com/questions/1890494/c-sending-udp-packet-to-server-and-getting-response0[C#] Sending UDP packet to server and getting responseZack2009-12-11T19:57:50Z2009-12-11T21:05:11Z
<p><strong>Possible duplicates:</strong> <a href="http://stackoverflow.com/questions/333629/udp-response">UDP Response</a> or <a href="http://stackoverflow.com/questions/1815030/receiving-a-response-through-udp">Receiving a response through UDP</a></p>
<p>I've been writing a udp server-client setup over the last month and have a working server. This server is meant to be a communications program to retrieve data about the computer it's hosted on that was requested by a remote client machine. The general idea is outlined below:</p>
<blockquote>
<p>Client -> <em>requests data</em> -> Server ->
<em>processes request</em> -> <em>sends response</em> -> Client</p>
</blockquote>
<p>And the client receives the data and does what it needs with that data.</p>
<p>I'm able to do everything in that outline, except where the client receives the packets and outputs them to my test console. If you want to see the UdpServer class, it's simple, however just comment and I'll post it up here in an edit.</p>
<p>Here's how I'm receiving data (testing application):</p>
<p>executes: "test.exe <array index>", e.g. "test.exe 4" -> executes against 204.229.219.35</p>
<pre><code>public class Program {
static void Main(String[] args) {
string pre = "204.229.219";
string[] servers = {
"31", "32", "33", "34", "35", "36",
"37", "38", "39", "40", "41", "42",
"88", "89"
};
if (args.Length < 1)
{
Environment.Exit(1);
}
int idx = Int32.Parse(args[0]);
Console.Title = "UDPSERVERTEST";
UdpClient c = new UdpClient();
Byte[] data = Encoding.ASCII.GetBytes("net user");
IPEndPoint ep = new IPEndPoint(Dns.GetHostEntry(String.Format("{0}.{1}", pre, servers[idx])).AddressList[0], 8915);
Console.WriteLine("\tQuerying: {0}", String.Format("{0}.{1}", pre, servers[idx]));
c.Send(data, data.Length, ep);
UdpState s = new UdpState();
s.endPoint = new IPEndPoint(IPAddress.Any, 0);
s.host = c;
s.encoding = Encoding.ASCII;
ReceiveCallback(s);
Console.ReadKey(true);
}
private static void ReceiveCallback(UdpState s)
{
byte[] data = s.host.Receive(ref s.endPoint);
Console.WriteLine("Data received from ({0}) -> {1}", s.endPoint.ToString(), s.encoding.GetString(data));
}
private static void callback(IAsyncResult ar)
{
UdpState s = (UdpState)ar.AsyncState;
UdpClient u = s.host;
IPEndPoint e = s.endPoint;
byte[] data = u.EndReceive(ar, ref e);
}
}
</code></pre>
<p>On either of my receiving methods, I get an error like the following:</p>
<blockquote>
<p>An existing connection was forcibly
closed by the remote host</p>
</blockquote>
<p>Thanks Stackoverflow!</p>
http://stackoverflow.com/questions/1889896/transfer-of-entire-contents-including-white-space-of-non-volatile-storage-on-swit0Transfer of entire contents including white space of non-volatile storage on switch to a server over sshmks2009-12-11T18:13:57Z2009-12-11T18:13:57Z
<p>This is a feature request for our networking switch where a customer wants complete binary dump of the entire contents (including white space) of all the non-volatile storage we have on our equipment (like compact flash/eeprom) to a server over a ssh v2 connection. What is the best way to do this ?</p>
http://stackoverflow.com/questions/1887623/how-can-i-get-the-cellular-connection-interface-name-on-the-iphone0How can I get the cellular connection interface name on the iPhone?Embedded2009-12-11T12:02:33Z2009-12-11T12:02:33Z
<p>I did not find any clues on how to get the cellular connection interface name.</p>
<p>BTW is the cellular connection interface static or it can change for example from en1 to en2?</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1882023/how-does-a-desktop-application-get-information-back-from-a-website3How does a desktop application get information back from a website?issy2009-12-10T16:04:39Z2009-12-10T19:19:06Z
<p>I'm a desktop application developer. I'm creating a basic website from which to sell an application I've written, and learning some web tech along the way, but haven't learnt that much yet (my chosen CMS - Textpattern - has saved me learning much PHP so far).</p>
<p>I want my desktop application to call my website and say "I'm version x.x.x.x", and I need it to get back a response - at a minimum "there is/isn't an update", preferably also "it's an xKB download and has these features..." - so that I can display the information to users and ask them if they want to download it.</p>
<p>I can send a request from my app (once I get my head round Qt's QtNetwork module). My question is, what do I need to learn in order to be able to create and send the appropriate response from the website.</p>
<p>I'm fine with learning any necessary new tech/languages, I just want to be sure I'm learning the right stuff and not going down the wrong road. Any help is much appreciated.</p>
http://stackoverflow.com/questions/1877950/multiprocess-and-multithreaded-design0Multiprocess and Multithreaded designxnulinu2009-12-10T00:43:49Z2009-12-10T01:16:55Z
<p>Parent process preforked a number of process and each preforked process created number of threads (thread pools). All the thread in the same address space can share the data and can use the different synchronization techniques for critical sections. I want to know how to synchronized between threads which are from different address space. My initial thought (I may be wrong) is to use shared memory and uses semaphore for synchronization. This design will increase two much use of semaphores/mutex.</p>
<p>Is there a better design to overcome the problem?. I know the apache 2.0 uses the hybrid mulitprocess and multithreaded server design. It will be helpful if i have some skeleton code idea for hybrid approach. I am more focusing on scalability and robustness. </p>
http://stackoverflow.com/questions/1874893/measuring-network-performance-tool-in-c1Measuring network performance tool in c#Sagi19812009-12-09T16:04:18Z2009-12-09T16:26:42Z
<p>Dear community.</p>
<p>I am about to develop a Network measurement tool. The objective is to make a tool, which can measure the responsetime in between a client and a server machine (from the client side). It is s side-application to a main application - If the main applicaiton experiences that the responsetime from the server is above a certain threshold, the tool will be kicked alive, and performs network connectivity tests, to determine of the client server connection is stable (it might be unstable, due to the network being wireless etc.)</p>
<p>The tests I need to perform are not just ping operations, but also transmitting packages of different size.</p>
<p>I have however very little experience in communications technology.</p>
<p>Is ICMP protocol the way to go? and if yes, is it possible to send packages of differnet sizes (to measure if the network is able to transfer eg. 2 MB of data in a reasonable time)?</p>
<p>I have a second concern. What should I look out for in regards to firewalls? It would be a shame to develop an application which works fine on my local network, but as soon as it is used out in the real life, it fails misserably because the tests are blocked by a firewall.</p>
<p>I hope my questions aren't too noobish, but know that any help is much appreciated.</p>
<p>All the best</p>
<p>/Sagi</p>
http://stackoverflow.com/questions/1871175/is-there-a-way-to-locate-a-tcp-server-running-under-local-network0Is there a way to locate a TCP Server running under local network?Y_Y2009-12-09T01:58:11Z2009-12-09T02:05:09Z
<p>Is there a way to locate a TCP Server running under local network using raw sockets and C#?</p>
<p>-The Client searching for the Server is running under the same local network as the Server and it knows the port the Server is running with.</p>
<p>-is it by Broadcast?</p>
http://stackoverflow.com/questions/11127/in-c-windows-how-do-i-get-the-network-name-of-the-computer-im-on2In C++/Windows how do I get the network name of the computer I'm on?MOE37x32008-08-14T14:37:27Z2009-12-08T23:13:33Z
<p>In a C++ Windows (XP and NT, if it makes a difference) application I'm working on, I need to get the network name associated with the computer the code is executing on, so that I can convert local filenames from C:\filename.ext to \\network_name\C$\filename.ext. How would I do this?</p>
<p>Alternatively, if there's a function that will just do the conversion I described, that would be even better. I looked into WNetGetUniversalName, but that doesn't seem to work with local (C drive) files.</p>
http://stackoverflow.com/questions/1867812/construct-network-topology0Construct Network TopologyPanther242009-12-08T15:46:57Z2009-12-08T17:37:30Z
<p>Hi All,</p>
<p>We are trying to develop a Topology Map of available devices in a network.</p>
<p>I have the details of the system, like IP, Device Name.</p>
<p>All I need to do is to populate them on the graph and show it graphically, the problem is that we need to do it in JSP.</p>
<p>Is there another way, like show using Flex, where I would pass IP/Device Name and just create the environment. BTW its not fixed on how many systems, so its gotta be dynamic.</p>
<p>Can someone help?</p>
http://stackoverflow.com/questions/1865802/how-to-change-domain-in-many-computer-more-than-200-computer0how to change domain in many computer more than 200 computer? [closed]monkey_boys2009-12-08T09:33:39Z2009-12-08T09:36:16Z
<p>change abc domain
to def domain</p>
<p>How to change them all and backup ??</p>
http://stackoverflow.com/questions/125306/how-can-i-upload-a-photo-to-a-server-with-the-iphone16How can I upload a photo to a server with the iPhone?Mr PhotoGuy2008-09-24T03:43:06Z2009-12-07T21:41:29Z
<p>I'm writing an iPhone app that takes a photo and then uploads it to a server. How do I upload a photo to a server with Cocoa in Xcode? I suppose I use NSUrl somewhere.</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/1859799/determine-if-internet-connection-is-available3Determine if internet connection is availableKay2009-12-07T12:54:27Z2009-12-07T15:07:31Z
<p>Hi,
I know that I am not the first to ask the question: How do I find out if my application is online or not?
I found this post: <a href="http://stackoverflow.com/questions/507855/whats-the-easiest-way-to-verify-theres-an-available-network-connection">StackOverflow</a>.
I want to do it with C# and .NET 3.5.</p>
<p>The recommendation is to ping the resource regularly. I am not very happy with that advice. I would rather detect a network change and THEN ping my service to check if it is online. </p>
<p>.NET provides two events for this purpose:
NetworkChange.NetworkAvailabilityChanged
NetworkChange.NetworkAddressChanged</p>
<p>The first event sounds good but it is fired only if the last network card which is online goes offline. I have several virtual network cards which have been installed by VMWare and those are always online.
The second event works but between plugging the network cable and the event, there are often 5 seconds wait time.
The Windows tray icon reacts more or less immediately when I am unplugging the cable.
What is the best way to be as fast as this tray icon?</p>
<p>My workaround would be to poll
NetworkInterface.GetAllNetworkInterfaces()
every 500ms and to throw my own event in case that the status of a network adapter changed.</p>
<p>There must be a better solution :)</p>
http://stackoverflow.com/questions/1855628/network-protocol-object-serialization-in-c0Network protocol object serialization in C++gotch42009-12-06T15:05:56Z2009-12-06T15:15:00Z
<p>Hello,
I'm writing some C++ code that will have to send data over TCP/IP. I want this code to be portable on Linux/Windows/Osx. Now, as it is the first time I write portable network code, I basically need some simple functions to add to certain objects like:</p>
<pre><code>class myclass{
...member...
public:
string serialize(){
std::ostringstream out();
out << member1;
out << member2;
out << member3;
return out.str();
}
}
</code></pre>
<p>... which is all I need for now. Anyway I started reading ostringstream related docs and turns out the binary/text problem. In fact it will convert line breaks to the right sequence of everysystem. Suppose for example that a member is a pointer to const char* foo = "Hello\nMan\n", that will be translated in certain byte sequence on linux, another on windows... and so on. My bytes will go on a packet over the internet, a different OS machine will read them and I think trouble will occurr... Now I read that I might initialize <code>ostringstream</code> with <code>ostringstream(ios::bin)</code>... Will it solve the problem (provided that I will use a de-serialization function that will use a <code>istringstream(ios::bin)</code>??? I'm confused about the whole picture, if you may spend a few clarifying lines that'll be much appreciated. </p>
<p>Thanks. </p>
http://stackoverflow.com/questions/1402005/how-to-check-if-internet-connection-is-present-in-java3How to check if internet connection is present in java?Chris2009-09-09T20:49:01Z2009-12-05T22:54:19Z
<p>How do you check if you can connect to the internet via java? One way would be:</p>
<pre><code>final URL url = new URL("http://www.google.com");
final URLConnection conn = url.openConnection();
... if we got here, we should have net ...
</code></pre>
<p>But is there something more appropriate to perform that task, <strong>especially</strong> if you need to do <strong>consecutive checks</strong> very often and a loss of internet connection is highly probable?</p>
http://stackoverflow.com/questions/942824/how-to-investigate-ports-opened-by-a-certain-process-in-linux0how to investigate ports opened by a certain process in linux?Shore2009-06-03T02:36:04Z2009-12-05T17:26:02Z
<p>Suppose the PID of the process is already known</p>
http://stackoverflow.com/questions/1809054/virtual-network-connection2Virtual Network ConnectionEBAGHAKI2009-11-27T14:21:46Z2009-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/1850145/capturing-raw-native-802-11-packets-using-ndis-6-0-windows-vista0Capturing raw Native 802.11 packets using NDIS 6.0, Windows VistaGPB2009-12-04T22:44:01Z2009-12-04T22:44:01Z
<p>I'm trying to write code that can capture raw native 802.11 packets to essentially write a packet sniffer. I'm using Vista with 802.11 device which uses an NDIS 6.0 native 802.11 driver.</p>
<p>Perhaps I am going about this the wrong way (and please let me know if there are better alternatives!) I'm trying to do this all through the Windows SDK or Windows DDK for Vista and higher.</p>
<p>Doing some googling and reading the documentation, it seems like the best way to do this is run a monitoring light weight filter using the Windows DDK. I modified the ndislwf sample to be a monitoring filter driver and attach to "wlan" media types. I seem to be able to put the device into monitor mode and extensible station mode via OID_DOT11_CURRENT_OPERATION_MODE. I can also confirm that ndislwf is attaching successfully to the NdisMediumNtive802_11 type.</p>
<p>The problem is my calls to set OID_GEN_CURRENT_PACKET_FILTER with { NDIS_PACKET_TYPE_PROMISCUOUS |NDIS_PACKET_TYPE_802_11_RAW_DATA |NDIS_PACKET_TYPE_802_11_PROMISCUOUS_MGMT |NDIS_PACKET_TYPE_802_11_RAW_MGMT |NDIS_PACKET_TYPE_802_11_PROMISCUOUS_CTRL }</p>
<p>(as described here: <a href="http://msdn.microsoft.com/en-us/library/bb648512.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/bb648512.aspx</a>) Seem to never take effect even though they return successfully from NdisFOidRequest. According to the documentation the DOT11_EXTSTA_RECV_CONTEXT associated with the NET_BUFFER_LIST passed to FilterReceiveNetBufferLists should indicate DOT11_RECV_FLAG_RAW_PACKET but this flag is never set.</p>
<p>Am I doing something wrong here? How can I capture the raw packets?</p>
http://stackoverflow.com/questions/838317/how-to-tie-a-network-connection-to-a-pid-without-using-lsof-or-netstat3How to tie a network connection to a PID without using lsof or netstat?jac_no_k2009-05-08T05:08:28Z2009-12-04T15:02:57Z
<p>Is there a way to tie a network connection to a PID (process ID) without forking to lsof or netstat?</p>
<p>Currently lsof is being used to poll what connections belong which process ID. However lsof or netstat can be quite expensive on a busy host and would like to avoid having to fork to these tools.</p>
<p>Is there someplace similar to /proc/$pid where one can look to find this information? I know what the network connections are by examining /proc/net but can't figure out how to tie this back to a pid. Over in /proc/$pid, there doesn't seem to be any network information.</p>
<p>The target hosts are Linux 2.4 and Solaris 8 to 10. If possible, a solution in Perl, but am willing to do C/C++.</p>
<p><strong>additional notes:</strong></p>
<p>I would like to emphasize the goal here is to tie a network connection to a PID. Getting one or the other is trivial, but putting the two together in a low cost manner appears to be difficult. Thanks for the answers to so far!</p>
http://stackoverflow.com/questions/1847343/any-idea-how-do-we-copy-a-browser-uploaded-file-to-its-network-machine-of-client0any idea how do we copy a browser uploaded file to its network machine of client ANIL MANE2009-12-04T14:38:22Z2009-12-04T14:38:22Z
<p>Hello experts,</p>
<p>I am not sure whether its possible with just a browser. </p>
<p>User will have its own local network where he should be able to upload the files through the browser via some site(sitename.com) in his local network's server and not on the hosted application server.</p>
<p>Any suggestions like a plugin or activex but needs to be browser independent ?</p>
<p>Thanks in advance.</p>
http://stackoverflow.com/questions/1830220/c-network-vs-server0C# - Network vs. ServerAJ Ravindiran2009-12-02T02:04:09Z2009-12-03T14:07:14Z
<p>Hello,</p>
<p>I have been working on an emulator, and it sends a few packets separately, but the client receiving the packets is able to handle multiple packets incoming from a single receive.</p>
<p>Here's my method:</p>
<pre><code> /// <summary>
/// Sends a few packets at login to prepare the character for gameplay.
/// </summary>
/// <param name="character">The character to produce frame for.</param>
public void SendLoginWelcome(Character character)
{
character.Session.SendData(new NewMapRegionPacketComposer(character).Serialize());
WelcomeScreen.Show(character);
SendCloseInventoryInterface(character);
SendTab(character, 6, 745);
SendTab(character, 7, 754);
SendTab(character, 11, 751); // Chat options
SendTab(character, 68, 752); // Chatbox
SendTab(character, 64, 748); // HP bar
SendTab(character, 65, 749); // Prayer bar
SendTab(character, 66, 750); // Energy bar
SendTab(character, 67, 747);
character.Session.SendData(new ConfigPacketComposer(character, 1160, -1).Serialize());
SendTab(character, 8, 137); // Playername on chat
SendTab(character, 73, 92); // Attack tab
SendTab(character, 74, 320); // Skill tab
SendTab(character, 75, 274); // Quest tab
SendTab(character, 76, 149); // Inventory tab
SendTab(character, 77, 387); // Equipment tab
SendTab(character, 78, 271); // Prayer tab
SendTab(character, 79, 192); // Magic tab
SendTab(character, 81, 550); // Friend tab
SendTab(character, 82, 551); // Ignore tab
SendTab(character, 83, 589); // Clan tab
SendTab(character, 84, 261); // Setting tab
SendTab(character, 85, 464); // Emote tab
SendTab(character, 86, 187); // Music tab
SendTab(character, 87, 182); // Logout tab
}
</code></pre>
<p>CloseInventory & SendTab methods:</p>
<pre><code> /// <summary>
/// Closes the inventory interface.
/// </summary>
/// <param name="character">The character to produce frame for.</param>
public void SendCloseInventoryInterface(Character character)
{
character.Session.SendData(new InterfaceConfigPacketComposer(character,
(short)(character.Hd ? 746 : 548), 71, true).Serialize());
}
/// <summary>
/// Sends a tab interface.
/// </summary>
/// <param name="character">The character to produce frame for.</param>
/// <param name="tabId">The id of the tab.</param>
/// <param name="childId">The child if of the tab.</param>
public void SendTab(Character character, short tabId, short childId)
{
character.Session.SendData(new InterfacePacketComposer(character, 1,
(short)(childId == 137 ? 752 : (character.Hd ? 746 : 548)),
tabId, childId).Serialize());
}
</code></pre>
<p>The <code>Serialize()</code> method basically joins the header and the payload togeather.
The <code>SendData()</code> method just sends a byte array via the socket (asynchronously).</p>
<p>As you can see, im sending multiple packets basically at the same time, but in different arrays. My question is what would be more efficient for the server's stability and performance, sending that method within an array (i have to join each of those arrays into one, then send via network) or send it raw after it's been composed.</p>
<p>Joining arrays may cause some performance issues, since this is a multi-player server, the more players the server has, the more the server load is. Would sending it separately vs. sending it merged make a difference? Please ask if you need any more of my code.</p>
<p>Thanks in advanced,
AJ Ravindiran.</p>
http://stackoverflow.com/questions/1838096/testing-equipment-for-voip-iptv-and-ip-data-analysis0Testing Equipment for VOIP,IPTV and IP data analysisSurjya Narayana Padhi2009-12-03T06:38:00Z2009-12-03T06:38:00Z
<p>Hi Geeks,</p>
<p>I am planning to make an handheld device which can be used for VOIP,IPTV and IP data analysis.
I am providing the features I need to test with that handheld device.</p>
<blockquote>
<p>IPTV - A media player to play IP
video, the equipment should emulate
the STB, channel zapping,IGMP,jitter,
packet loss</p>
<p>VOIP - A voip caller application which
can do voip call monitoring and
analysis</p>
<p>DATA - HTTP speed test and FTP speed
test , traceroute, ping etc</p>
</blockquote>
<p>Can anybody please suggest the appropriate processor and platform I should go for ? I am planning to put a 7" touchscreen panel on the device....</p>
http://stackoverflow.com/questions/1257785/how-available-stable-reliable-is-the-exclusive-bis-b-connection-method-on-black0How available, stable, reliable is the exclusive BIS-B connection method on Blackberry?JR Lawhorne2009-08-10T23:25:57Z2009-12-03T06:00:03Z
<p>If you sign up for the RIM developer alliance program, you have the special BIS-B connection type available to your Blackberry applications.</p>
<p>Is this connection type more available, stable, and reliable than the other methods? We're connecting to web APIs, if that makes any difference.</p>
<p>Getting the other methods (Direct TCP through APN gateways, WAP, WAP2, Unite) to work properly in all cases is a bear so I'm hoping BIS-B is a good way to solve this issue for our app and help some customers that have a financial incentive not to connect through WAP connections.</p>
http://stackoverflow.com/questions/1835897/protect-from-and-simulate-a-data-center-outage0protect from and simulate a data center outagepablo2009-12-02T21:18:13Z2009-12-02T21:27:12Z
<p>Recently the data center I'm using experienced an outage.
During the outage customers using my service reported that their websites were very slow.
The customers integrate my service in two places:
1. A script tag in web pages that pointing to my server.
2. making API calls against my server with php:
fputs($fp, "POST $path HTTP/1.1\r\n");
...
stream_set_timeout($fp, 10);
$result = fread($fp, 2000);
...</p>
<p>How can I protect websites from being affected when the data-center or my server are down?
How can I simulate a data center outage so I can add a solution?</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1834762/searching-a-network-drive-php0Searching a Network Drive (PHP)Jason2009-12-02T18:10:02Z2009-12-02T18:10:02Z
<p>Hey I have a program that will allow me to find and display specific file types, but it won't work for files located in a network drive.</p>
<p>How do I get around this problem? here's the code:</p>
<pre><code> <?php
clearstatcache();
$sourcepath = "C:/Inetpub/wwwroot/IMS/n_test";
// Replace \ by / and remove the final / if any
$root = ereg_replace( "/$", "", ereg_replace( "[\\]", "/", $sourcepath ));
// Search for required Image Files
$results = m_find_in_dir( $root,".*\.shp" );
if( false === $results ) {
echo "'{$sourcepath}' is not a valid directory\n";
} else {
print_r( $results );
}
$results = m_find_in_dir( $root,".*\.jpg" );
if( false === $results ) {
echo "'{$sourcepath}' is not a valid directory\n";
} else {
print_r( $results );
}
$results = m_find_in_dir( $root,".*\.jpeg" );
if( false === $results ) {
echo "'{$sourcepath}' is not a valid directory\n";
} else {
$new_results = str_replace("jpeg", "jpg" ,$results);//converts jpeg->jpg
print_r( $new_results );
}
$results = m_find_in_dir( $root,".*\.tif" );
if( false === $results ) {
echo "'{$sourcepath}' is not a valid directory\n";
} else {
print_r( $results );
}
$results = m_find_in_dir( $root,".*\.tiff" );
if( false === $results ) {
echo "'{$sourcepath}' is not a valid directory\n";
} else {
$new_results = str_replace("tiff", "tif" ,$results);//converts tiff->tiff
print_r( $new_results );
}
$results = m_find_in_dir( $root,".*\.bmp" );
if( false === $results ) {
echo "'{$sourcepath}' is not a valid directory\n";
} else {
print_r( $results );
}
$results = m_find_in_dir( $root,".*\.png" );
if( false === $results ) {
echo "'{$sourcepath}' is not a valid directory\n";
} else {
print_r( $results );
}
$results = m_find_in_dir( $root,".*\.gif" );
if( false === $results ) {
echo "'{$sourcepath}' is not a valid directory\n";
} else {
print_r( $results );
}
//arrange data
function m_find_in_dir( $root, $pattern, $recursive = true, $case_sensitive = false ) {
$result = array("<table border='0'>\n<tr><td>Image Type:</td></tr>\n</table>");
if( $case_sensitive ) {
if( false === m_find_in_dir__( $root, $pattern, $recursive, $result )) {
return false;
}
} else {
if( false === m_find_in_dir_i__( $root, $pattern, $recursive, $result )) {
return false;
}
}
return $result;
}
//core functions:
function m_find_in_dir__( $root, $pattern, $recursive, &$result ) {
$dh = @opendir( $root );
if( false === $dh ) {
return false;
}
while( $file = readdir( $dh )) {
if( "." == $file || ".." == $file ){
continue;
}
if( false !== @ereg( $pattern, "{$root}/{$file}" )) {
$result[] = "{$root}/{$file} <br/>";
}
if( false !== $recursive && is_dir( "{$root}/{$file}" )) {
m_find_in_dir__( "{$root}/{$file}", $pattern, $recursive, $result );
}
}
closedir( $dh );
return true;
}
function m_find_in_dir_i__( $root, $pattern, $recursive, &$result ) {
$dh = @opendir( $root );
if( false === $dh ) {
return false;
}
while( $file = readdir( $dh )) {
if( "." == $file || ".." == $file ){
continue;
}
if( false !== @eregi( $pattern, "{$root}/{$file}" )) {
$result[] = "{$root}/{$file} <br/>";
}
if( false !== $recursive && is_dir( "{$root}/{$file}" )) {
m_find_in_dir__( "{$root}/{$file}", $pattern, $recursive, $result );
}
}
closedir( $dh );
return true;
}
?>
</code></pre>
http://stackoverflow.com/questions/1832087/is-network-up-c-fedora-unix0Is Network Up? C++ Fedora/UnixShahmir Javaid2009-12-02T10:39:54Z2009-12-02T11:03:50Z
<p>Does any one have a snippet of their code that, checks if the network is enabled on a machine and has an active IP Address.</p>
<p>I have a networking software that connects to other client machines, Although it works when the machine is connected but if i unplug the cable or disable the network, It throws a whole reem of exceptions. </p>
<p>It would be nice to just put a check on top :D</p>
<p>Thanks in Advance</p>
http://stackoverflow.com/questions/1820871/homework-generating-graphs1Homework: Generating GraphsChaitanya2009-11-30T16:31:39Z2009-12-02T06:56:33Z
<p>I need to simulate a discrete event simulator and for that I need to generate a network consisting of 30 nodes and then check if the generated graph is directed or not. Can anyone guide me on how to start with this. I should not be using the boost library to do this. Yes this is an assignment, I need an advice to start with. I just need few pointers to go ahead.</p>
<pre><code>#define MAXNODES 30
struct {
int p;
int *incoming;
int *outgoing;
} NODE[MAXNODES]
//The struct defines each node and the neighbors to it.
</code></pre>
<p>Is the above struct definition correct?</p>
http://stackoverflow.com/questions/61524/testing-network-interrupts-in-software9Testing network interrupts in softwareBrian R. Bondy2008-09-14T18:09:36Z2009-12-01T21:25:03Z
<p>I have a network C++ program in Windows that I'd like to test for network disconnects at various times. What are my options?</p>
<p>Currently I am:</p>
<ol>
<li>Actually disconnecting the network wire from the back of my computer</li>
<li>using ipconfig /release</li>
<li>Using the <a href="http://www.nirsoft.net/utils/cports.html" rel="nofollow">cports</a> program to close out the socket completely</li>
</ol>
<p>None of these methods though are ideal for me, and I'd like to emulate network problems more easily. </p>
<p>I would like for sometimes connects to fail, sometimes socket reads to fail, and sometimes socket writes to fail. It would be great if there was some utility I could use to emulate these types of problems.</p>
<p>It would also be nice to be able to build some automated unit tests while this emulated bad network is up.</p>