Click here to Skip to main content
15,798,278 members
Home / Discussions / Hosting and Servers
   

Hosting and Servers

 
QuestionI am not able to use IIS I am getting the error as below Pin
simpledeveloper5-Feb-20 13:43
simpledeveloper5-Feb-20 13:43 
AnswerRe: I am not able to use IIS I am getting the error as below Pin
phil.o5-Feb-20 20:50
professionalphil.o5-Feb-20 20:50 
QuestionDirect deployment or making automatic deployment on Server using Git and TFSVC Pin
simpledeveloper3-Feb-20 10:16
simpledeveloper3-Feb-20 10:16 
QuestionHelp me to understand "hosts" file and socket communication via bluetooth Pin
Vaclav_29-Dec-19 8:54
Vaclav_29-Dec-19 8:54 
AnswerRe: Help me to understand "hosts" file and socket communication via bluetooth Pin
Richard MacCutchan30-Dec-19 1:18
mveRichard MacCutchan30-Dec-19 1:18 
GeneralRe: Help me to understand "hosts" file and socket communication via bluetooth Pin
Vaclav_30-Dec-19 8:09
Vaclav_30-Dec-19 8:09 
GeneralRe: Help me to understand "hosts" file and socket communication via bluetooth Pin
Vaclav_1-Jan-20 6:07
Vaclav_1-Jan-20 6:07 
GeneralRe: Help me to understand "hosts" file and socket communication via bluetooth Pin
Richard MacCutchan1-Jan-20 6:22
mveRichard MacCutchan1-Jan-20 6:22 
The sequence should be something like:
To accept connections, the following steps are performed by the server side:

1.  A socket is created with socket(2).

2.  The socket is bound to a local address using bind(2), so that
   other sockets may be connect(2)ed to it.

3.  A willingness to accept incoming connections and a queue
   limit for incoming connections are specified with listen().

4.  Connections are accepted with accept(2).

as described at listen(2) - Linux manual page[^].

The client then connects by the following:
Creates the socket
Calls bind to bind the socket to the address of the server
Calls connect
starts sending messages

as described at bind(2) - Linux manual page[^].

I am not sure what special rules are needed when connecting via Bluetooth.
GeneralRe: Help me to understand "hosts" file and socket communication via bluetooth Pin
Vaclav_1-Jan-20 7:29
Vaclav_1-Jan-20 7:29 
GeneralRe: Help me to understand "hosts" file and socket communication via bluetooth Pin
Vaclav_2-Jan-20 5:04
Vaclav_2-Jan-20 5:04 
GeneralRe: Help me to understand "hosts" file and socket communication via bluetooth Pin
Richard MacCutchan2-Jan-20 5:45
mveRichard MacCutchan2-Jan-20 5:45 
GeneralRe: Help me to understand "hosts" file and socket communication via bluetooth Pin
Vaclav_2-Jan-20 7:22
Vaclav_2-Jan-20 7:22 
GeneralRe: Help me to understand "hosts" file and socket communication via bluetooth Pin
Richard MacCutchan2-Jan-20 7:35
mveRichard MacCutchan2-Jan-20 7:35 
GeneralRe: Help me to understand "hosts" file and socket communication via bluetooth Pin
Vaclav_2-Jan-20 7:52
Vaclav_2-Jan-20 7:52 
QuestionRemove a folder from TFS after it is checked into TFS Server Pin
simpledeveloper18-Dec-19 8:52
simpledeveloper18-Dec-19 8:52 
AnswerRe: Remove a folder from TFS after it is checked into TFS Server Pin
Richard MacCutchan18-Dec-19 22:54
mveRichard MacCutchan18-Dec-19 22:54 
Questionhost host a php application in windows system Pin
BhavaniSri6-Nov-19 3:07
BhavaniSri6-Nov-19 3:07 
AnswerRe: host host a php application in windows system Pin
jkirkerx7-Nov-19 10:34
professionaljkirkerx7-Nov-19 10:34 
QuestionSuggest Me Cloud Hosting For Our Website Pin
raja asad amin11-Oct-19 4:19
professionalraja asad amin11-Oct-19 4:19 
AnswerRe: Suggest Me Cloud Hosting For Our Website Pin
jkirkerx7-Nov-19 11:05
professionaljkirkerx7-Nov-19 11:05 
AnswerRe: Suggest Me Cloud Hosting For Our Website Pin
Khalequzzaman8-Nov-19 21:43
Khalequzzaman8-Nov-19 21:43 
QuestionWhats your code management setup? Pin
lineil8-Sep-19 4:50
lineil8-Sep-19 4:50 
AnswerRe: Whats your code management setup? Pin
MilesWeb9-Sep-19 2:52
professionalMilesWeb9-Sep-19 2:52 
GeneralRe: Whats your code management setup? Pin
lineil9-Sep-19 23:15
lineil9-Sep-19 23:15 
GeneralRe: Whats your code management setup? Pin
Deepak Vasudevan19-Sep-21 20:57
Deepak Vasudevan19-Sep-21 20:57 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.