Skip to content
#

networking

Here are 3,565 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

bandwhich
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
mithun26779
mithun26779 commented Mar 6, 2020

https://github.com/zerotier/ZeroTierOne/tree/master/controller
documentation says :--

**Dockerizing Controllers

ZeroTier network controllers can easily be run in Docker or other container systems. Since containers do not need to actually join networks, extra privilege options like "--device=/dev/net/tun --privileged" are not needed. You'll just need to map the local JSON API port of the run

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

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

wingo
wingo commented Jun 28, 2018

Some counters that would be useful:

  • one that increments on every jit.flush(), whether provoked internally or externally
  • one that increments on every stop-the-world GC (potentially more here, e.g. minor GC etc)

I know we'll have an auditlog with raptorjit but counters are useful too!

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.