sockets


 
Thread Tools Search this Thread
Top Forums Programming sockets
# 1  
Old 10-18-2004
sockets

Hai,
How cani declare socket and collect the data in a string varialbe.
Since i am new to this i am asking this.
Can we connect multiple port.
Thank you.
# 2  
Old 10-18-2004
Hai Arun

Quote:
Hai,
How cani declare socket and collect the data in a string varialbe.
Since i am new to this i am asking this.
Can we connect multiple port.
Thank you.
Arun there are some built-in functions and structures available in C language to create and communicate through sockets. The recv function itself gets the recieved value from the socket in a string variable.here is a good links for you to learn the system programing, sockets and all.

Let me give you some more good sites in the due-course

Good luck to your start
# 3  
Old 06-10-2005
Hey Arun
There is book called "Unix Network Programming " by richard stevans, which is very good on socket and network programming. if you seriously wanted to go for network programming , then read this book. Smilie
# 4  
Old 06-10-2005
see there is full documentation of this topic in the man pages .
still some guidelines
for creating a socket you require threee thing that is network layer protocol ,Transport layer protocol and flag.
generally a tcp-ip packet will look like this socket(PF_INET,SOCK_STREAM,0)
this will return a integer value as descriptor.
after creating socket you have to bind if it is a server side socket.
bind need to set some parameters (binding means giving a name to packet).in case of ip you will have to specify port no which is 16 bit and a network no or ip address.
so in short
functions you will be using will be
socket()->bind()->listen()->accept()->close()
in case of client side
socket()->connect()->close();
# 5  
Old 07-01-2005
Quote:
Originally Posted by ranjan
Hey Arun
There is book called "Unix Network Programming " by richard stevans, which is very good on socket and network programming. if you seriously wanted to go for network programming , then read this book. Smilie
hi,Hey Arun

I have got all of the books that written by Stevans except the "Unix Network Programming",I haven't found this book in any bookstore nearby ,could you give a link to download a ebook version of this book.;->
# 6  
Old 07-01-2005
big - Amazon.com has it & Barnes & Noble (if there is one near you ) also stocks it

arun... - go here and download Chapter 5 for examples. The Stevens book is the best source for socket examples overall, IMO.

http://www.advancedlinuxprogramming.com/alp-folder
# 7  
Old 07-28-2005
Lightbulb

Quote:
I have got all of the books that written by Stevens except the "Unix Network Programming",I haven't found this book in any bookstore nearby ,could you give a link to download a ebook version of this book.;->
Somethings I happened to find usefull myself :

This is a free guide "Beej's Guide to Network Programming Using Internet Sockets" :

http://www.ecst.csuchico.edu/~beej/guide/net/


I found this book on my hardrive to be rather good :

BSD_Sockets_Programming_from_a_Multi-Language_Perspective_(Charles_River-2004).chm

http://www.charlesriver.com/Books/Bo...roductID=70637


Chapter 1 of the Charles River book is titled "Networking Overview" consequently, btw.
__

Last edited by xiddaux; 07-28-2005 at 01:23 AM..
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Programming

Any example about sockets in C++?

Hi, i am student, think learning about c++, someone has a example the how establish a conection with sockets :b::b: (1 Reply)
Discussion started by: mmartinez
1 Replies

2. Red Hat

Sockets

hai guys, I'm doing a project in which one server communicates with several clients. How can i do it when i have different port numbers???:confused: (0 Replies)
Discussion started by: rajeshb6
0 Replies

3. Programming

Help with sockets in C

if i have a server which wants to connect to exactly 5 clients, does that mean i need 5 socket file descriptors and use listen(socket_fd,1); for each one or just do listen(socket_fd,5) also whats the second parameter number mean? what happens if i put 0 there? also if i am connected... (28 Replies)
Discussion started by: omega666
28 Replies

4. Programming

Sockets

Hi,i now moved into a different section where i need to use sockets. i am completely nill in sockets. can some body please provide me what are the requirements for a socket. to use sockets in c. thanks (1 Reply)
Discussion started by: MrUser
1 Replies

5. Programming

need help with sockets

anyone and teach me how to save standard output to a file in a client/server socket. I know how to read them to the screen but i'm not quite sure how to save them to a file. my read to screen file code: memset(line, 0x0, LINE_ARRAY_SIZE); while (recv(connectSocket, line, MAX_MSG, 0) >... (1 Reply)
Discussion started by: crunchyuser
1 Replies

6. IP Networking

sockets and firewall

Is it possible to trace the packages and the statuses of client's and/or server's sockets by the UNIX network administrative tools? Two applications interact via sockets. There is no problem if they stay in the same network segment. If their hosts connected through the firewall then they aren't... (4 Replies)
Discussion started by: gogogo
4 Replies

7. Solaris

Sockets in use

Is there a way to see what sockets are in use? The developers here are getting some defunct processes and they would like to get a socket list. This is on a Solaris 8 machine. Thanks! (1 Reply)
Discussion started by: kjbaumann
1 Replies

8. UNIX for Dummies Questions & Answers

sockets

how do i mointor how many sockets are opened from a particular foriegn address? (2 Replies)
Discussion started by: kirpond
2 Replies

9. Programming

Sockets!?!?!?!?!?!

I am looking for a way to have a program listen on a port (example: 8000) for communication I will be sending via that port to it(Linux Kernel machine). Once it recieves an appropiate command I need it to run a .bat file in linux. I know what I need to do but I am running into a few problems:... (8 Replies)
Discussion started by: bigB8210
8 Replies

10. Programming

sockets...

Hi ! I had a verry simple question to ask... In unix when we create pipes.. the unnamed pipes that is... is there any way to access those pipes outside the code ? Another thing.. do sockets have an entry in the inode table ? TIA, Devyani. (1 Reply)
Discussion started by: devy8
1 Replies
Login or Register to Ask a Question