August 29, 2014, 13:54
As I needed a tool to test the maximum MTU size for a network, I needed a ping tool where I can define the packet size and the DF (Do Not Fragment-Flag). As I did not find such a tool, I wrote PingNG.
It is a simple tool but the code had to avoid some pitfalls.
Continue reading ‘Mobile Development: PingNG-the next generation ping’ »
Tags:
CodeProject,
Compact Framework,
CSharp,
DF,
do not fragment,
icmpreply,
MSS,
MTU,
ping,
Programming,
windows mobile Category:
CodeProject,
Programming,
Tools |
2 Comments
June 9, 2010, 19:00
For an actual project I needed a tftp server service for a Windows 2003 server. I looked around in internet and only found tftp servers running in user space, no real windows service. So I searched for source code applications I could use and found tftpUtil at sourceforge.net (http://sourceforge.net/projects/tftputil/). Although the short description states it would implement a service, it does not in reality. But the tftpUtil class was more or less easy to use and so I started to write a service ‘wrapper’ around it.
protected override void OnStart(string[] args)
{
AddLog("OnStart entered...");
StartTFTPServer();
...
}
Continue reading ‘Writing a tftp server windows service’ »