Displaying 20 results from an estimated 24 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...
2025 Jan 23
1
Windows 11 24H2, Samba 4.21.3 AD DC and domain users cannot log in
...auth_audit:5@/var/log/samba/auth_audit.log
in main config... auth audit log goes still there.
One additional strange thing I did notice in that log, was, that Samba
seems to be using strange 0 datetime in logs... In data structures were
values like
creation_time : N jaan 23 08:26:52 2025 EET
expiration_time : N jaan 23 01:55:33 1975 MSK
(Default locale is et_EE locale... jaan - jan, N - Thu.)
I would assume, that this 50 years in past date is some kind of null
values.
Although, I do not think that there is actual time syncing issue.
Because I have backup script, that connects to read-only share...
2025 Jan 24
1
Windows 11 24H2, Samba 4.21.3 AD DC and domain users cannot log in
...audit.log
> in main config... auth audit log goes still there.
>
> One additional strange thing I did notice in that log, was,
> that Samba seems to be using strange 0 datetime in logs... In data
> structures were values like
> creation_time : N jaan 23 08:26:52 2025 EET
> expiration_time : N jaan 23 01:55:33 1975 MSK
> (Default locale is et_EE locale... jaan - jan, N - Thu.)
Hmm, why, if you are in Estonia, is moscow time being used ?
It might just be, if you sort that, your problems may go away.
Rowland
2025 Jan 24
1
Windows 11 24H2, Samba 4.21.3 AD DC and domain users cannot log in
On 24.01.2025 11:05, Rowland Penny via samba wrote:
> On Thu, 23 Jan 2025 16:38:08 +0200
> Virgo P?rna via samba <samba at lists.samba.org> wrote:
>> creation_time : N jaan 23 08:26:52 2025 EET
>> expiration_time : N jaan 23 01:55:33 1975 MSK
>> (Default locale is et_EE locale... jaan - jan, N - Thu.)
>
> Hmm, why, if you are in Estonia, is moscow time being used ?
> It might just be, if you sort that, your problems may go away.
>
Did you look at the year? At 1975 Estonia was under So...
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
2025 Jan 22
1
Windows 11 24H2, Samba 4.21.3 AD DC and domain users cannot log in
On 22.01.2025 16:16, Rowland Penny via samba wrote:
> On Wed, 22 Jan 2025 15:46:44 +0200
> Virgo P?rna via samba <samba at lists.samba.org> wrote:
>
>> After enabling auth_audit logging at samba, there are lot of messages
>> with status NT_STATUS_TIME_DIFFERENCE_AT_DC
>> But clock is synced and same in workstation and in server...
>>
>
> From the
2025 Jan 24
1
Windows 11 24H2, Samba 4.21.3 AD DC and domain users cannot log in
...via samba <samba at lists.samba.org> wrote:
> On 24.01.2025 11:05, Rowland Penny via samba wrote:
> > On Thu, 23 Jan 2025 16:38:08 +0200
> > Virgo P?rna via samba <samba at lists.samba.org> wrote:
> >> creation_time : N jaan 23 08:26:52 2025 EET
> >> expiration_time : N jaan 23 01:55:33 1975 MSK
> >> (Default locale is et_EE locale... jaan - jan, N - Thu.)
> >
> > Hmm, why, if you are in Estonia, is moscow time being used ?
> > It might just be, if you sort that, your problems may go away.
> >
>
> Did you look at 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...