APLDN Forum Index APLDN
APL2000 Developer Network Forum
 
 FAQFAQ   SearchSearch   MemberlistMemberlist   UsergroupsUsergroups   RegisterRegister 
 ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 

Simple demonstration of using UDP to send broadcast packets

 
Post new topic   Reply to topic    APLDN Forum Index -> APL+Win User Contributed Files
View previous topic :: View next topic  
Author Message
phpbb_admin
Site Admin


Joined: 07 Feb 2007
Posts: 82

PostPosted: Sun Feb 11, 2007 20:24 UTC    Post subject: Simple demonstration of using UDP to send broadcast packets Reply with quote

Posted by brent.hildebrand on Wednesday, November 29, 2006 (EST)

Simple demonstration of using UDP to send broadcast packets. Using a UDP socket, you can send "broadcast" packets so that multiple computers can receive the packet of information in the broadcast. I've used this technique to autoconfigure several computers on a network. The broadcast packet allows the a program running on each computer to find each others IP address, and then use TCP to connect and sync data.

The main function is called "Broadcast". Enter the following to create a socket:

Broadcast ''

To send a broadcast packet, enter:

Broadcast 'Send' 'This is my broadcast text'

Broadcast uses

'SetSockOpt' 'sol_socket' 'so_broadcast' 1
'SetSockOpt' 'sol_socket' 'so_reuseaddr' 1

This allows the socket to be a broadcast socket, and the so_reuseaddr flag allows for testing on a single computer using multiple copies of APL running and reusing the same IP address for each instance.
Back to top
View user's profile Send private message
Display posts from previous:   
Post new topic   Reply to topic    APLDN Forum Index -> APL+Win User Contributed Files All times are GMT
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum
You cannot attach files in this forum
You cannot download files in this forum


Powered by phpBB © 2001, 2005 phpBB Group