HCIE-RS -- what is PHB?
PHB:Per Hop Behavior
Describe the next forwarding action of messages with the same priority. The value of each priority will correspond to the corresponding phb behavior, such as be, AF, EF, etc
There are four types of PHB: CS EF AF BE
BE: do your best without quality assurance. The default PHB behavior value is 0, corresponding to ipp=0
...
Added by giba on Wed, 15 Dec 2021 19:13:15 +0200
Linux kill Command principle and source code implementation
When working on Linux, you may see applications or command-line processes get stuck. Then in these cases, terminating it is the only way out.
The Kill Command in Linux (located in / bin/kill) is a built-in command used to manually terminate a process. The kill command is very easy to understand and use. The Kill Command sends a signal to the p ...
Added by parkej60 on Wed, 15 Dec 2021 09:24:32 +0200
TCP chat program based on IO, NIO and Netty
preface
Java version 1.4 introduces a new IO API, which has the same function and purpose as the original IO; It can replace standard java IO, but the implementation method is different. NIO is a buffer oriented and channel based IO operation; NIO can improve the reading and writing of files. Based on this advantage, there are more and m ...
Added by scottfossum on Wed, 15 Dec 2021 07:33:33 +0200
Network communication -- > TCP
1. TCP communication For connection oriented communication, the client and server must shake hands three times and establish a logical connection before communication (Security)
1.1 communication steps The server starts first. The server will not actively request the client. The client must request the server. The client and the server establi ...
Added by rusbb on Mon, 13 Dec 2021 11:53:54 +0200
JAVA network programming personal notes Chapter 8 TCP Socket programming
TCP Socket programming
Introduction to computer networking
Introduction to Socket and ServerSocket
Introduction to relevant knowledge
The process of using Socket for network communication
The server program binds a socket to a specific port, and waits for and listens to the client's connection request through this socketThe ...
Added by overlordhu on Mon, 06 Dec 2021 20:41:42 +0200
Methods of crawling network requests using jsup (java,post,get, proxy IP)
Original link: https://www.cnblogs.com/blog5277/p/9334560.html
Original author: blog Garden -- Qugao end and widowhood
See the original link above****************
When you use crawlers at work, you will encounter the following problems:
1. Anti crawler mechanism of the website (verification code, IP sealing, poisoning, js dynamic rendering ...
Added by harristweed on Wed, 01 Dec 2021 18:46:08 +0200
vue2.x version + element-ui2.15 + version implements the ip input box that can only input numbers. The functional style is based on windows and bound to the parent component in both directions
catalogue
1. Bidirectional binding
2.:oninput dynamic binding and @ input event processing
3. Main functions
4. Custom component code
1. Bidirectional binding
The implementation of bidirectional binding is implemented by v-model in vue2.x. The main codes in this subclass are as follows:
export default {
name: 'IpInput',
mode ...
Added by pinxue on Tue, 23 Nov 2021 01:41:01 +0200
The Tcp server always sleep s, and the client keeps sending data
Question: "a tcp server and a tcp client. After the client establishes a connection with the server, the server always sleep s, and then the client always sends data".
Before answering this question, let's think about the characteristics of tcp and the general process of tcp sending data:
First of all, tcp is a reliable transmission ...
Added by djbuddhi on Thu, 04 Nov 2021 13:30:13 +0200
01 first day of network programming
Course arrangement of network programming:
day01
Understand OSI seven layer and TCP/IP four layer network model structureUnderstand common network protocol formatsMaster the conversion between network byte order and host byte order (large end method and small end method)Tell the communication flow of TCP serverOutput TCP client communica ...
Added by narked on Fri, 29 Oct 2021 15:02:02 +0300
JavaWeb -- station B dark horse programmer duosanlian
1.Servlet
Server applet: a small program running on the server side
public class ServletDemo implements Servlet {
@Override
public void init(ServletConfig servletConfig) throws ServletException {
}
@Override
public ServletConfig getServletConfig() {
return null;
}
@Override
public void servic ...
Added by dannybrazil on Sun, 10 Oct 2021 17:14:48 +0300