using System;
using ;
using ;
using ;
using ;
using ;
using ;
using ;
using ;
using ;
using ;
namespace Socket Communication
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
= "5000";
= "192.168.137.1";
}
private void btnStart_Click(object sender, EventArgs e)
{
//When clicking to start listening, create a socket on the server that is responsible for monitoring the IP address and port number.
Socket socketWatch = new Socket(,,);
//Any: Provide an IP address indicating that the server should listen for client activity on all network interfaces. This field is read-only.
IPAddress ip = ;
//Create a port number object; set the control value to the port number of the server
IPEndPoint point = new IPEndPoint(ip, Convert.ToInt32());
//Supervisor
(point);
ShowMsg("Supervisor successful");
(10);//The maximum length of the connection queue; that is: the maximum number of clients can be connected in at a time point, and queue up if the length exceeds the length.
//Waiting for the client to connect; Accept() method can receive the client's connection and create a socket responsible for communication for the new connection.
Thread th = new Thread(Listen); //If there are parameters for the method executed by the thread, the parameter must be of object type
= false; //Because .net does not allow cross-thread access, cross-thread checking is cancelled here. .net does not check whether there is cross-thread access, and no one will report: "The thread that created the control "txtLog" accesses it" error, thus achieving cross-thread access.
= true; //Set the thread th as a background thread.
//Start(object parameter); parameter: an object that contains the data to be used by the method executed by the thread, that is, the thread executes the Listen method, Listen parameters
(socketWatch); //The parameters in this bracket are actually parameters of the Listen() method. Because Thread th = new Thread(Listen) can only write method names (function names) in the brackets, but the Listen() method has parameters, all the parameters must be added using the Start() method.
}
/// <summary>
/// Wait for the client to connect, if you monitor that a client is connected, create a socket to communicate with it.
/// </summary>
/// <param name="o"></param>
void Listen(object o) //Why don’t you pass the parameters of Socket type directly here? The reason is: If there are parameters for the method executed by the thread, the parameters must be of object type.
{
Socket socketWatch = o as Socket;
While (true) //Why should there be a while loop here? Because when a person connects in, he creates a Socket for communicating with it, the program will be executed downwards, and he will not come back to create a Socket for the second person's connection. (It should be that everyone (each client) creates a Socket to communicate with it) so it needs to be written in the loop.
{
//Waiting for the client to connect; Accept() method can receive the client's connection and create a socket responsible for communication for the new connection.
Socket socketSend = ();
(), socketSend); // (Find the Socket responsible for communication based on the IP address and port number of the client. Each client corresponds to a Socket responsible for communication). The IP address and port number are used as keys, and the Socket responsible for communication is filled into the dic key-value pair as values.
//We can get the IP address and port number of the remote connected client through a RemoteEndPoint property of the socketSend object responsible for communication.
ShowMsg(() + ":" + "Connected successfully");//Effect: 192.168.1.32:Connected successfully
(()); //Add each connected client to the cobBox control.
//After the client connection is successful, the server should receive messages sent by the client.
Thread getdata = new Thread(GetData);
= true;
(socketSend);
}
}
Dictionary<string, Socket> dic = new Dictionary<string, Socket>();
/// <summary>
/// Continuously receive messages sent by the client
/// </summary>
/// <param name="o"></param>
void GetData(object o)
{
while (true)
{
Socket socketSend = o as Socket;
//Put the data sent by the client into a byte array first.
byte[] buffer = new byte[1024 * 1024 * 2]; //Create a byte array with the length of the byte array being 2M
//The actual number of valid bytes received; (Use the Receive method to receive the data transmitted by the client, and then save the data to the buffer byte array to return the length of the received data)
int r = (buffer);
if (r == 0) //If the received valid bytes is 0, it means that the client has been closed. At this time, the loop breaks out.
{
//Only the client sends messages to the user, it is impossible to send 0 bytes of length. Even if an empty message is sent, the empty message will have a length. All valid byte lengths received are 0, which means that the client has been closed.
break;
}
//Decode the data in the buffer byte array according to UTF8 encoding and decode it into a string type that we can understand. Because the actual length of stored data in the buffer array is r, the decoding starts from the bytes with index 0, and decodes a total of r byte lengths.
string str = Encoding.(buffer, 0, r);
ShowMsg(() + ":" + str);
}
}
private void ShowMsg(string str)
{
(str + "\r\n"); //Add the string str to the text box of txtLog.
}
/// <summary>
/// The server sends a message to the client
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
private void btnSend_Click_1(object sender, EventArgs e)
{
if ( == null) //If the comboBox control does not have a selected value. Prompt the user to select the client
{
("Please select client");
return;
}
string str = ; //Get the content entered by the user (the information the server needs to send to the client)
byte[] strByte = (str); //Convert information into binary byte array
string getIp = as string; //comboBox stores the client's (ip+port number)
Socket socketSend = dic[getIp] as Socket; //From this (ip and port number) to find the corresponding Socket in the dic key-value pair to assign a Socket to communicate with the client [Each client has a Socket responsible for communicating with it]
(strByte); //Send information to the client
}
}
}
using ;
using ;
using ;
using ;
using ;
using ;
using ;
using ;
using ;
using ;
namespace Socket Communication
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
= "5000";
= "192.168.137.1";
}
private void btnStart_Click(object sender, EventArgs e)
{
//When clicking to start listening, create a socket on the server that is responsible for monitoring the IP address and port number.
Socket socketWatch = new Socket(,,);
//Any: Provide an IP address indicating that the server should listen for client activity on all network interfaces. This field is read-only.
IPAddress ip = ;
//Create a port number object; set the control value to the port number of the server
IPEndPoint point = new IPEndPoint(ip, Convert.ToInt32());
//Supervisor
(point);
ShowMsg("Supervisor successful");
(10);//The maximum length of the connection queue; that is: the maximum number of clients can be connected in at a time point, and queue up if the length exceeds the length.
//Waiting for the client to connect; Accept() method can receive the client's connection and create a socket responsible for communication for the new connection.
Thread th = new Thread(Listen); //If there are parameters for the method executed by the thread, the parameter must be of object type
= false; //Because .net does not allow cross-thread access, cross-thread checking is cancelled here. .net does not check whether there is cross-thread access, and no one will report: "The thread that created the control "txtLog" accesses it" error, thus achieving cross-thread access.
= true; //Set the thread th as a background thread.
//Start(object parameter); parameter: an object that contains the data to be used by the method executed by the thread, that is, the thread executes the Listen method, Listen parameters
(socketWatch); //The parameters in this bracket are actually parameters of the Listen() method. Because Thread th = new Thread(Listen) can only write method names (function names) in the brackets, but the Listen() method has parameters, all the parameters must be added using the Start() method.
}
/// <summary>
/// Wait for the client to connect, if you monitor that a client is connected, create a socket to communicate with it.
/// </summary>
/// <param name="o"></param>
void Listen(object o) //Why don’t you pass the parameters of Socket type directly here? The reason is: If there are parameters for the method executed by the thread, the parameters must be of object type.
{
Socket socketWatch = o as Socket;
While (true) //Why should there be a while loop here? Because when a person connects in, he creates a Socket for communicating with it, the program will be executed downwards, and he will not come back to create a Socket for the second person's connection. (It should be that everyone (each client) creates a Socket to communicate with it) so it needs to be written in the loop.
{
//Waiting for the client to connect; Accept() method can receive the client's connection and create a socket responsible for communication for the new connection.
Socket socketSend = ();
(), socketSend); // (Find the Socket responsible for communication based on the IP address and port number of the client. Each client corresponds to a Socket responsible for communication). The IP address and port number are used as keys, and the Socket responsible for communication is filled into the dic key-value pair as values.
//We can get the IP address and port number of the remote connected client through a RemoteEndPoint property of the socketSend object responsible for communication.
ShowMsg(() + ":" + "Connected successfully");//Effect: 192.168.1.32:Connected successfully
(()); //Add each connected client to the cobBox control.
//After the client connection is successful, the server should receive messages sent by the client.
Thread getdata = new Thread(GetData);
= true;
(socketSend);
}
}
Dictionary<string, Socket> dic = new Dictionary<string, Socket>();
/// <summary>
/// Continuously receive messages sent by the client
/// </summary>
/// <param name="o"></param>
void GetData(object o)
{
while (true)
{
Socket socketSend = o as Socket;
//Put the data sent by the client into a byte array first.
byte[] buffer = new byte[1024 * 1024 * 2]; //Create a byte array with the length of the byte array being 2M
//The actual number of valid bytes received; (Use the Receive method to receive the data transmitted by the client, and then save the data to the buffer byte array to return the length of the received data)
int r = (buffer);
if (r == 0) //If the received valid bytes is 0, it means that the client has been closed. At this time, the loop breaks out.
{
//Only the client sends messages to the user, it is impossible to send 0 bytes of length. Even if an empty message is sent, the empty message will have a length. All valid byte lengths received are 0, which means that the client has been closed.
break;
}
//Decode the data in the buffer byte array according to UTF8 encoding and decode it into a string type that we can understand. Because the actual length of stored data in the buffer array is r, the decoding starts from the bytes with index 0, and decodes a total of r byte lengths.
string str = Encoding.(buffer, 0, r);
ShowMsg(() + ":" + str);
}
}
private void ShowMsg(string str)
{
(str + "\r\n"); //Add the string str to the text box of txtLog.
}
/// <summary>
/// The server sends a message to the client
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
private void btnSend_Click_1(object sender, EventArgs e)
{
if ( == null) //If the comboBox control does not have a selected value. Prompt the user to select the client
{
("Please select client");
return;
}
string str = ; //Get the content entered by the user (the information the server needs to send to the client)
byte[] strByte = (str); //Convert information into binary byte array
string getIp = as string; //comboBox stores the client's (ip+port number)
Socket socketSend = dic[getIp] as Socket; //From this (ip and port number) to find the corresponding Socket in the dic key-value pair to assign a Socket to communicate with the client [Each client has a Socket responsible for communicating with it]
(strByte); //Send information to the client
}
}
}