Navigation



Ignore:
Timestamp:
Apr 15, 2013, 4:17:07 PM (11 years ago)
Author:
Sebastien Decugis <sdecugis@freediameter.net>
Branch:
default
Phase:
public
Message:

Fix a number of errors and warnings introduced/highlighted by recent commits

File:
1 edited

Legend:

Unmodified
Added
Removed
  • extensions/app_diameap/plugins/eap_tls/eap_tls.c

    r825 r1027  
    4646int eap_tls_getTimeout(struct eap_state_machine *smd, int * timeout);
    4747boolean eap_tls_check(struct eap_state_machine *smd,
    48                 struct eap_packet eapRespData);
     48                struct eap_packet *eapRespData);
    4949int eap_tls_process(struct eap_state_machine *smd,
    50                 struct eap_packet eapRespData);
     50                struct eap_packet *eapRespData);
    5151boolean eap_tls_isDone(struct eap_state_machine *smd);
    5252int eap_tls_getKey(struct eap_state_machine *smd, u8** msk, int * msklen, u8** emsk, int * emsklen);
     
    149149
    150150boolean eap_tls_check(struct eap_state_machine *smd,
    151                 struct eap_packet eapRespData)
     151                struct eap_packet *eapRespData)
    152152{
    153153        eap_type type;
     
    165165
    166166int eap_tls_process(struct eap_state_machine *smd,
    167                 struct eap_packet eapRespData)
     167                struct eap_packet *eapRespData)
    168168{
    169169        struct tls_data * data;
     
    353353
    354354// parse EAP TLS msg
    355 int diameap_eap_tls_parse(struct tls_msg * tlsmsg, struct eap_packet eapPacket)
     355int diameap_eap_tls_parse(struct tls_msg * tlsmsg, struct eap_packet *eapPacket)
    356356{
    357357        u8 *datatls;
Note: See TracChangeset for help on using the changeset viewer.