Home | History | Annotate | Download | only in mDNSCore

Lines Matching defs:Time

33    memory requirements, with absolutely no uncertainty or run-time variation,
422 // expires, and has no obligation to contact the authoritative server again until that time arrives.
721 mDNSu32 refresh; // Time in seconds that a slave waits after successful replication of the database before it attempts replication again
722 mDNSu32 retry; // Time in seconds that a slave waits after an unsuccessful replication attempt before it attempts replication again
723 mDNSu32 expire; // Time in seconds that a slave holds on to old data while replication attempts remain unsuccessful
937 mDNSu32 upseconds; // Time since last NAT engine reboot, in seconds
956 mDNSu32 upseconds; // Time since last NAT engine reboot, in seconds
999 mDNSs32 ExpiryTime; // Time this mapping expires, or zero if no mapping
1001 mDNSs32 retryPortMap; // If Protocol is nonzero, time to send our next mapping packet
1012 // we'd like to get, the next time we meet an accomodating NAT gateway willing to give us one).
1015 // Again, RequestedPort retains the external port we'd like to get the next time we find ourself behind a NAT gateway.
1016 // To improve stability of port mappings, RequestedPort is updated any time we get a successful
1072 mDNSs32 lasttest; // Time we sent last bug-detection query to this server
1074 mDNSs32 penaltyTime; // amount of time this server is penalized
1199 mDNSs32 TimeRcvd; // In platform time units
1200 mDNSs32 TimeExpire; // In platform time units
1223 mDNSs32 ThisAPInterval; // In platform time units: Current interval for announce/probe
1224 mDNSs32 LastAPTime; // In platform time units: Last time we sent announcement/probe
1225 mDNSs32 LastMCTime; // Last time we multicast this record (used to guard against packet-storm attacks)
1226 mDNSInterfaceID LastMCInterface; // Interface this record was multicast on at the time LastMCTime was recorded
1231 mDNSs32 NextUpdateCredit; // Time next token is added to bucket
1240 mDNSs32 expire; // In platform time units: expiration of lease (-1 for static)
1327 mDNSs32 TimeRcvd; // In platform time units
1329 mDNSs32 NextRequiredQuery; // In platform time units
1330 mDNSs32 LastUsed; // In platform time units
1333 mDNSs32 LastUnansweredTime; // In platform time units; last time we incremented UnansweredQueries
1336 mDNSs32 MPLastUnansweredQT; // Multi-packet query handling: Last time we incremented MPUnansweredQ
1426 mDNSs32 Time;
1478 mDNSs32 deltime; // If we're planning to delete this DomainAuthInfo, the time we want it deleted
1501 #define TimeToSendThisQuestion(Q,time) (ActiveQuestion(Q) && (time) - NextQSendTime(Q) >= 0)
1516 mDNSu32 RecentAnswerPkts; // Number of answers since the last time we sent this query
1529 mDNSs32 LastQTxTime; // Last time this Q was sent on one (but not necessarily all) interfaces
1535 mDNSs32 StopTime; // Time this question should be stopped by giving them a negative answer
1578 mDNSu8 TimeoutQuestion; // Timeout this question if there is no reply in configured time
1809 mDNSs32 timenow_adjust; // Correction applied if we ever discover time went backwards
1810 mDNSs32 timenow; // The time that this particular activation of the mDNS code started
1811 mDNSs32 timenow_last; // The time the last time we ran
1814 mDNSs32 SuppressSending; // Don't send local-link mDNS packets during this time
1815 mDNSs32 NextCacheCheck; // Next time to refresh cache record before it expires
1816 mDNSs32 NextScheduledQuery; // Next time to send query in its exponential backoff sequence
1817 mDNSs32 NextScheduledProbe; // Next time to probe for new authoritative record
1818 mDNSs32 NextScheduledResponse; // Next time to send authoritative record(s) in responses
1819 mDNSs32 NextScheduledNATOp; // Next time to send NAT-traversal packets
1820 mDNSs32 NextScheduledSPS; // Next time to purge expiring Sleep Proxy records
1830 mDNSs32 AnnounceOwner; // After waking from sleep, include OWNER option in packets until this time
1832 mDNSs32 SleepLimit; // Time window to allow deregistrations, etc.,
1834 mDNSs32 NextScheduledSPRetry; // Time next sleep proxy registration action is required.
1837 mDNSs32 NextScheduledStopTime; // Next time to stop a question
1875 mDNSs32 NextSRVUpdate; // Time to perform delayed update
1908 mDNSs32 retryIntervalGetAddr; // delta between time sent and retry
1909 mDNSs32 retryGetAddr; // absolute time when we retry
1914 mDNSs32 LastNATReplyLocalTime; // Local time in ticks when most recent NAT packet was received
2109 // Call mDNS_StartQuery to initiate a query. mDNS will proceed to issue Multicast DNS query packets, and any time a response
2116 // For example, if the support code on a particular platform implements timer callbacks at interrupt time, then
2118 // code is not entered by an interrupt-time timer callback while in the middle of processing a client call.
2190 // The client can also call mDNS_StopResolveService at any time to abort the transaction.
2529 // NULL. InlineCacheRDSize is a compile-time constant, which is set by default to 68. If you need to handle records
2530 // a little larger than this and you don't want to have to implement run-time allocation and freeing, then you
2536 // Code outside the main mDNS lock should use mDNS_TimeNow(m) to get properly adjusted time
2537 // In certain cases there may be reasons why it's necessary to get the time without taking the lock first
2541 // mDNSPlatformUTC returns the time, in seconds, since Jan 1st 1970 UTC and is required for generating TSIG records
2611 // event loop. CloseConnectin may be called at any time, including in a ConnectionCallback.
2806 // and is generally left powered on all the time. Even though it is not a
2816 // happens at this time to be set to "never sleep", and as such could be
2897 #pragma mark - Compile-Time assertion checks
2901 // us, and report compile-time errors if anything is wrong. The usual way to do
2902 // this would be to use a run-time "if" statement, but then you don't find out