Module 21 - Accessing the Network and Parallel Programming

0.0(0)
studied byStudied by 0 people
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/9

encourage image

There's no tags or description

Looks like no tags are added yet.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

10 Terms

1
New cards

port

16 bit integer that identifies a process

2
New cards

socket

an endpoint of a connection

3
New cards

getaddrinfo()

uses the query key as a DNS domain name, and returns desired protocol information

4
New cards

getnameinfo()

query key is an IP address, returns a sockaddr struct

5
New cards

bind()

associates the socket descriptor witht he socket addrewss

6
New cards

listen()

indicates that this socket will accept conection requests from clients

7
New cards

accept()

blocks waiting for a connection request

8
New cards

listening descriptor

end point for client connection requests that is created once and exists for the lifetime of the server

9
New cards

connected descriptor

end point of the connection between client and server, exists only as long as it takes to service the client

10
New cards