chiark
/
gitweb
/
~mdw
/
disorder
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Merge config aliasing bug fix.
[disorder]
/
tests
/
udplog.c
diff --git
a/tests/udplog.c
b/tests/udplog.c
index 0aa8f595c4346e36a1316dd5f9bc2ceb41937943..a27252c49d8d869185a4f656e821ac3718ddc30d 100644
(file)
--- a/
tests/udplog.c
+++ b/
tests/udplog.c
@@
-17,9
+17,12
@@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
* USA
*/
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
* USA
*/
-
-#include <config.h>
-#include "types.h"
+/** @file tests/udplog.c
+ * @brief UDP logging utility
+ *
+ * Intended for low-level debugging.
+ */
+#include "common.h"
#include <getopt.h>
#include <sys/types.h>
#include <getopt.h>
#include <sys/types.h>
@@
-81,14
+84,10
@@
int main(int argc, char **argv) {
fd_set fds;
struct timeval tv;
static const struct addrinfo pref = {
fd_set fds;
struct timeval tv;
static const struct addrinfo pref = {
- 0, /* ai_flags */
- AF_UNSPEC, /* ai_family */
- SOCK_DGRAM, /* ai_socktype */
- IPPROTO_UDP, /* ai_protocol */
- 0,
- 0,
- 0,
- 0
+ .ai_flags = 0,
+ .ai_family = AF_UNSPEC,
+ .ai_socktype = SOCK_DGRAM,
+ .ai_protocol = IPPROTO_UDP,
};
set_progname(argv);
};
set_progname(argv);