Sponsored Content
Top Forums Programming socket programming (UDP with multiple clients) Post 302248846 by shashi on Monday 20th of October 2008 12:52:08 AM
Old 10-20-2008
I have designed my client in such a way that it picks a file present in specified directory and keeps sending that data till end of file and then picks up next file and sends data ,it continues.

I have 5 such clients which keeps sending data to 5 different port numbers.

server has to be designed such it should keep recieving data from corresponding client.

Planing to use fork() and recieve data from all the clients and keep storing
 

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Socket programming in bash (using /dev/udp)

Hi, I am trying to write 2 simple scripts. One to echo a message into a socket, and the other to read from it. There are many tutorials about, but they're mostly about retrieving web pages through a socket. The code I'm trying is echo qwerty > /dev/udp/localhost/22 (the first port I found that... (2 Replies)
Discussion started by: zeppelin147
2 Replies

2. Programming

UDP socket - can both client and server recv and send

Hi, Am very new to socket programming. When we use UDP sockets to communicate between two processess, will both the client/server socket be able to send/recv ? meaning can sendto()/ recvfrom() be used on both server and client? It could be useful even if anybody provide some link on socket... (1 Reply)
Discussion started by: rvan
1 Replies

3. UNIX for Dummies Questions & Answers

udp socket programming

Hi...Please can someone send me implementation chat application using UDP(socket programming in C). Please send me as soon as possible. Thanks in advance. (2 Replies)
Discussion started by: unsweety
2 Replies

4. UNIX for Dummies Questions & Answers

socket programming using udp for chat application

hi, i have a source code for 1 server and 2 clients ...but the clients are not able to send data..1 server only receives data from clients and forwards to any other client, the data is in the buffer.....please help... thank you in advance..... /**********client1***************/ // Here Data... (1 Reply)
Discussion started by: unsweety
1 Replies

5. IP Networking

UDP server socket inaddr_any - How to get the real IP

Hello ! I seem to have the same problem as in https://www.unix.com/ip-networking/91203-inaddr_any-opposite.html#post302262417 But I can't find a solution. I have a UDP server socket bound to 0.0.0.0. The server hosts the addresses IP1, IP2 and IP3. I get an incoming request to IP1. I use... (1 Reply)
Discussion started by: steinwej
1 Replies

6. Programming

reliable udp and socket programming

could somebody give me hand programming the attached request. my code isn't complete and i do not really understand how should i implement that. (1 Reply)
Discussion started by: makaveli_
1 Replies

7. Programming

help me about sending file through socket udp with c in linux

hi, i am newbie of socket. i want to ask some question. if i want to send file from client to server, how do i do? and if i want to send file from server to client, how do i do? any pro help me and if possible, you can post code for an example i need it very much thank you for helping me:)... (1 Reply)
Discussion started by: tung1984
1 Replies

8. Programming

socket programming using UDP connection

I want to send packets through single socket() but using two different port numbers in UDP. Anybody give some idea on this. Thanks in advance.:) (2 Replies)
Discussion started by: naresh046
2 Replies

9. UNIX for Advanced & Expert Users

UDP Socket File Sharing

Hai, I am having one server/client both running in different host in UDP. How can i assure whether the data is recieved properly in client side. I am writing 250 KB in Server and client reading only 150 KB data. I am using select write in server and select read in client also.If i am putting one... (1 Reply)
Discussion started by: andrew.paul
1 Replies

10. Programming

Clients - Server ( UDP )

Hello, I have a question: I want to create a n client to one server connection. This is the client-server algorithm. Enybody help to make the changes? (0 Replies)
Discussion started by: MaHmur
0 Replies
udp(n)                                                           Tcl UDP extension                                                          udp(n)

__________________________________________________________________________________________________________________________________________________

NAME
udp - Create UDP sockets in Tcl SYNOPSIS
package require Tcl 8.2 package require udp 1.0 udp_open ?port? udp_conf sock host port udp_conf sock ?-myport? ?-remote? ?-peer? ?-broadcast bool? ?-ttl count? udp_conf ?-mcastadd groupaddr? udp_conf ?-mcastdrop groupaddr? udp_peek sock ?buffersize? _________________________________________________________________ DESCRIPTION
This package provides support for using UDP through Tcl. The package provides a new channel type and attempts to permit the use of packet oriented UDP over stream oriented Tcl channels. The package defined three commands but udp_conf should be considered depreciated in favour of the standard Tcl command fconfigure. COMMANDS
udp_open ?port? udp_open will open a UDP socket. If port is specified the UDP socket will be opened on that port. Otherwise the system will choose a port and the user can use the udp_conf command to obtain the port number if required. udp_conf sock host port udp_conf in this configuration is used to specify the remote destination for packets written to this sock. You must call this com- mand before writing data to the UDP socket. udp_conf sock ?-myport? ?-remote? ?-peer? ?-broadcast bool? ?-ttl count? In addition to being used to configure the remote host, the udp_conf command is used to obtain information about the UDP socket. -myport Returns the local port number of the socket. -remote Returns the remote hostname and port number as set using udp_conf sock host port. -peer Returns the remote hostname and port number for the packet most recently received by this socket. -broadcast ?boolean? UDP packets can listen and send on the broadcast address. For some systems a flag must be set on the socket to use broadcast. With no argument this option will return the broadcast setting. With a boolean argument the setting can be modified. -ttl ?count? The time-to-live is given as the number of router hops the packet may do. For multicast packets this is important in specify- ing the distribution of the packet. The system default for multicast is 1 which restricts the packet to the local subnet. To permit packets to pass routers, you must increase the ttl. A value of 31 should keep it within a site, while 255 is global. udp_conf ?-mcastadd groupaddr? udp_conf ?-mcastdrop groupaddr? tcludp sockets can support IPv4 multicast operations. To recieve multicast packets the application has to notify the operating sys- tem that it should join a particular multicast group. These are specified as addresses in the range 224.0.0.0 to 239.255.255.255. udp_peek sock ?buffersize? Examine a packet without removing it from the buffer. This function is not available on windows. EXAMPLES
# Send data to a remote UDP socket proc udp_puts {host port} { set s [udp_open] fconfigure $s -remote [list $host $port] puts $s "Hello, World" close $f } # A simple UDP server package require udp proc udpEventHandler {sock} { set pkt [read $sock] set peer [fconfigure $sock -peer] puts "$peer: [string length $pkt] {$pkt}" return } proc udp_listen {port} { set srv [udp_open $port] fconfigure $srv -buffering none -translation binary fileevent $srv readable [list ::udpEventHandler $srv] puts "Listening on udp port: [fconfigure $srv -myport]" return $srv } set sock [udp_listen 53530] vwait forever close $sock # A multicast demo. proc udpEvent {chan} { set data [read $chan] set peer [fconfigure $chan -peer] puts "$peer [string length $data] '$data'" if {[string match "QUIT*" $data]} { close $chan set ::forever 1 } return } set group 224.5.1.21 set port 7771 set s [udp_open $port] fconfigure $s -buffering none -blocking 0 fconfigure $s -mcastadd $group -remote [list $group $port] fileevent $s readable [list udpEvent $s] puts -nonewline $s "hello, world" set ::forever 0 vwait ::forever exit HISTORY
Some of the code in this extension is copied from Michael Miller's tcludp package. (http://www.neosoft.com/tcl/ftparchive/sorted/comm/tcludp-1.0/) Compared with Michael's UDP extension, this extension provides Windows sup- port and provides the ability of using 'gets/puts' to read/write the socket. In addition, it provides more configuration ability. Enhancements to support binary data and to setup the package for the Tcl Extension Architecture by Pat Thoyts. SEE ALSO
socket(n) KEYWORDS
networking, socket, udp COPYRIGHT
Copyright (c) 1999-2000 Columbia University; all rights reserved udp 1.0.7 udp(n)
All times are GMT -4. The time now is 12:51 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy