Lines Matching refs:server
139 such as a client-server mode of operation seen in the next example,
235 use a client-server type multi-process design to do packet processing.
236 In this example, a single server process performs the packet reception from the ports being used and
253 The server process must be run initially as the primary process to set up all memory structures for…
260 by the server application.
264 …In the server process, a single thread, the main thread, that is, the lowest numbered lcore in the…
268 Since the server application stores configuration data in shared memory, including the network port…
270 Therefore, to run a server application on lcore 1 (with lcore 2 printing statistics) along with two…
281 …If the server application dies and needs to be restarted, all client applications also need to be …
282 as there is no support in the server application for it to run as a secondary process.
283 Any client processes that need restarting can be restarted without affecting the server process.
288 The server process performs the network port and data structure initialization much as the symmetri…
289 One additional enhancement in this sample application is that the server process stores its port co…
293 In the same way that the server process is designed to be run as a primary process instance only,
299 …et access to the network ports using the settings already configured by the primary/server process.
301 Once all applications are initialized, the server operates by reading packets from each network por…
306 …ng the packets directly to the network ports; they are not transferred back via the server process.
308 In both the server and the client processes, outgoing packets are buffered before being sent,
311 until either the buffer is full or until we receive no further packets from the server.