zoukankan      html  css  js  c++  java
  • lwip Packet buffers (PBUF) API 操作 集合

    struct pbuf *  pbuf_alloc (pbuf_layer layer, u16_t length, pbuf_type type) 
      
    struct pbuf *  pbuf_alloc_reference (void *payload, u16_t length, pbuf_type type) 
      
    struct pbuf *  pbuf_alloced_custom (pbuf_layer l, u16_t length, pbuf_type type, struct pbuf_custom *p, void *payload_mem, u16_t payload_mem_len) 
      
    void  pbuf_realloc (struct pbuf *p, u16_t new_len) 
      
    u8_t  pbuf_free (struct pbuf *p) 
      
    void  pbuf_ref (struct pbuf *p) 
      
    void  pbuf_cat (struct pbuf *h, struct pbuf *t) 
      
    void  pbuf_chain (struct pbuf *h, struct pbuf *t) 
      
    err_t  pbuf_copy (struct pbuf *p_to, const struct pbuf *p_from) 
      
    u16_t  pbuf_copy_partial (const struct pbuf *buf, void *dataptr, u16_t len, u16_t offset) 
      
    void *  pbuf_get_contiguous (const struct pbuf *p, void *buffer, size_t bufsize, u16_t len, u16_t offset) 
      
    struct pbuf *  pbuf_skip (struct pbuf *in, u16_t in_offset, u16_t *out_offset) 
      
    err_t  pbuf_take (struct pbuf *buf, const void *dataptr, u16_t len) 
      
    err_t  pbuf_take_at (struct pbuf *buf, const void *dataptr, u16_t len, u16_t offset) 
      
    struct pbuf *  pbuf_coalesce (struct pbuf *p, pbuf_layer layer) 
      
    struct pbuf *  pbuf_clone (pbuf_layer layer, pbuf_type type, struct pbuf *p) 
      
    u8_t  pbuf_get_at (const struct pbuf *p, u16_t offset) 
      
    int  pbuf_try_get_at (const struct pbuf *p, u16_t offset) 
      
    void  pbuf_put_at (struct pbuf *p, u16_t offset, u8_t data) 
      
    u16_t  pbuf_memcmp (const struct pbuf *p, u16_t offset, const void *s2, u16_t n) 
      
    u16_t  pbuf_memfind (const struct pbuf *p, const void *mem, u16_t mem_len, u16_t start_offset) 

    官网介绍:http://lwip.nongnu.org/2_1_x/group__pbuf.html

  • 相关阅读:
    事务
    约束条件(CONSTRAINTS)
    算术运算符
    数据查询、修改指令
    iview-admin使用webpack打包之后发布报Uncaught SyntaxError: Unexpected token <
    使用localhost可以访问,但使用本地ip+端口号无法访问
    datatables里面的search怎么去掉?
    删除操作之后的确定或取消弹出框?
    jquery实现上传图片本地预览效果
    怎么改变title属性的样式?
  • 原文地址:https://www.cnblogs.com/suozhang/p/10207170.html
Copyright © 2011-2022 走看看