Ignore:
Timestamp:
Feb 20, 2007 9:58:36 PM (17 years ago)
Author:
bennylp
Message:

Checked in latest changes in iceproject branch before merging in to the trunk

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/branches/iceproject/pjlib-util/include/pjlib-util/stun_server.h

    r929 r990  
    5151     * The STUN message type. 
    5252     */ 
    53     int     msg_type; 
     53    int         msg_type; 
    5454 
    5555    /**  
     
    5959     * @param msg   The STUN message. 
    6060     */ 
    61     void    (*handle_msg)(pj_stun_service *svc, const pj_stun_msg *msg); 
     61    pj_status_t (*handle_msg)(pj_stun_service *svc,  
     62                              void *handle_data, 
     63                              const pj_stun_msg *msg); 
    6264 
    6365} pj_stun_service_handler; 
     
    6870 */ 
    6971PJ_DECL(pj_status_t) pj_stun_service_create(pj_pool_t *pool, 
     72                                            const char *name, 
     73                                            unsigned options, 
    7074                                            unsigned handler_cnt, 
    7175                                            pj_stun_service_handler cb[], 
     
    8993 */ 
    9094PJ_DECL(pj_status_t) pj_stun_service_handle_msg(pj_stun_service *svc, 
     95                                                void *handle_data, 
    9196                                                const pj_stun_msg *msg); 
    9297 
Note: See TracChangeset for help on using the changeset viewer.