Hello,
not that tomorrow, Dec 14, 2022 starting after 09:00UTC (10:00Berlin),
is planned some maintenance work on kamailio.org server. It will be
unavailable from time to time, hopefully not for long time.
Affected services:
- web site
- mailing lists
- wiki site (alternative use the github repo:
https://github.com/kamailio/kamailio-wiki)
- html version of modules' documentation (text variant README is every
module folder of git clones or on github.org repository)
Short notifications will be sent when it starts and ends.
Cheers,
Daniel
--
Daniel-Constantin Mierla -- www.asipto.comwww.twitter.com/miconda -- www.linkedin.com/in/miconda
Module: kamailio
Branch: master
Commit: b7d1470c50cfdb03c6776bb9c8430c70d929e6a9
URL: https://github.com/kamailio/kamailio/commit/b7d1470c50cfdb03c6776bb9c8430c7…
Author: Daniel-Constantin Mierla <miconda(a)gmail.com>
Committer: Daniel-Constantin Mierla <miconda(a)gmail.com>
Date: 2022-12-14T09:44:30+01:00
app_ruby: added header file with per-process module api
---
Added: src/modules/app_ruby/app_ruby_papi.h
---
Diff: https://github.com/kamailio/kamailio/commit/b7d1470c50cfdb03c6776bb9c8430c7…
Patch: https://github.com/kamailio/kamailio/commit/b7d1470c50cfdb03c6776bb9c8430c7…
---
diff --git a/src/modules/app_ruby/app_ruby_papi.h b/src/modules/app_ruby/app_ruby_papi.h
new file mode 100644
index 0000000000..65d48498a3
--- /dev/null
+++ b/src/modules/app_ruby/app_ruby_papi.h
@@ -0,0 +1,45 @@
+/**
+ * Copyright (C) 2022 Daniel-Constantin Mierla (asipto.com)
+ *
+ * This file is part of Kamailio, a free SIP server.
+ *
+ * This file is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version
+ *
+ *
+ * This file is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ *
+ */
+
+
+#ifndef _APP_RUBY_PAPI_H_
+#define _APP_RUBY_PAPI_H_
+
+#include "../../core/kemi.h"
+
+typedef struct app_ruby_papi {
+ int (*AppRubyInitChild)(void);
+ void (*AppRubyModDestroy)(void);
+ int (*AppRubyRunEx)(sip_msg_t *msg, char *func, char *p1, char *p2,
+ char *p3, int emode);
+ int (*AppRubyOptSetS)(char* optName, str* optVal);
+ int (*AppRubyOptSetN)(char* optName, int optVal);
+ int (*AppRubyOptSetP)(char* optName, void* optVal);
+ int (*AppRubyGetExportSize)(void);
+ sr_kemi_t* (*AppRubyGetExport)(int idx);
+ int (*AppRubyInitialized)(void);
+ int (*AppRubyLocalVersion)(void);
+} app_ruby_papi_t;
+
+typedef int (*app_ruby_proc_bind_f)(app_ruby_papi_t *papi);
+
+#endif /* _APP_RUBY_PAPI_H_ */
Hi,
When installing kamailio from deb repository (https://deb.kamailio.org/) with debian 11 amd64.
kamcmd autocompletion doesn't work.
Issue found with debian 11 on Kamailio v5.5.x and 5.6.x
OK via debian official repository.
Kamcli could be a replacement but such modules as LCR are not supported.
Thanks in advance,
--
Reply to this email directly or view it on GitHub:
https://github.com/kamailio/kamailio/issues/3284
You are receiving this because you are subscribed to this thread.
Message ID: <kamailio/kamailio/issues/3284(a)github.com>
Hi `kamailio/kamailio`!
This is a one-off automatically generated pull request from LGTM.com :robot:. You might have heard that we’ve integrated LGTM’s underlying CodeQL analysis engine natively into GitHub. The result is [**GitHub code scanning**](https://docs.github.com/en/code-security/code-scanning/automati…!
With LGTM fully integrated into code scanning, we are focused on improving CodeQL within the native GitHub code scanning experience. In order to take advantage of current and future improvements to our analysis capabilities, we suggest you enable code scanning on your repository. Please take a look at our [blog post for more information](https://github.blog/2022-08-15-the-next-step-for-lgtm-com-github-code-scanning/).
This pull request enables code scanning by adding an auto-generated [`codeql.yml` workflow file for GitHub Actions](https://docs.github.com/en/code-security/code-scanning/automatical… to your repository — take a look! We tested it before opening this pull request, so all should be working :heavy_check_mark:. In fact, you might already have seen some alerts appear on this pull request!
Where needed and if possible, we’ve adjusted the configuration to the needs of your particular repository. But of course, you should feel free to tweak it further! Check [this page](https://docs.github.com/en/code-security/code-scanning/automatically-… for detailed documentation.
Questions? Check out the FAQ below!
### FAQ
<details>
<summary>Click here to expand the FAQ section</summary>
#### How often will the code scanning analysis run?
By default, code scanning will trigger a scan with the CodeQL engine on the following events:
* On every pull request — to flag up potential security problems for you to investigate before merging a PR.
* On every push to your default branch and other protected branches — this keeps the analysis results on your repository’s *Security* tab up to date.
* Once a week at a fixed time — to make sure you benefit from the latest updated security analysis even when no code was committed or PRs were opened.
#### What will this cost?
Nothing! The CodeQL engine will run inside GitHub Actions, making use of your [unlimited free compute minutes for public repositories](https://docs.github.com/en/actions/learn-github-actions/usage….
#### What types of problems does CodeQL find?
The CodeQL engine that powers GitHub code scanning is the exact same engine that powers LGTM.com. The exact set of rules has been tweaked slightly, but you should see almost exactly the same types of alerts as you were used to on LGTM.com: we’ve enabled the [`security-and-quality` query suite](https://docs.github.com/en/code-security/code-scanning/automatically… for you.
#### How do I upgrade my CodeQL engine?
No need! New versions of the CodeQL analysis are constantly deployed on GitHub.com; your repository will automatically benefit from the most recently released version.
#### The analysis doesn’t seem to be working
If you get an error in GitHub Actions that indicates that CodeQL wasn’t able to analyze your code, please [follow the instructions here](https://docs.github.com/en/code-security/code-scanning/automatically-… to debug the analysis.
#### How do I disable LGTM.com?
If you have LGTM’s automatic pull request analysis enabled, then you can [follow these steps to disable the LGTM pull request analysis](https://lgtm.com/help/lgtm/managing-automated-code-review#disabli…. You don’t actually need to remove your repository from LGTM.com; it will automatically be removed in the next few months as part of the deprecation of LGTM.com ([more info here](https://github.blog/2022-08-15-the-next-step-for-lgtm-com-github-code-scanning/)).
#### Which source code hosting platforms does code scanning support?
GitHub code scanning is deeply integrated within GitHub itself. If you’d like to scan source code that is hosted elsewhere, we suggest that you create a mirror of that code on GitHub.
#### How do I know this PR is legitimate?
This PR is filed by the official LGTM.com GitHub App, in line with the [deprecation timeline that was announced on the official GitHub Blog](https://github.blog/2022-08-15-the-next-step-for-lgtm-com-github-code-scanning/). The proposed GitHub Action workflow uses the [official open source GitHub CodeQL Action](https://github.com/github/codeql-action/). If you have any other questions or concerns, please join the discussion [here](https://github.com/orgs/community/discussions/29534) in the official GitHub community!
#### I have another question / how do I get in touch?
Please join the discussion [here](https://github.com/orgs/community/discussions/29534) to ask further questions and send us suggestions!
</details>
You can view, comment on, or merge this pull request online at:
https://github.com/kamailio/kamailio/pull/3295
-- Commit Summary --
* Add CodeQL workflow for GitHub code scanning
-- File Changes --
A .github/workflows/codeql.yml (62)
-- Patch Links --
https://github.com/kamailio/kamailio/pull/3295.patchhttps://github.com/kamailio/kamailio/pull/3295.diff
--
Reply to this email directly or view it on GitHub:
https://github.com/kamailio/kamailio/pull/3295
You are receiving this because you are subscribed to this thread.
Message ID: <kamailio/kamailio/pull/3295(a)github.com>