This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // gosshd is a minimal pure-Go SSH server for the Haiku. | |
| // It accepts password and public-key auth and runs | |
| // `ssh host "cmd"` (exec) or `ssh host` (shell) through /bin/bash. The legacy | |
| // scp protocol is served directly (scpRun), so file transfer works without a | |
| // system scp binary; clients must use `scp -O`, as SFTP is not implemented. | |
| // The host-key and authorized_keys locations follow Haiku's sshd conventions; | |
| // see hostKey and authorizedKey. | |
| // | |
| // Every command runs in its own process group and is force-killed (whole group) | |
| // when it exits, the SSH connection drops, or an optional per-command deadline |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "version": 6, | |
| "configurePresets": [ | |
| { | |
| "name": "win32-cross", | |
| "displayName": "Win32 cross-compile (mingw-w64)", | |
| "inherits": "win32", | |
| "cacheVariables": { | |
| "CMAKE_SYSTEM_NAME": "Windows", | |
| "CMAKE_C_COMPILER": "x86_64-w64-mingw32-gcc", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| diff '--color=auto' -ur efl.orig/src/lib/ecore/efl_loop.c efl/src/lib/ecore/efl_loop.c | |
| --- efl.orig/src/lib/ecore/efl_loop.c 2025-03-17 16:43:43.000000000 +0100 | |
| +++ efl/src/lib/ecore/efl_loop.c 2026-03-27 17:07:58.288322245 +0100 | |
| @@ -639,6 +639,24 @@ | |
| EOAPI EFL_FUNC_BODY(efl_loop_message_process, Eina_Bool, 0); | |
| +EOLIAN static void | |
| +_efl_loop_message_pending_flush(Eo *obj EINA_UNUSED, Efl_Loop_Data *pd) | |
| +{ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| diff --git a/client.go b/client.go | |
| index bcf8d5b..0888b01 100644 | |
| --- a/client.go | |
| +++ b/client.go | |
| @@ -4,25 +4,34 @@ import ( | |
| "context" | |
| "fmt" | |
| "log" | |
| + "net" | |
This file has been truncated, but you can view the full file.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| diff -ur x264-go/encode.go x264-go.new/encode.go | |
| --- x264-go/encode.go 2020-04-20 16:40:00.859331841 +0200 | |
| +++ x264-go.new/encode.go 2020-06-06 15:48:52.593083554 +0200 | |
| @@ -82,8 +82,9 @@ | |
| param.IWidth = int32(e.opts.Width) | |
| param.IHeight = int32(e.opts.Height) | |
| - | |
| param.ICsp = e.csp | |
| + |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| type Param struct { | |
| // CPU flags. | |
| Cpu uint32 | |
| // Encode multiple frames in parallel. | |
| IThreads int32 | |
| // Multiple threads for lookahead analysis. | |
| ILookaheadThreads int32 | |
| // Whether to use slice-based threading. | |
| BSlicedThreads int32 | |
| // Whether to allow non-deterministic optimizations when threaded. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package main | |
| import ( | |
| "bufio" | |
| "encoding/csv" | |
| "encoding/json" | |
| "flag" | |
| "fmt" | |
| "io/ioutil" | |
| "log" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package main | |
| import ( | |
| "bufio" | |
| "context" | |
| "flag" | |
| "fmt" | |
| "io" | |
| "log" | |
| "net/http" |
NewerOlder