Code/Resource
Windows Develop
Linux-Unix program
Internet-Socket-Network
Web Server
Browser Client
Ftp Server
Ftp Client
Browser Plugins
Proxy Server
Email Server
Email Client
WEB Mail
Firewall-Security
Telnet Server
Telnet Client
ICQ-IM-Chat
Search Engine
Sniffer Package capture
Remote Control
xml-soap-webservice
P2P
WEB(ASP,PHP,...)
TCP/IP Stack
SNMP
Grid Computing
SilverLight
DNS
Cluster Service
Network Security
Communication-Mobile
Game Program
Editor
Multimedia program
Graph program
Compiler program
Compress-Decompress algrithms
Crypt_Decrypt algrithms
Mathimatics-Numerical algorithms
MultiLanguage
Disk/Storage
Java Develop
assembly language
Applications
Other systems
Database system
Embeded-SCM Develop
FlashMX/Flex
source in ebook
Delphi VCL
OS Develop
MiddleWare
MPI
MacOS develop
LabView
ELanguage
Software/Tools
E-Books
Artical/Document
mrtgmk.c
Package: mrtg-2.13.2.zip [view]
Upload User: shbosideng
Upload Date: 2013-05-04
Package Size: 1555k
Code Size: 1k
Category:
SNMP
Development Platform:
C/C++
- /*
- Iulian Radu [v2.0@07.1999]
- */
- #include <stdio.h>
- #include <stdlib.h>
- #include <string.h>
- #include <ctype.h>
- #include <sys/stat.h>
- #include <unistd.h>
- #include "txte.h" //for english messages
- //#include "txtro.h" //pentru mesaje in romaneste
- #include "parse.c"
- void intro(char* aname){
- printf("n%s (mrtgmk) %s Iulian Radu [v2.2@1.2000]nn",extractfname(aname),etxt[0]);
- }
- void help(char* aname){
- printf("%s <cfg.fname>n",aname);
- printf(" <cfg.fname> = %sn",etxt[3]);
- printf(" <> = %sn",etxt[1]);
- printf(" [] = %sn",etxt[2]);
- printf("n");
- exit(1);
- }
- int main(int argc,char** argv){
- intro(argv[0]);
- if(argc!=2) help(argv[0]);
- parse(argv[1]);
- return 0;
- }