如何将主机名转换为DNS名称?

时间:2015-06-09 08:28:40

标签: c dns

我正在尝试制作将主机名转换为DNS名称的程序。

因此,如果我有www.google.com,我想将其转换为3www6google3com0

我尝试使用此代码,但它无法正常工作。谁能告诉我我做错了什么?

int main()
{
 unsigned char *a,niz[65536];
unsigned char host[]="www.google.ba";
a=(unsigned char*)&niz[12];
int lock = 0 , i;
    strcat((char*)host,".");

    for(i = 0 ; i < strlen((char*)host) ; i++) 
    {
        if(host[i]=='.') 
        {
            *a++ = i-lock;
            for(;lock<i;lock++) 
            {
                *a++=host[lock];
            }
            lock++; 
        }
    }
    *a++='\0';
printf("%s\n",a);
return 0;

当我尝试在终端中打印时,会显示空白区域。

1 个答案:

答案 0 :(得分:0)

而不是unsigned char使用char。使用strtok之类的工具来标记原始字符串。 sprintf将int转换为c-type字符串。

#include<string.h>
#include<stdio.h>
#include<stdlib.h>

int main()
{
   char *a,niz[65536];
   char host[]="www.google.ba";
   a=( char*)&niz[20];

   strcat(a," ");
   char * token = strtok(host,".");
   char  buffer[20];
   while( token != NULL)
   {
       int len= strlen(token);
       sprintf(buffer,"%d",len);
       strcat(a,token);
       strcat(a,buffer);

       token=strtok(NULL,".");
   }
    *a++='\0';
    printf("%s\n",a);
    return 0;
}

O / P www3google6ba2

修改

#include<string.h>
#include<stdio.h>
#include<stdlib.h>

int main()
{
   char *a,niz[65536];
   char host[]="www.google.ba";
   a=( char*)&niz[21];

   strcat(a," ");
   char * token = strtok(host,".");
   char  buffer[20];
   while( token != NULL)
   {
       int len= strlen(token);
       sprintf(buffer,"%d",len);
       strcat(a,token);
       strcat(a,buffer);

       token=strtok(NULL,".");
   }

    *a++='\0';
    int last_len=strlen(a);
     a[last_len-1]='0';
    printf("%s\n",a);
    return 0;
}

O / P www3google6ba0

修改:3 这是解决问题的提示:

#include<stdio.h>
int main()
{

  char c='0';
  printf("%d\n",c);

  c='3';
  printf("%d\n",c);

  c='3';
  printf("%d\n",c-'0');

}