M common/CMakeLists.txt +2 -2
@@ 1,5 1,5 @@
#
-# Copyright (c) 2020-2022 Josef 'Jeff' Sipek <jeffpc@josefsipek.net>
+# Copyright (c) 2020-2023 Josef 'Jeff' Sipek <jeffpc@josefsipek.net>
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
@@ 40,8 40,8 @@ add_library(hlogcommon SHARED
lcd.c
maidenhead.c
qso.c
+ qso-pack.c
qso_line.c
- qso_serde_hlq.c
sig.c
time.c
url.c
M common/hlq.h +2 -2
@@ 1,5 1,5 @@
/*
- * Copyright (c) 2020-2021 Josef 'Jeff' Sipek <jeffpc@josefsipek.net>
+ * Copyright (c) 2020-2021,2023 Josef 'Jeff' Sipek <jeffpc@josefsipek.net>
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
@@ 27,7 27,7 @@
#include <jeffpc/uuid.h>
#include <jeffpc/val.h>
-#include <hlog/qso-serde.h>
+#include <hlog/qso-pack.h>
extern int hlq_append_header(struct buffer *buf, const struct xuuid *uuid);
M common/include/hlog/qso-serde.h => common/include/hlog/qso-pack.h +0 -0
M common/index.c +2 -2
@@ 1,5 1,5 @@
/*
- * Copyright (c) 2020-2022 Josef 'Jeff' Sipek <jeffpc@josefsipek.net>
+ * Copyright (c) 2020-2023 Josef 'Jeff' Sipek <jeffpc@josefsipek.net>
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
@@ 30,7 30,7 @@
#include <hlog/time.h>
#include <hlog/bands.h>
#include <hlog/index.h>
-#include <hlog/qso-serde.h>
+#include <hlog/qso-pack.h>
struct call_entry;
M common/qso_serde_hlq.c => common/qso-pack.c +0 -0
M common/qso_impl.h +2 -2
@@ 1,5 1,5 @@
/*
- * Copyright (c) 2020-2021 Josef 'Jeff' Sipek <jeffpc@josefsipek.net>
+ * Copyright (c) 2020-2021,2023 Josef 'Jeff' Sipek <jeffpc@josefsipek.net>
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
@@ 24,7 24,7 @@
#define __QSO_IMPL_H
#include <hlog/qso.h>
-#include <hlog/qso-serde.h>
+#include <hlog/qso-pack.h>
/*
* Pack a QSO
M daemon/index.h +2 -2
@@ 1,5 1,5 @@
/*
- * Copyright (c) 2020-2021 Josef 'Jeff' Sipek <jeffpc@josefsipek.net>
+ * Copyright (c) 2020-2021,2023 Josef 'Jeff' Sipek <jeffpc@josefsipek.net>
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
@@ 24,7 24,7 @@
#define __INDEX_H
#include <hlog/qso.h>
-#include <hlog/qso-serde.h>
+#include <hlog/qso-pack.h>
struct index_stat {
uint64_t band;
M edit-qso/edit-qso.c +2 -2
@@ 1,5 1,5 @@
/*
- * Copyright (c) 2021-2022 Josef 'Jeff' Sipek <jeffpc@josefsipek.net>
+ * Copyright (c) 2021-2023 Josef 'Jeff' Sipek <jeffpc@josefsipek.net>
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
@@ 28,7 28,7 @@
#include <hlog/version.h>
#include <hlog/qso.h>
-#include <hlog/qso-serde.h>
+#include <hlog/qso-pack.h>
#include <hlog/index.h>
#include <hlog/util.h>