Really move rig_make_md5 to rig.h

https://github.com/Hamlib/Hamlib/issues/813
pull/1022/head
Mike Black W9MDB 2022-04-16 06:48:41 -05:00
rodzic 4055810dc8
commit 863f50f2fb
4 zmienionych plików z 6 dodań i 5 usunięć

6
NEWS
Wyświetl plik

@ -12,8 +12,10 @@ Version 5.x -- future
* rot_get_conf deprecated and replaced by rot_get_conf2
Version 4.5
* 2022-03-XX
* Add password capability to rigctld via -A switch. rigctl uses \password, hamlib uses rig_set_password
* 2022-04-XX
* Add password capability to rigctld via -A switch.
rigctld -A will produce a consistent shared key for any specific password that can used in \password and rig_set_password
TBD The shared key can also be placed in .hamlib_settings
* Asynchronous rig data output handling to support transceive and spectrum data. Mikael, OH3BHX
* See new set_conf option async for some Icom rigs
* Multicast UDP packet output for asynchronous data. Mikael, OH3BHX

Wyświetl plik

@ -3395,6 +3395,8 @@ int locator2longlat HAMLIB_PARAMS((double *longitude,
double *latitude,
const char *locator));
extern HAMLIB_EXPORT(char*) rig_make_md5(char *pass);
//! @endcond

Wyświetl plik

@ -29,8 +29,6 @@
#include <string.h>
#include "hamlib/rig.h"
extern HAMLIB_EXPORT(char*) rig_make_md5(char *pass);
typedef unsigned long MD5_u32plus;
typedef struct {

Wyświetl plik

@ -75,7 +75,6 @@
#include "serial.h"
#include "sprintflst.h"
#include "network.h"
#include "md5.h"
#include "rigctl_parse.h"