ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/i-scream/projects/cms/source/host/c++/socket++-1.10/test/tpopen-ftp.C
Revision: 1.1
Committed: Mon Feb 26 15:02:39 2001 UTC (24 years, 10 months ago) by ab11
Content type: text/plain
Branch: MAIN
CVS Tags: PROJECT_COMPLETION
Log Message:
Test programs for Networking class. Unused by the host

File Contents

# Content
1 #include <pipestream.h>
2
3 int main()
4 {
5 char buf[128];
6 iopipestream p("ftp");
7 p->unbuffered();
8 p << "help\r\n" << flush;
9 while ( p.getline(buf, 127) ) cout << buf << endl;
10 return 0;
11 }