Questions tagged [multiplexing]

In telecommunications and computer networks, multiplexing (also known as muxing) is a method by which multiple analogue message signals or digital data streams are combined into one signal over a shared medium.

In telecommunications and computer networks, multiplexing (also known as muxing) is a method by which multiple analogue message signals or digital data streams are combined into one signal over a shared medium.

The aim is to share an expensive resource. For example, in telecommunications, several telephone calls may be carried using one wire. Multiplexing originated in telegraphy in the 1870s, and is now widely applied in communications.

In telephony, George Owen Squier is credited with the development of telephone carrier multiplexing in 1910.

243 questions
0
votes
1 answer

how does pselect blocks signal using signal mask in network programming

I am currently studying the concepts of network programming in which I came across one of the functions pselect() which resolves the issue of select ie. with select(), there is a chance of problem which is that between the test of intr_flag and the…
POOJA GUPTA
  • 2,295
  • 7
  • 32
  • 60
0
votes
0 answers

UDP sockets Multiplexing/Demultiplexing

There are already some questions regarding this, but I want to ask something very specific that does not seem to be covered by the others. So, I'm aware that the same UDP port (server) can be used by different users - the server stills knows where…
GWasp
  • 51
  • 6
0
votes
1 answer

Is it possible to use JMeter to make multiple HTTP/2 requests in one connection (multiplexing)?

I am trying to run RESTful API performance test against a web app using JMeter. In the actual case, a web site would make 4-5 asynchronous API calls to the web app under HTTP/2 in one connection using multiplexing. I already have the HTTP2Sampler…
Jasper_Li
  • 234
  • 2
  • 9
0
votes
1 answer

Verilog: code for MUX

I am working on a verilog code with following requirements: It is Fully synchronous. Implement Muxes between 11 buses where each bus is 8-bits wide. It has 2 cycles of latency. It has Optimized for maximum clock frequency. I have written this code…
sar
  • 65
  • 1
  • 12
0
votes
1 answer

How can I mimic reading multiple RFID readers through Softwareserial library in a loop?

I am working on a project that requires reading from six ID-12LA RFID readers simultaneously. I’ve tried setting up readings from six channels through the Sparkfun Analog/Digital MUX Breakout board (CD74HC4067), but without luck. I don’t know if it…
0
votes
1 answer

Client-server echo-chat (multiplexing I/O + threads)

I just started learning C language and I'm trying to get deal with Windows Sockets. The problem is the server can accept and send message only once. I used debug mode and saw that work stops in select() from the server part. It seems fine in client…
0
votes
1 answer

What are server resources?

I am reading about Priority concept of HTTP/2 but I'm not sure how it can be implement in a real server-client system. As I can see, Priority informs server what stream should be sent to client earlier and later. However, I don't know what will…
minhkstn
  • 1
  • 1
  • 3
0
votes
1 answer

7 segment MUX Not showing the wanted digit.- Verilog

I want to show digits in the range from 0.0 to 99.5, step 0.5, on a 7 segment display. I have 3 seven segment displays available, they are connected in a MUX, so I have 7 pins for segments and 3 select pins for choosing the digits. In the…
drVrh
  • 37
  • 6
0
votes
0 answers

Python 7 segment multiplexing buggy with making stopwatch

I need to make stopwatch on a 7 segment display. But when I try it, it blinks. I don't want this effect, but I don't know how to write code for a stopwatch that doesn't blink the whole time. I tried making my stopwatch with sleep library. This is my…
0
votes
1 answer

Python Multiplexed server using select.select won't accept clients simulaneously

All this program should do is accept inputs from 2 clients simultaneously and print them out, but instead it accepts 1 input from the first client to connect, then starts accepting inputs infinitely from the second client, but not from the first…
Elmo1768
  • 1
  • 1
0
votes
1 answer

I am doing a mux 4:1 on verilog, but the output is not the expeted

I've seen some examples on internet about mux 4:1 on verilog. I've tried to do something but the output is not the expeted. This is the source : module mux41 (a, b, c, d,select,z); input a,b,c,d; input [1:0]select; output reg z; always@(select…
NIN
  • 197
  • 13
0
votes
1 answer

How to use cURL with multiplexing with sftp

I want to get the file structure (listing only) on an sFTP server. I'm currently using the cURL bash command with multiple calls. In order to avoid multiple connections, I'd like to use openssh multiplexing. I followed the instructions on…
ezdazuzena
  • 6,120
  • 6
  • 41
  • 71
0
votes
0 answers

Setting GPIO in MLO does not work

I want to know how to pin multiplex pins in initial phase of boot i.e is in spl(MLO). What I am trying to do is change the default pin configuration to gpio one, so that I can see high or low on the pin. On P8 header I tried to change the mode 0…
0
votes
2 answers

SPDY with HAProxy and Nginx

I am using HAProxy as a loadbalancer and to terminate SSL. Behind that I've placed an Nginx. I'd like to use spdy/3.1. It does not work with the following haproxy.conf and nginx.cfg. (files are serverd but according to Chrome SPDY/HTTP2 Indicator…
alsdkjasdlkja
  • 1,260
  • 2
  • 14
  • 30
0
votes
2 answers

Multiplexing non-blocking socket IOs with EOF

I am implementing a non-blocking socket IO reactor using linux select. Let's say, a server and a client are in communication. If the client or the server is down, the other side is supposed to receive an EOF which can be told by the return value of…
Jes
  • 2,614
  • 4
  • 25
  • 45