af508f0b4c
add 'up' for whether a interface is up or down
2025-04-30 03:09:55 +02:00
3251e91187
radical re-formatting 2/3: Fix blocks
...
Fixes coding style. Formatting commits suck, incoherent coding style
sucks more.
https://suckless.org/coding_style/
2022-10-28 01:03:38 +02:00
0696635bcb
radical re-formatting 0/3: Alphabetic headers
...
Except stated otherwise in comment.
Fixes coding style. Formatting commits suck, incoherent coding style
sucks more.
https://suckless.org/coding_style/
2022-10-28 01:03:20 +02:00
28ef0b242c
components/*.c: include slstatus.h
...
this gives the compiler a chance to check weather the prototype and
definiton matches or not, which would catch issues like 3c47701.
2022-10-26 23:32:07 +02:00
86849d295b
Add FreeBSD support for netspeeds, entropy and ip components
2019-02-07 12:23:01 +01:00
51ff7ce2b9
Consistent paramter naming for components
2018-07-06 08:08:48 +02:00
b0401b13bb
Clean up header includes
...
- Remove <errno.h> because related functions are in util.c now
- Remove corresponding <string.h> if not used otherwise
2018-05-30 19:35:37 +02:00
1cd8a7b510
ip: fixed memory leak
...
free the interface list before returning from the function
2018-05-20 22:06:54 +02:00
f31b113e7e
Simplify ipv* functions
2018-05-19 13:34:18 +02:00
80fc20d1d6
Add warn() and die()
...
Given slstatus is a tool that runs in the background, most likely run
from .xinitrc, it's important to prepend the name of the tool to error
messages so it becomes clear where the error is coming from.
To make this much more consistent, this commit adds warn() and die()
utility functions consistent with other suckless projects and adapts all
calls to fprintf(stderr, *) to the warn() and die() functions, greatly
increasing the readability of the code.
2018-05-18 11:13:05 +02:00
16a97fbca1
Unify header includes
...
- Sort Alphabetically
- Same indentation for preprocessor clauses
2018-05-07 11:21:59 +02:00
ee5ec75621
Fix coding style
...
- Use block for single statement ifs
- Keep lines to reasonable length (current debate as to reasonable)
- When functions return -1 for error test against 0 not -1
- Do not indent cases another level
- Do not test against NULL and 0 explicitly
- Use tabs for indentation, use spaces for alignment
2018-05-06 22:28:56 +02:00
b2b6eb638e
ip: Sort headers alphabetically
2018-05-02 08:21:32 +02:00
7a9a9b7d76
ip: add OpenBSD support
...
ip.c already works on OpenBSD, it's just missing some headers:
2018-04-29 12:54:28 +02:00
faa52bdcc0
Format error messages properly
...
Make use of strerror(errno) and format all errors equally:
function ['parameters']: error message
2018-03-28 19:46:27 +02:00
96f3a8a54e
Get rid of err.h as it is not portable
...
Replace warn() and warnx() with fprintf() and add <stdio.h> where
necessary.
2018-03-28 18:26:56 +02:00
e79d4932ea
More robust preprocessor switches
...
Replace #ifdef with #if defined() and #elif with #elif defined() as it
should only test if it is defined or not.
2018-03-21 12:21:37 +01:00
ebf5a35052
Build Linux-only functions only on Linux
2018-03-18 23:26:13 +01:00
7246dc4381
Move components into dedicated subdirectory
...
This brings us a lot more tidiness.
2017-09-24 17:20:27 +02:00