diff options
author | Jonas Gunz <himself@jonasgunz.de> | 2019-11-02 16:38:44 +0100 |
---|---|---|
committer | Jonas Gunz <himself@jonasgunz.de> | 2019-11-02 16:38:44 +0100 |
commit | 73ede020c76126e81325fcd8d3e186132db21198 (patch) | |
tree | 24850bdbecced0aff461000f9fc545c8576d1e72 /src/dns.c | |
parent | 0ef067ee3c394a296a8e091e8b365e29036df085 (diff) | |
download | dns-73ede020c76126e81325fcd8d3e186132db21198.tar.gz |
Added fqdn to qname
Diffstat (limited to 'src/dns.c')
-rw-r--r-- | src/dns.c | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/src/dns.c b/src/dns.c new file mode 100644 index 0000000..5045e2a --- /dev/null +++ b/src/dns.c @@ -0,0 +1,40 @@ +#include "dns.h" + +int fqdn_to_qname( char* _source, int _sourcelen, char* _sink ,int _sinklen ) +{ + // TODO Opttimize + int i = 0; + int lastdot = 0; + + if (_sourcelen < 1 || _sinklen < 1) + return -1; + + _sink[0] = ' '; //Set to known value + + while ( (i < _sourcelen) && (i < (_sinklen - 1))) { //Copy offset 1 + if(! _source[i]) + break; + _sink[i+1] = _source[i]; + i++; + } + + if( _source[i] ) // _source not terminated + return -1; + + for (int o = 0; o < i; o++) { + if( _sink[o] == '.') { + _sink[lastdot] = o - lastdot - 1; + lastdot = o; + } + } + + _sink[lastdot] = i - lastdot; + _sink[i + 1] = 0; + + return i+2; +} + +int qname_to_fqdn( char* _source, int _sourcelen, char* _sink, int _sinklen ) +{ + return -1; +} |