search for: msg_id

Displaying 20 results from an estimated 74 matches for "msg_id".

Did you mean: msg_ids
2009 May 27
1
PHP AGI Problems
...class.php'); require_once('AGI.class.php'); $database = new database(); $AGI = new AGI(); $database->selectdb("switchboard"); while ($error_count < 5 && !$msg_result) { $result = $AGI->send_cmd("GET DATA /bswitch/menu/enter-msg-id 3000 4"); $msg_id = $result[result]; if ($msg_id < 1000){ echo "\ndebug: msgid < 1000, invalid ($msg_id)!\n"; //var_dump($msg_id); $error_count += 1; $AGI->send_cmd("EXEC PLAYBACK /bswitch/menu/invalid-msg-id"); } else{ echo "\ndebug:...
2008 Aug 06
1
[2.6 patch] ocfs2/cluster/tcp.c: make some functions static
...king *nst) { do_gettimeofday(&nst->st_status_time); } -void o2net_set_nst_sock_container(struct o2net_send_tracking *nst, +static void o2net_set_nst_sock_container(struct o2net_send_tracking *nst, struct o2net_sock_container *sc) { nst->st_sc = sc; } -void o2net_set_nst_msg_id(struct o2net_send_tracking *nst, u32 msg_id) +static void o2net_set_nst_msg_id(struct o2net_send_tracking *nst, u32 msg_id) { nst->st_id = msg_id; } + +#else /* CONFIG_DEBUG_FS */ + +static inline void o2net_init_nst(struct o2net_send_tracking *nst, u32 msgtype, + u32 msgkey, struct ta...
2006 May 16
3
sparklines
I am fairly new to R so I don;t know much about manipulating it yet. I would like to make some sparklines <http://www.edwardtufte.com/ bboard/q-and-a-fetch-msg?msg_id=0001OR&topic_id=1> using R. I have th pre-compiled R for MacOS on intel. Any help would be greatly appreciated. Thanks Robert
2008 Aug 01
1
[git patches] Ocfs2 and Configfs fixes
The only non-fix here is Joel's new configfs convenience macros, but nobody is using them yet, so I think the patch is safe. By the way, these patches (as usual) are all rebased on top of your latest tree. I think that since the vast majority of ocfs2 and configfs patches are self-contained and within a small area of the kernel that this should probably be fine. If you feel otherwise however,
2016 Apr 06
2
[help]enotify "mail to" run fine edit via managesieve 0.4.4 complied failed
...riables"]; if header :matches "Subject" "*" { set "Subject" "${1}"; } if header :matches "From" "*" { set "From" "${1}"; } if header :matches "Message-ID" "*" { set "msg_id" "${1}"; } if header :matches "To" "*" { set "To" "${1}"; } if header :matches "Date" "*" { set "Date" "${1}"; } notify "mailto:wuweiwwd at tom.com"; OK "Getscript complete...
2014 May 29
1
Voice mail with ODBC
...06]: app_voicemail.c:4086 insert_data_cb: SQL Direct Execute failed! [2014-05-28 14:55:13] WARNING[12260][C-00000006]: app_voicemail.c:4202 store_file: SQL Execute error! [INSERT INTO voicemessages (dir,msgnum,recording,context,macrocontext,callerid,origtime,duration,mailboxuser,mailboxcontext,flag,msg_id) VALUES (?,?,?,?,?,?,?,?,?,?,?,?)] == Parsing '/var/spool/asterisk/voicemail/default/701/INBOX/msg0000.txt': Found == Parsing '/var/spool/asterisk/voicemail/default/701/INBOX/msg0000.txt': Found -- Auto fallthrough, channel 'SIP/0015-00000007' status is 'NOANSWE...
2020 Feb 07
0
[RFC PATCH v7 39/78] KVM: introspection: add the read/dispatch message function
...ST_ASSERT(hdr.size == sizeof(ec) + rpl_size, + "Invalid command reply\n"); + + if (rpl && rpl_size) + receive_data(rpl, rpl_size); + } + + return ec.err; +} + +static unsigned int new_seq(void) +{ + static unsigned int seq; + + return seq++; +} + +static void send_message(int msg_id, struct kvmi_msg_hdr *hdr, size_t size) +{ + ssize_t r; + + hdr->id = msg_id; + hdr->seq = new_seq(); + hdr->size = size - sizeof(*hdr); + + r = send(Userspace_socket, hdr, size, 0); + TEST_ASSERT(r == size, + "send() failed, sending %d, result %d, errno %d (%s)\n", + size, r,...
2005 Jan 27
2
booting erro on FC3
I''m a newbie. :) I followed the steps written by Jerone Young: http://sourceforge.net/mailarchive/message.php?msg_id=10562241 but i found an error at the 17th step: 17. mkinitrd /boot/initrd-2.6.10-xen0.img 2.6.10-xen0 it said:"No module ata_piix found for kernel 2.6.10-xen0, aborting." so I commented the line of "module /boot/initrd-2.6.10-xen0.img" in the grub.conf. My grub.conf is l...
2014 Jun 02
2
Re: libguestfs error
....783 24773 TRACE nova.openstack.common.rpc.amqp ^M 2014-06-02 08:58:23.907 24773 DEBUG nova.openstack.common.rpc.amqp [-] Making synchronous call on conductor ... multicall /opt/stack/nova/nova/openstack/common/rpc/amqp.py:553^M 2014-06-02 08:58:23.908 24773 DEBUG nova.openstack.common.rpc.amqp [-] MSG_ID is e4d4ee738c9f404592f63db7f70154fa multicall /opt/stack/nova/nova The VM is now not even spawning . Can you help regarding this? Thanks for the support.
2016 Jun 19
2
[RFC PATCH] vhost, mm: make sure that oom_reaper doesn't reap memory read by vhost
...get_user_mm(mm, x, ptr) \ > > +({ \ > > + int ___gu_err = __get_user(x, ptr); \ > > + if (!___gu_err && test_bit(MMF_UNSTABLE, &mm->flags)) \ > > test_bit is somewhat expensive. See my old mail > x86/bitops: implement __test_bit Do you have a msg_id? > I dropped it as virtio just switched to simple &/| for features, > but we might need something like this now. Is this such a hot path that something like this would make a visible difference? > > > > > + ___gu_err = -EFAULT; \ > > + ___gu_err; \ &gt...
2016 Jun 19
2
[RFC PATCH] vhost, mm: make sure that oom_reaper doesn't reap memory read by vhost
...get_user_mm(mm, x, ptr) \ > > +({ \ > > + int ___gu_err = __get_user(x, ptr); \ > > + if (!___gu_err && test_bit(MMF_UNSTABLE, &mm->flags)) \ > > test_bit is somewhat expensive. See my old mail > x86/bitops: implement __test_bit Do you have a msg_id? > I dropped it as virtio just switched to simple &/| for features, > but we might need something like this now. Is this such a hot path that something like this would make a visible difference? > > > > > + ___gu_err = -EFAULT; \ > > + ___gu_err; \ &gt...
2007 Jan 02
1
zip alternative?
...zip and have worked fine until a few days ago. The zip command shows an error like this: size limit exceeded. So I've found out an alernative : p7zip. It seems to has all the needed features: * available package (in Dag's repo) * 64 bits for size (http://sourceforge.net/forum/message.php?msg_id=3031109) * support several compression format ?What do you know about this tool? TIA. -- Jordi Espasa Clofent PGP id 0xC5ABA76A #http://pgp.mit.edu/ FSF Associate Member id 4281 #http://www.fsf.org/ -------------- next part -------------- A non-text attachment was scrubbed... Name: signature....
2014 Jun 02
2
list all emails from command line?
This is not strictly Dovecot question, but a more general IMAP one. I'm running a Dovecot server and have a user who is claiming that some email sent to him, say, on 30 May, showed up in his mailbox on 02 Jun. I've checked Postfix logs, and the message was correctly received on 30 May and passed to Dovecot. A similar issue happens every few days. This leaves me with two possibilities:
2004 Feb 13
1
PXELinux; Question regarding UNDI
I have already a running automated Deployment system using pxelinux and tftd and a 1,44 floppy image (memdisk) with ms-dos and 3-com undi drivers. The whole thing is working good, and i am not unhappy about it. But, the dos image solution has a few disadvanatages, because i cannot find a mtftp client for ms-dos to deploy a lot of system at the same time. Under linux such client exists, but i
2019 Aug 09
0
[RFC PATCH v6 04/92] kvm: introspection: add the read/dispatch message function
...; +void kvmi_msg_free(void *addr); + #endif diff --git a/virt/kvm/kvmi_msg.c b/virt/kvm/kvmi_msg.c index 4de012eafb6d..af6bc47dc031 100644 --- a/virt/kvm/kvmi_msg.c +++ b/virt/kvm/kvmi_msg.c @@ -8,6 +8,19 @@ #include <linux/net.h> #include "kvmi_int.h" +static const char *const msg_IDs[] = { +}; + +static bool is_known_message(u16 id) +{ + return id < ARRAY_SIZE(msg_IDs) && msg_IDs[id]; +} + +static const char *id2str(u16 id) +{ + return is_known_message(id) ? msg_IDs[id] : "unknown"; +} + bool kvmi_sock_get(struct kvmi *ikvm, int fd) { struct socket *so...
2005 Jun 01
1
Asterisk Google API applications - $4500 bounties available
...f my strong beliefs about how Asterisk is going to leave the "Commercial" IP-PBX vendors behind is by leveraging the open source community to write voice driven applications for Asterisk. The weather app written for asterisk@home is great example. (http://sourceforge.net/forum/message.php?msg_id=3004652 the WAF on this was worth setting up asterisk alone, she checks this every morning for NY weather). I was also hoping that the www.tellme.com <http://www.tellme.com/> and www.studio.tellme.com <http://www.studio.tellme.com/> tools would also stimulate this area. People sho...
2008 Apr 02
2
Lmtp between hosts? (postfix/dovecot/ldap)
...il to machine (a) (holds mailboxes, runs dovecot), but that stopped, machine (b) connects to port 24 on machine (a), and stays there, connected, without saying nothing (sniffed it). When I kill the connection (kill postfix on machine (a)), machine (b) complains on the log file: postfix/lmtp[704]: msg_id: to=<xx at xx.yy>, relay=machine_A[machine_A]:24, delay=223, delays=0.08/0.01/223/0, dsn=4.4.2, status=deferred (lost connection with machine_A[machine_A] while receiving the initial server greeting). -- questions -- I don't know if I'm doing things wrong (configuration error) or...
2012 Jan 05
7
Blocking countries with shorewall
I''m currently getting a huge number of (failed) attempts to access my home server at UDP port 27845. I think most if not all the attacks come from China or Korea. I see there is a list of Chinese and Korean networks at <http://www.countryipblocks.net/country-blocks/>. Is there a standard way of using such a list in shorewall? -- Timothy Murphy e-mail: gayleard /at/ eircom.net
2006 Aug 14
3
failure in do_get_write_access() at transaction.c:731: "(((jh2bh(jh))->b_state & (1UL << BH_Uptodate)) != 0)"
Hi, By running some scripts on our target system for a while, I lost all means of access to the system. It seems that the kernel is crashed with the following error message: Assertion failure in do_get_write_access() at transaction.c:731: "(((jh2bh(jh))->b_state & (1UL << BH_Uptodate)) != 0)" Oops: Exception in kernel mode, sig: 4 We are currently running Linux version
2011 Aug 05
3
Configuration for ppp0 and wlan0 (Standalone laptop - Debian Squeeze)
...nection using GNOME PPP, works great (refer to bottom of this message for ''ip addr show'' and ''ip route show'' outputs), using the following: /etc/ppp/ip-up.d/mobile: #!/bin/sh /sbin/shorewall restart fi (Refer: http://sourceforge.net/mailarchive/message.php?msg_id=19774645 ) /etc/shorewall/interfaces: #ZONE INTERFACE BROADCAST OPTIONS net ppp0 - tcpflags,logmartians,nosmurfs /etc/default/shorewall: startup=0 wait_interface="ppp0" ----------------------- What I''m wanting to do: ---------------...