guix/guix
Jan (janneke) Nieuwenhuizen 598be42dfa
syscalls: Add ioctl flags for the Hurd.
Use

    #include <stdio.h>
    #include <net/if.h>
    #include <hurd/ioctl.h>

    int
    main ()
    {
      printf ("SIOCSIFFLAGS #x%x\n", SIOCSIFFLAGS);
      printf ("SIOCGIFADDR #x%x\n", SIOCGIFADDR);
      printf ("SIOCSIFADDR #x%x\n", SIOCSIFADDR);
      printf ("SIOCGIFNETMASK #x%x\n", SIOCGIFNETMASK);
      printf ("SIOCSIFNETMASK #x%x\n", SIOCSIFNETMASK);
    #if 0
      printf ("SIOCADDRT #x%x\n", SIOCADDRT);
      printf ("SIOCDELRT #x%x\n", SIOCDELRT);
    #endif
    }

to fill in some blanks.  Adding and removing route apparently not supported.

* guix/build/syscalls.scm (SIOCSIFFLAGS SIOCGIFADDR, SIOCSIFADDR,
SIOCGIFNETMASK, SIOCSIFNETMASK):
2020-05-07 07:11:03 +02:00
..
build syscalls: Add ioctl flags for the Hurd. 2020-05-07 07:11:03 +02:00
build-system build-system/gnu: Optimize the package graph. 2020-03-29 23:14:28 +02:00
import import: crate: Gracefully handle non-existent crates. 2020-04-27 23:29:40 +02:00
scripts image: Add a new API. 2020-05-05 16:13:53 +02:00
store
tests tests: Invoke 'git' with a custom '.gitconfig' and ignore the system config. 2020-04-19 13:27:06 +02:00
base16.scm
base32.scm
base64.scm
build-system.scm
bzr-download.scm
cache.scm
channels.scm channels: Use a declarative profile. 2020-04-26 22:49:49 +02:00
ci.scm ci: Fix 'evaluation-spec' binding. 2020-03-31 14:55:42 +02:00
colors.scm
combinators.scm
config.scm.in
cpio.scm
cve.scm
cvs-download.scm
deprecation.scm
derivations.scm
describe.scm
diagnostics.scm
discovery.scm
docker.scm
download.scm download: Use correct system and guile in 'url-fetch/tarbomb' and 'url-fetch/zipbomb'. 2020-04-08 19:35:34 +02:00
elf.scm
ftp-client.scm
gexp.scm gexp: Add 'load-path?' field to <scheme-file>. 2020-04-22 19:23:57 +02:00
git-download.scm git-version: Raise a condition instead of an error. 2020-04-23 14:23:03 +02:00
git.scm git: Don't try to resolve tags with 'tag-lookup'. 2020-04-02 23:15:11 +02:00
glob.scm
gnu-maintenance.scm
gnupg.scm gnupg: Accept revoked keys. 2020-04-17 23:36:47 +02:00
grafts.scm grafts: Simplify access to store item references. 2020-04-02 00:06:26 +02:00
graph.scm
hg-download.scm
http-client.scm
i18n.scm
inferior.scm
json.scm
licenses.scm Revert "licenses: Export license record." 2020-04-24 09:10:35 +02:00
lint.scm lint: 'check-patch-file-names' restricts to shorter file names. 2020-04-10 16:02:51 +02:00
lzlib.scm
man-db.scm
memoization.scm
modules.scm
monad-repl.scm
monads.scm
nar.scm
openpgp.scm openpgp: Add missing type predicate for '&openpgp-invalid-signature-error'. 2020-05-04 10:51:39 +02:00
packages.scm packages: Recommend against the use of 'package-file'. 2020-04-21 00:06:40 +02:00
pki.scm
profiles.scm profiles: Mark manual database as non-substitutable. 2020-05-01 01:21:03 +02:00
profiling.scm
progress.scm
records.scm records: Have ABI check work well for cross-compilation. 2020-04-08 00:05:45 +02:00
remote.scm
repl.scm
scripts.scm
search-paths.scm
self.scm self: Build and install 'guix-cookbook.info' and its translations. 2020-04-21 23:52:19 +02:00
serialization.scm
sets.scm
ssh.scm ssh: 'send-files' reports missing modules on the remote host. 2020-03-23 10:48:17 +01:00
status.scm status: Remove extra space before ellipsis. 2020-04-19 13:27:06 +02:00
store.scm store: 'with-store' uses 'with-exception-handler'. 2020-04-05 00:36:44 +02:00
svn-download.scm
swh.scm
tests.scm
ui.scm ui: Fix typos, 80-col & grammar in comments & docstrings. 2020-04-17 23:18:32 +02:00
upstream.scm
utils.scm
workers.scm
zlib.scm