Skip to content
#

networking

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

LucioFranco
LucioFranco commented Aug 14, 2019

Note: This is an issue that is in 0.1.x and in 0.2.x. Any fix should be backported.

UdpFramed violates the decode contract by not attempting to continue decoding past the first discrete item if there is more data in the buffer.

Correct Framed implementation https://github.com/tokio-rs/tokio/blob/v0.1.x/tokio-io/src/framed_read.rs#L199

and incorrect https://github.com/tokio-rs/tokio/blo

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

zero77
zero77 commented Jan 8, 2019

Can you please provide an AppImage, this is basically just a standalone portable executable for linux, that doesn't require installation.
Thanks

There are different ways to create AppImages:

Use Open Build Service (OBS)
Convert existing binary packages (.deb, .rpm, …)
Bundling your Travis CI builds as AppImages
Run linuxdeployqt on your Qt application
Using electron-
imsnif
imsnif commented Jan 16, 2020

Right now, when we do our reverse-dns queries (getting the hostname of an ip address), if the request failed, we retry immediately. This can cause a lot of connections (also visible in the app!) to be opened if a request repeatedly fails.

It would be nice if we have some sort of progressive backoff mechanism for this... something like: wait for 1 second before retrying, then wait for 2, 4, etc.

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

gmacster
gmacster commented Mar 26, 2018

It would be handy (especially for intellisense purposes) to have XMLdoc equivalents for the existing Javadoc comments that have been copied from the Netty project.

If anyone wants to help out with this, please let me know and we can coordinate (maybe we can split up the work by namespace or something).

danwinship
danwinship commented Dec 6, 2019

If a plugin exits with a non-0 exit status and prints stuff to stderr but not stdout, then pkg/invoke/raw_exec.go:pluginErr() will categorize this as "netplugin failed with no error message". This seems to be in part because it forwards the plugin's stderr to its parent's stderr, which is nice and all, but it means that the stderr might end up getting logged somewhere less useful (eg, in cri-o

eugeneia
eugeneia commented Feb 18, 2016

Having a CONTRIBUTING.md (this file will be displayed by GitHub when creating a PR for the first time) would help maintainers and contributors by providing an initial “common ground”. This came up a couple of times in previous discussions and I want to create this discussion to figure out what should be communicated in the file. Eventually, when everybody is happy I would open a PR that formulat

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.