请教一个用perl发送C语言结构体数据的问题

请教一个用perl发送C语言结构体数据的问题

看了Perl 语言入门(第四版) , 最近在用perl写一些小工具.
在用应网络时发现没额办法发送类似C语言数据结构的东东如:
static DPF_t default_DPF = {
     {
        10,
      4,
      {0},
   },
     0  
};

哪位知道这样的问题怎么处理?谢谢!
perldoc perlpacktut
谢谢 flw!
正在看
NAME
    perlpacktut - tutorial on "pack" and "unpack"

DESCRIPTION
    "pack" and "unpack" are two functions for transforming data according to
    a user-defined template, between the guarded way Perl stores values and
    some well-defined representation as might be required in the environment
    of a Perl program. Unfortunately, they're also two of the most
    misunderstood and most often overlooked functions that Perl provides.
    This tutorial will demystify them for you.