README.TXT
上传用户:zhuguiling
上传日期:2007-01-07
资源大小:9k
文件大小:1k
源码类别:

网络编程

开发平台:

Visual C++

  1.     This module illustrates the Win32 Winsock and Mailslot APIs to do a generic
  2. broadcast over IPX, UDP and Mailslot protocols.
  3.     This example implements a client and a server. The example has a number
  4. command line options. For example,
  5.     -s To run the example as a server(default role).
  6.     -c To run the example as a client.
  7.    
  8. -p <i or m or u> To specify the protocol to be used.
  9.  i - IPX.
  10.  m - Mailslots.
  11.  u - UDP(default protocol).
  12.     -e <Endpoint> To specify an end point of your choice. This is a mandatory
  13. parameter. Servers create this endpoint and read broadcast messages. An 
  14. endpoint in case Mailslot protocol is a Mailslot name.(default is 5005). 
  15.     -d <DomainName> - To specify a domain name or a workgroup name. This is 
  16. useful for Mailslot clients, only.
  17. To run the application as a server, the following command lines can be 
  18. specified:
  19.     
  20. bcast -s -e 8000 -p u
  21. bcast -s -e 8000 -p i
  22. bcast -s -e MAILSLOT1 -p m
  23. To run the application as a client, the following command lines can be
  24. specified:
  25. bcast -c -e 8000 -p u
  26. bcast -c -e 8000 -p i
  27. bcast -c -e MAILSLOT1 -p m -d DOMAIN1
  28. bcast -c -e MAILSLOT1 -p m -d WORKGROUP1