answersLogoWhite

0

Who invented socket programming?

User Avatar

Anonymous

16y ago
Updated: 8/17/2019

Some people at University of California, Berkeley, in the 80s.

User Avatar

Wiki User

16y ago

What else can I help you with?

Related Questions

What is shoket programming in networking?

you mean "socket programming". it is an programming model which used socket to represent connection points in some network


Where you can find tutorials for socket programming in PHP?

I have added a link to a Socket Programming in PHP guide to the related links section below. That should supply all the information you need to learn.


Where can one get a book on Socket Programming in C?

You can typically find books on Socket Programming in C at major online retailers like Amazon or through specialty bookstores that focus on technical or programming topics. Additionally, many public and university libraries may have copies available to borrow.


Who was the plug socket invented by and when?

lee gough invented the plug socket back in 1988 whilst working on another invention later known as the soda stream.


Who invented jave programming language?

James Gosling


What have women invented?

Windscreen wipers. Computing programming.


Who invented linear programming?

George B. Dantzig


Who invented Pascal?

The computer programming language known as Pascal was invented by Niklaus Wirth in 1970.


When was short code programming language invented?

In 1949, but I have no idea who did it.


Who first invented A plus language?

Niklaus Wirth invented the programming language A+. He developed A+ in the 1980s as an extension of the A language, aiming to enhance the functionality of the APL programming language.


Who invented the light switch and light socket?

Thomas E. Murray


What is socket programming in C?

There is nothing called "socket programming in C." Sockets can be programmed in any programming language. What follows below is a basic idea on how to program sockets. Socket programming refers to the use of a set of APIs for sending and receiving data over a network. The socket APIs originated on the BSD OS standardized by POSIX and are now found on UNIX, Linux, Windows, and Mac OS. The concept of a socket is an abstraction for an end point in network communication through which data can be sent to and received from. The major socket API functions are: * socket() -- creates a socket of specified type and protocol * bind() -- assigns a local name or address to the socket (in the IP protocol this is usually an IP address and port * connect() -- connects a socket to a remote end point * listen() -- changes the socket's state to listen for incoming connections * accept() -- accepts an incoming connection and returns a new socket for communication over that connection * send() -- send data to remote end point specified with connect() call * sendto() -- in connectionless protocols such as UDP, sends data to a specified remote end point * recv() -- receive data from remote end point (after connection established) * recvfrom() -- receive data from a specified remote end point in connectionless protocol * getsockopt() -- gets current value for a particular socket option * setsocketoption() -- set value of a particular socket option