Improving gnutls
FossilOrigin-Name: 7db736ebb872c7c4ffcca6f353858c5f71db6a44404877e6b2ee3d0577794ac6
This commit is contained in:
@ -212,9 +212,9 @@ ssl_cert="../../ssl/certs/ac-cisco.pem"
|
||||
dbg += pkt # CAPWAP packets both sent and received
|
||||
dbg += pkt_dmp # Hex dump CAPWAP packets.
|
||||
dbg += pkt_err # Show messages about malformed packets when detected
|
||||
# dbg += dtls # Messages concerning DTLS
|
||||
# dbg += -dtls_detail # DTLS in more detail
|
||||
# dbg += dtls_bio # DTLS BIO operations
|
||||
dbg += dtls # Messages concerning DTLS
|
||||
dbg += -dtls_detail # DTLS in more detail
|
||||
dbg += dtls_bio # DTLS BIO operations
|
||||
# dbg += dtls_bio_dmp # HeXy dump data in BIO operations
|
||||
dbg += warn # misc warnings
|
||||
dbg += mod # Debugs specific to mod
|
||||
|
@ -15,7 +15,7 @@ ac-descriptor/hardware/vendor:Dword:1234567
|
||||
ac-descriptor/hardware/version:Bstr16:"1.7.3"
|
||||
ac-name:Bstr16:"TubesAC"
|
||||
|
||||
capwap-control-ip-address/address.0:IPAddress:172.16.66.229
|
||||
capwap-control-ip-address/address.0:IPAddress:192.168.0.14
|
||||
#capwap-control-ip-address/address.1:IPAddress:2a00:c1a0:48c6:4a00:9965:1b6e:aca3:1398
|
||||
capwap-control-ip-address/wtps.0:Word:0
|
||||
#capwap-control-ip-address/wtps.1:Word:11
|
||||
@ -23,8 +23,9 @@ capwap-control-ip-address/wtps.0:Word:0
|
||||
|
||||
capwap/ssl-keyfile:Str:"../../ssl/certs/ac-cisco.key"
|
||||
capwap/ssl-certfile:Str:"../../ssl/certs/ac-cisco.pem"
|
||||
capwap/ssl-cipher:Str:NORMAL
|
||||
capwap/ssl-cipher:Str:+DHE-RSA:+AES-256-CBC:+AES-128-CBC:+SHA1
|
||||
#capwap/ssl-psk:Str:"HalloWelt"
|
||||
|
||||
|
||||
actube/listen::192.168.0.1
|
||||
|
||||
|
@ -133,6 +133,7 @@ int xprocess_message(struct conn *conn, uint8_t * rawmsg, int rawlen,
|
||||
|
||||
static int wtpman_establish_dtls(void *arg)
|
||||
{
|
||||
char cipherstr[512];
|
||||
int dtls_ok;
|
||||
char sock_buf[SOCK_ADDR_BUFSIZE];
|
||||
struct wtpman *wtpman = (struct wtpman *) arg;
|
||||
@ -175,9 +176,9 @@ static int wtpman_establish_dtls(void *arg)
|
||||
return 0;
|
||||
}
|
||||
|
||||
cw_dbg(DBG_DTLS, "DTLS session established with %s, cipher=%s",
|
||||
sock_addr2str_p(&wtpman->conn->addr,sock_buf), dtls_get_cipher(wtpman->conn));
|
||||
|
||||
cw_dbg(DBG_DTLS, "DTLS session established with %s, %s",
|
||||
sock_addr2str_p(&wtpman->conn->addr,sock_buf), dtls_get_cipher(wtpman->conn,cipherstr));
|
||||
exit(0);
|
||||
return 1;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user