Skip to content
#

networking

Here are 3,473 public repositories matching this topic...

sunshinejr
sunshinejr commented Oct 22, 2019

Currently we use a pretty naive removal of testing dependencies for SwiftPM by setting an environment variable. We should be able to use Rocket and update our Rakefile script to just remove testing dependencies on each release, and keep it in the development process thanks to that.

The idea came from this PR that I saw RxSwiftCommunity/RxOptional#83, which sounds reall

isaaczinda
isaaczinda commented Jun 20, 2019

I believe that libevent has a dependency on OpenSSL (found this here). However, this isn't documented anywhere on the README and the lack of specifics here created a problem with my install on Windows 10. Steps to repro:

git clone https://github.com/libevent/libevent.git
mkdir libevent/.build
cd libevent/.build
cma
skrap
skrap commented Feb 4, 2020

Issue description

In writing rust zmq bindings for tokio, the question came up about when zmq_send and zmq_recv might return EAGAIN when passed the ZMQ_DONTWAIT flag in a multipart message. The implication of the high water mark documentation is that it will only return EAGAIN on the first part of the multipart message, but I couldn't find it explicitly stated anywhere that this

weissi
weissi commented Feb 6, 2020

ByteBufferView is a Collection of UInt8 which "views" into a ByteBuffer. Right now, we basically only implement the subscript which vends individual bytes. That's good enough to implement Collection/Sequence (and a bunch of more specialised sub-protocols) but it's not very fast at all.

Especially methods like firstIndex(of:) or firstIndex(where:) will be very slow because it'l

llchan
llchan commented Mar 31, 2020

It would be useful to be able to toggle/flag into a process-level mode to group by pid and display more process-level information like the full command line.

  • For the "Utilization by process name" window, we could group by pid rather than process name so that it's easier to find specific heavy network resource consumers.
  • For the "Utilization by connection" window, including the pid + cmdlin
medains
medains commented Aug 29, 2019

Each connection will be filtered by one rule - the first match - it seems that the order of rules is based off the name of the rule.

So for example, if I had the following rules

  • Block some advertising domain
  • Allow port 80

If the port 80 rule had a name that sorted earlier than the blocking rule, then it would still permit http requests to the domain.

I can't be sure whether its the

richardcrichardc
richardcrichardc commented Mar 21, 2020

In the text in section 3.3 of the manual it says: Let’s give it tag ID 100

Then in the example, has switched to tag id 10:

  {
    "type": "MATCH_TAGS_DIFFERENCE",
    "not": false,
    "or": false,
    "id": 10,
    "value": 0
  }, 

And following paragraph: difference between tags with tag ID 10 is zero

Looks like a typo and all should either be 10 or 100.

poco
bridgewaterrobbie
bridgewaterrobbie commented Sep 22, 2019

The documentation for Object, Var and Varholder lead me to believe that given the following setup:

std::vector<DynamicStruct> testList;
  Object t1;
  t1.set("name","com.tl");
  t1.set("num1",false);
  Object j;
  j.set("testval",testList);

The following call would let me extract the values (similar to my other use of Object with primitives and basic strings)

` auto retB

vagababov
vagababov commented Mar 17, 2020

The deploy_test and queue_test go files contain a lot of repetitive and duplicated code that should be extracted into helpers.
My guesstimate is that we can save probably some 30-40% of the files. And they are more than 2k lines together. This is a sizable readability improvement.

In what area(s)?

/area API
/area test-and-release

/kind good-first-issue

RedDwarf69
RedDwarf69 commented Oct 8, 2019

https://www.boost.org/doc/libs/1_71_0/libs/beast/doc/html/beast/using_websocket/timeouts.html says

The timeout features of the TCP or basic stream should not be used when working with a websocket stream.

and

`The timeouts on the websocket stream are incompatible with the timeouts used in the tcp_stream. When constructing a websocket stream from a tcp stream that has timeouts enabled, th

Doc

Improve this page

Add a description, image, and links to the networking topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the networking topic, visit your repo's landing page and select "manage topics."

Learn more

You can’t perform that action at this time.