Pavel Balaev

Results 22 issues of Pavel Balaev

I cannot find something like PARAM_SSH_KEY in bVNC/Constants.java. It would be nice if we can use Public key authentication in android Intent. e.g. we can send SshPubKey="ctx"&SshPrivKey="ctx" ...

enhancement

Utilities for checking licenses on a module (for example, lichen) cannot check the license if the file is missing. These utilities can be used in CI to check licenses against...

Support file modes: r+b, w+b, a+b. Closes #457

Flags: `r+b`, `w+b`, `a+b` are valid and works in C lua implementation. Gopher-lua throws an error: `bad argument #2 to open (invalid option: r+b (must be one of r,rb,w,wb,a,ab,r+,rb+,w+,wb+,a+,ab+))`

Added Tarantool binary protocol parsing (IPROTO). Protocol info From IANA database: Service Name: tarantool Port Number: 3301 Transport Protocol: tcp/udp Description: Tarantool in-memory computing platform

A new type of space has been added to the tarantool's master: https://github.com/tarantool/tarantool/commit/70e423e92fc00df2ffe385f31dae9ea8e1cc1732 `create_tube` method allows you to create temporary tubes, but this functionality is disabled for replicaset mode: ```lua...

feature
teamE

Command-line utility to manage Tarantool applications.

socket.has_ipv6 gives a false result: ```sh $ sysctl net.ipv6.conf.all.disable_ipv6=1 net.ipv6.conf.all.disable_ipv6 = 1 $ python Python 3.11.8 (main, Feb 24 2024, 17:10:38) [GCC 13.2.1 20240210] on linux Type "help", "copyright", "credits"...

If not using the most efficient representation we can insert duplicate keys in unique index: Tarantool 2.11.2-0-g1bac2d2 ```lua tarantool> s = box.schema.space.create('test') --- ... tarantool> s:create_index('pk') --- - unique: true...

bug