aboutsummaryrefslogtreecommitdiff
path: root/src/dns.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/dns.c')
-rw-r--r--src/dns.c27
1 files changed, 24 insertions, 3 deletions
diff --git a/src/dns.c b/src/dns.c
index 54ad504..7c94c8a 100644
--- a/src/dns.c
+++ b/src/dns.c
@@ -2,7 +2,6 @@
int fqdn_to_qname( char* _source, int _sourcelen, char* _sink ,int _sinklen )
{
- // TODO Opttimize
int i;
int lastdot = 0;
@@ -17,7 +16,7 @@ int fqdn_to_qname( char* _source, int _sourcelen, char* _sink ,int _sinklen )
_sink[i+1] = _source[i];
}
- if( _source[i] ) // _source not terminated
+ if( _source[i] ) // _source not terminated, thus no valid string
return -1;
for (int o = 0; o < i; o++) {
@@ -36,5 +35,27 @@ int fqdn_to_qname( char* _source, int _sourcelen, char* _sink ,int _sinklen )
int qname_to_fqdn( char* _source, int _sourcelen, char* _sink, int _sinklen )
{
- return -1;
+ if ( !_sourcelen || !_sinklen ) {
+ return -1;
+ }
+
+ unsigned int next_dot = _source[0] + 1;
+ int i = 1;
+ for(i = 1; i < _sourcelen; i++) {
+ if( i > _sinklen){ //Output too small. Not >= bc sink[i-1] is used
+ return -1;
+ }
+ if ( !_source[i] ) {
+ _sink[i-1] = '\0';
+ break;
+ } else if (i == next_dot) {
+ _sink[i-1]='.';
+ next_dot = _source[i] + i + 1;
+ } else {
+ _sink[i-1] = _source[i];
+ }
+
+ }
+
+ return i-1;
}