search for: expiration_time

Displaying 19 results from an estimated 19 matches for "expiration_time".

2015 Jun 18
1
error trying to get PJSIP working
...:03] DEBUG[5116] res_config_odbc.c: Parameter 1 ('id LIKE') = '812;@%' [Jun 15 16:20:03] DEBUG[5116] res_odbc.c: odbc_release_obj2(0x7f3f1c4815d8) called (obj->txf = (nil)) [Jun 15 16:20:03] DEBUG[5116] res_config_odbc.c: Skip: 0; SQL: INSERT INTO ps_contacts (id, outbound_proxy, expiration_time, path, qualify_frequency, user_agent, uri) VALUES (?, ?, ?, ?, ?, ?, ?) [Jun 15 16:20:03] DEBUG[5116] res_config_odbc.c: Parameter 1 ('id') = '812;@sip:812 at 10.1.80.112:5062' [Jun 15 16:20:03] DEBUG[5116] res_config_odbc.c: Parameter 2 ('outbound_proxy') = '' [Jun...
2016 Sep 12
4
Mysql PJSIP realtime > 13.10?
...WARNING[24498]: res_config_mysql.c:1162 require_mysql: Realtime table general at ps_contacts: column 'qualify_timeout' cannot be type 'int(10)' (need char) [Sep 12 14:42:35] WARNING[24498]: res_config_mysql.c:1162 require_mysql: Realtime table general at ps_contacts: column 'expiration_time' cannot be type 'bigint(20)' (need char) [Sep 12 14:42:35] WARNING[24498]: res_config_mysql.c:1246 require_mysql: Possibly unsupported column type 'enum('yes','no')' on column 'authenticate_qualify' [Sep 12 14:42:35] WARNING[24498]: res_config_mysql.c:...
2016 Sep 02
2
Asterisk 13.11 realtime problem registering phones
...6] WARNING[2098]: res_config_mysql.c:1162 require_mysql: Realtime table general at ps_contacts: column 'qualify_timeout' cannot be type 'int(10)' (need char) [Sep 2 15:38:46] WARNING[2098]: res_config_mysql.c:1162 require_mysql: Realtime table general at ps_contacts: column 'expiration_time' cannot be type 'bigint(20)' (need char) [Sep 2 15:38:46] WARNING[2098]: res_config_mysql.c:1246 require_mysql: Possibly unsupported column type 'enum('yes','no')' on column 'authenticate_qualify' [Sep 2 15:38:46] WARNING[2098]: res_config_mysql.c:11...
2004 Apr 19
3
[PATCH] time limit
...@@ -759,6 +760,26 @@ select(0, NULL, NULL, NULL, &tv); } +/** + When --timelimit is used, compare rsync_start_time and the current time and + return 1 when the timelimit has been reached. + **/ +static int has_timelimit_expired() +{ + struct timeval tv; + time_t start_time = 0; + time_t expiration_time = 0; + + assert(timelimit > 0); + + start_time = get_rsync_start_time(); + assert( start_time > 0); + + gettimeofday(&tv, NULL); + expiration_time = start_time + (timelimit * 60); + + return ( tv.tv_sec > expiration_time ) ? 1 : 0; +} /** * Write len bytes to the file descriptor @...
2004 Apr 22
2
[PATCH] --timelimit and --stopat
...@@ -759,6 +760,58 @@ select(0, NULL, NULL, NULL, &tv); } +/** + When --timelimit is used, compare rsync_start_time and the current time and + return 1 when the timelimit has been reached. + **/ +static int has_timelimit_expired() +{ + struct timeval tv; + time_t start_time = 0; + time_t expiration_time = 0; + + assert(timelimit > 0); + + start_time = get_rsync_start_time(); + assert( start_time > 0); + + gettimeofday(&tv, NULL); + expiration_time = start_time + (timelimit * 60); + + return ( tv.tv_sec > expiration_time ) ? 1 : 0; +} + +/** + When --stopat is used, compare current st...
2016 Sep 12
3
Mysql PJSIP realtime > 13.10?
....c:1162 require_mysql: >> Realtime table general at ps_contacts: column 'qualify_timeout' cannot be >> type 'int(10)' (need char) >> [Sep 12 14:42:35] WARNING[24498]: res_config_mysql.c:1162 require_mysql: >> Realtime table general at ps_contacts: column 'expiration_time' cannot be >> type 'bigint(20)' (need char) >> [Sep 12 14:42:35] WARNING[24498]: res_config_mysql.c:1246 require_mysql: >> Possibly unsupported column type 'enum('yes','no')' on column >> 'authenticate_qualify' >> [Sep 12 14:...
2015 Mar 12
3
RequireSecuritySignature=1 and public share with guest not working
...ase 0) info0: struct smbXsrv_session_global0 session_global_id : 0xfeda2f8e (4275711886) session_wire_id : 0x00000000feda2f8e (4275711886) creation_time : Thu Mar 12 03:44:01 PM 2015 CET expiration_time : Thu Jan 1 01:00:00 AM 1970 CET auth_session_info_seqnum : 0x00000001 (1) auth_session_info: struct auth_session_info security_token: struct security_token num_sids : 0...
2015 Mar 13
0
RequireSecuritySignature=1 and public share with guest not working
...: struct smbXsrv_session_global0 > session_global_id : 0xfeda2f8e (4275711886) > session_wire_id : >0x00000000feda2f8e (4275711886) > creation_time : Thu Mar 12 >03:44:01 PM 2015 CET > expiration_time : Thu Jan 1 >01:00:00 AM 1970 CET > auth_session_info_seqnum : 0x00000001 (1) > auth_session_info: struct auth_session_info > security_token: struct security_token > num_sid...
2016 Sep 12
2
Mysql PJSIP realtime > 13.10?
...mysql: >>> Realtime table general at ps_contacts: column 'qualify_timeout' cannot be >>> type 'int(10)' (need char) >>> [Sep 12 14:42:35] WARNING[24498]: res_config_mysql.c:1162 require_mysql: >>> Realtime table general at ps_contacts: column 'expiration_time' cannot be >>> type 'bigint(20)' (need char) >>> [Sep 12 14:42:35] WARNING[24498]: res_config_mysql.c:1246 require_mysql: >>> Possibly unsupported column type 'enum('yes','no')' on column >>> 'authenticate_qualify' >...
2017 Sep 15
3
Realtime pjsip issues
On Fri, Sep 15, 2017, at 10:37 AM, Bryant Zimmerman wrote: > Joshua > > That is the interesting part of it. We took our configs and database > tables from our working 13.12.2 deployments and tried to use them with > our > new 13.17.1 deployments and we are having issues where the tables are not > working. On the new server asterisk keeps saying it can't find the
2020 Aug 26
0
accessing foreign AD users to NT domain
...sion_global0 db_rec : * session_global_id : 0x0d54b3be (223654846) session_wire_id : 0x000000000d54b3be (223654846) creation_time : Wed Aug 26 09:53:02 AM 2020 CEST expiration_time : Thu Jan 1 01:00:00 AM 1970 CET auth_time : NTTIME(0) auth_session_info_seqnum : 0x00000000 (0) auth_session_info : NULL connection_dialect : 0x0210 (528) signing_flags...
2020 Aug 25
4
accessing foreign AD users to NT domain
Mandi! Rowland penny via samba In chel di` si favelave... > Even though your users may have the same username in AD as in the NT4-style > domain, they are different users, so a few thoughts. You have 'map to guest > = bad user', so I take it you must have 'guest ok = yes' set in the shares > (you haven't shown us the shares), so try changing 'bad user' to
2015 May 20
2
CHANNEL(aor) CHANNEL(contact) return nothing
...;, contact=<${CHANNEL(contact)}>) same => n,Set(aor=${CHANNEL(name):$[LEN(CHANNEL(channeltype)) +1]:-9}) same => n,Set(contact=${PJSIP_AOR(${aor},contact)}) same => n,NoOp(URI=<${PJSIP_CONTACT(${contact},uri)}>) same => n,NoOp(Expiration time= <${PJSIP_CONTACT(${contact},expiration_time)}>) same => n,NoOp(Qualify frequency= <${PJSIP_CONTACT(${contact},qualify_frequency)}>) same => n,NoOp(Outbound proxy= <${PJSIP_CONTACT(${contact},outbound_proxy)}>) same => n,NoOp(Path=<${PJSIP_CONTACT(${contact},path)}>) same => n,NoOp(User-Agent=<${PJSIP_CON...
2020 Mar 19
2
Computer in Samba 4.3.11 domain - logon server unavailable
...ession_global0 db_rec : * session_global_id : 0xb266fec4 (2993094340) session_wire_id : 0x00000000b266fec4 (2993094340) creation_time : Thu Mar 19 18:07:34 2020 CET expiration_time : Thu Jan 1 01:00:00 1970 CET auth_time : Thu Mar 19 18:07:34 2020 CET auth_session_info_seqnum : 0x00000001 (1) auth_session_info : * auth_session_info: struct auth_session_info...
2020 Nov 19
0
PANIC outstanding aio + key does not exist
..._global0 db_rec : NULL session_global_id : 0x65eb71f1 (1709928945) session_wire_id : 0x0000000065eb71f1 (1709928945) creation_time : Thu Nov 19 05:35:46 PM 2020 UTC expiration_time : Thu Sep 14 02:48:05 AM 30828 UTC auth_time : Thu Nov 19 05:35:47 PM 2020 UTC auth_session_info_seqnum : 0x00000001 (1) auth_session_info : * auth_session_info: struct auth_session_info...
2020 Mar 08
2
Trouble resolving some group membership after upgrade from 4.8 to 4.10
...rec : NULL session_global_id : 0xe752a8c6 (3880954054) session_wire_id : 0x00000000e752a8c6 (3880954054) creation_time : Mon Mar 9 10:30:42 2020 NZDT expiration_time : Thu Jan 1 12:00:00 1970 NZST auth_time : Mon Mar 9 10:30:42 2020 NZDT auth_session_info_seqnum : 0x00000001 (1) auth_session_info : * auth_session_info: str...
2010 Apr 09
4
Patch: support URLAUTH, BURL, CATENATE
...parts->section = t_strdup_until(url, p); + url = p; + } + + // ... [";EXPIRE=" date-time] ... + if (strncasecmp(url, ";EXPIRE=", 8) == 0) { + url += 8; + p = strchr(url, ';'); + if (p == NULL) + return; + parts->expiration = t_strdup_until(url, p); + // set expiration_time after decoding + url = p; + } + + // ... [";URLAUTH=" access] ... + if (strncasecmp(url, ";URLAUTH=", 9) != 0) + return; + url += 9; + p = strchr(url, ':'); + if (p == NULL) { + parts->access = url; + return; + } + parts->access = t_strdup_until(url, p); + url...
2010 Nov 01
24
[PATCH 01/10] staging: hv: Convert camel cased struct fields in channel_mgmt.h to lower cases
From: Haiyang Zhang <haiyangz at microsoft.com> Convert camel cased struct fields in channel_mgmt.h to lower cases Signed-off-by: Haiyang Zhang <haiyangz at microsoft.com> Signed-off-by: Hank Janssen <hjanssen at microsoft.com> --- drivers/staging/hv/channel.c | 302 ++++++++++++++++++------------------ drivers/staging/hv/channel_mgmt.c | 186 ++++++++++++------------
2010 Nov 01
24
[PATCH 01/10] staging: hv: Convert camel cased struct fields in channel_mgmt.h to lower cases
From: Haiyang Zhang <haiyangz at microsoft.com> Convert camel cased struct fields in channel_mgmt.h to lower cases Signed-off-by: Haiyang Zhang <haiyangz at microsoft.com> Signed-off-by: Hank Janssen <hjanssen at microsoft.com> --- drivers/staging/hv/channel.c | 302 ++++++++++++++++++------------------ drivers/staging/hv/channel_mgmt.c | 186 ++++++++++++------------