为指向char的指针分配数字

时间:2015-01-08 23:48:47

标签: c udp u-boot

我在u-boot的netconsole中编写了对udp协议的修改(该板是xilinx的zedboard)。

我需要将数据包编号。我找到了负责发送的功能,我想首先在每个数据包的开头添加一个数字。它工作得很好,只要我用双引号传递值 - " @"。

当我想传递一个数字时(或者即使我使用单个字符 - ' @'而不是" @")当我收到时,我会得到完全随机的值包。

static void nc_send_packet(const char *buf, int len)
{
    struct eth_device *eth;
    int inited = 0;
    uchar *pkt;
    uchar *ether;
    IPaddr_t ip;

    uchar *new_buf=malloc((len+1)*(sizeof(uchar))); //TN
    uchar *prefix="@"; //<-------------------------------this line TN
    memcpy(new_buf, prefix, 1); //TN
    memcpy((new_buf+1), buf, len);    //TN
    len+=1; //TN

    debug_cond(DEBUG_DEV_PKT, "output: \"%*.*s\"\n", len, len, buf);

    eth = eth_get_dev();

    if (eth == NULL)
        return;

    if (!memcmp(nc_ether, NetEtherNullAddr, 6)) {
        if (eth->state == ETH_STATE_ACTIVE)
            return; /* inside net loop */

        output_packet = new_buf;  //TN was output_packet = buf;
        output_packet_len = len;

        NetLoop(NETCONS); /* wait for arp reply and send packet */

        output_packet_len = 0;
        free(new_buf); //TN

        return;
    }

    if (eth->state != ETH_STATE_ACTIVE) {
        if (eth_is_on_demand_init()) {
            if (eth_init(gd->bd) < 0)
                free(new_buf);  //TN
            return;
            eth_set_last_protocol(NETCONS);
        } else
            eth_init_state_only(gd->bd);

        inited = 1;
    }
    pkt = (uchar *)NetTxPacket + NetEthHdrSize() + IP_UDP_HDR_SIZE;
    memcpy(pkt, new_buf, len);  //TN was memcpy(pkt, buf, len); 
    ether = nc_ether;
    ip = nc_ip;
    NetSendUDPPacket(ether, ip, nc_out_port, nc_in_port, len);

    free(new_buf);//TN

    if (inited) {
        if (eth_is_on_demand_init())
            eth_halt();
        else
            eth_halt_state_only();
    }
}

我添加了带有// TN的行。我需要这样的东西:

uchar * prefix = 0x40;uchar * prefix = 64;更奇怪的是(至少对我而言)就是这样  uchar * prefix = '@';也不起作用。我尝试过投射它,但uchar * prefix = (uchar)0x40;uchar * prefix = (uchar)'@';都不起作用。

我也想知道,如果有可能有一个更长的字段,那么我有2个字节的数据包号而不是一个。

1 个答案:

答案 0 :(得分:3)

这里的问题是您的数据类型。

您的变量uchar * prefix是类型指针指向char。

文字"@"是一个字符串,表示为指向char的指针。

文字'@'是一个角色。

当你说uchar * prefix = "@"时,你正在指定指针指针,一切都按预期发生。当您说uchar * prefix = '@'时,您隐式将该ASCII字符(0x40)的数值转换为指针。当您取消引用该指针时,您将获得在内存地址0x40处发生的任何事情,这可能不是您尝试做的事情。如果您在编译时打开了所有警告,则编译器应标记隐式转换。

您有两种可能的解决方案。要么使用字符串文字而不是字符,要么将prefix改为类型char