{"id":19011495,"url":"https://github.com/perrywerneck/libipc3270","last_synced_at":"2025-08-12T10:13:00.092Z","repository":{"id":46720989,"uuid":"162567035","full_name":"PerryWerneck/libipc3270","owner":"PerryWerneck","description":"IPC (Interprocess communication) client library for pw3270","archived":false,"fork":false,"pushed_at":"2023-08-03T10:26:48.000Z","size":3027,"stargazers_count":3,"open_issues_count":2,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-02-21T15:51:34.460Z","etag":null,"topics":["3270","linux","mainframe"],"latest_commit_sha":null,"homepage":"","language":"C++","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"lgpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/PerryWerneck.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":"AUTHORS","dei":null,"publiccode":null,"codemeta":null}},"created_at":"2018-12-20T10:57:24.000Z","updated_at":"2024-07-29T18:04:47.000Z","dependencies_parsed_at":"2025-01-01T21:45:04.678Z","dependency_job_id":null,"html_url":"https://github.com/PerryWerneck/libipc3270","commit_stats":null,"previous_names":[],"tags_count":5,"template":false,"template_full_name":null,"purl":"pkg:github/PerryWerneck/libipc3270","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/PerryWerneck%2Flibipc3270","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/PerryWerneck%2Flibipc3270/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/PerryWerneck%2Flibipc3270/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/PerryWerneck%2Flibipc3270/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/PerryWerneck","download_url":"https://codeload.github.com/PerryWerneck/libipc3270/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/PerryWerneck%2Flibipc3270/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":270041446,"owners_count":24516846,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-08-12T02:00:09.011Z","response_time":80,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["3270","linux","mainframe"],"created_at":"2024-11-08T19:14:39.038Z","updated_at":"2025-08-12T10:13:00.063Z","avatar_url":"https://github.com/PerryWerneck.png","language":"C++","funding_links":[],"categories":[],"sub_categories":[],"readme":"## IPC (interprocess communication) library for pw3270.\n\nCreated originally as part of [PW3270 application](../../../pw3270) this library is designed to act as a standard ABI for [lib320](../../../lib3270) and pw3270 language bindings using the same objects for direct lib3270 calls and IPC based requests to the pw3270 GUI application. It's beeing used on [libhllapi](../../../libhllapi) and [pw3270's python library](../../../python3-tn3270).\n\n[![License: GPL v3](https://img.shields.io/badge/License-GPL%20v3-blue.svg)](https://www.gnu.org/licenses/gpl-3.0)\n![CodeQL](https://github.com/PerryWerneck/libipc3270/workflows/CodeQL/badge.svg)\n[![build result](https://build.opensuse.org/projects/home:PerryWerneck:pw3270/packages/libipc3270/badge.svg?type=percent)](https://build.opensuse.org/package/show/home:PerryWerneck:pw3270/libipc3270)\n\n## Instalation\n\n### Linux\n\n[\u003cimg src=\"https://raw.githubusercontent.com/PerryWerneck/pw3270/master/branding/obs-badge-en.svg\" alt=\"Download from open build service\" height=\"80px\"\u003e](https://software.opensuse.org/download.html?project=home%3APerryWerneck%3Apw3270\u0026package=libipc3270)\n\n### Windows\n\nThe MSVC and MinGW libraries for windows can be found on [Releases](../../releases)\n\n## Building for Linux\n\n### Requirements\n\n * [lib3270](../../../lib3270)\n\n### Building\n\n * TODO\n\n## Building for windows\n\n### Cross-compiling on SuSE Linux (Native or WSL)\n\n1. Add the MinGW Repositories\n\n\t```\n\tsudo zypper ar obs://windows:mingw:win32 mingw32\n\tsudo zypper ar obs://windows:mingw:win64 mingw64\n\tsudo zypper ar obs://home:PerryWerneck:pw3270 pw3270\n\tsudo zypper ref\n\t```\n2. Get sources from git\n\n\t```shell\n\tgit clone https://github.com/PerryWerneck/libipc3270.git ./libipc3270\n\t```\n\n3. Install 64 bits cross compilers\n\n\t```shell\n\t./libipc3270/win/install-cross.sh --64\n\t```\n\n3. Configure 64 bits build environment\n\n        ```shell\n        ./libipc3270/win/win-configure.sh --64\n        ```\n\n4. Build\n\n\t```shell\n\tcd libipc3270\n\tmake clean\n\tmake all\n\t```\n\n### Windows native with MSYS2\n\n1. Build and install [lib3270](../../../lib3270)\n\n2. Get sources from git\n\n\t```shell\n\tgit clone https://github.com/PerryWerneck/libipc3270.git ./libipc3270\n\t```\n\n4. Build library using the mingw shell\n\n\t```shell\n\tcd libipc3270\n\t./autogen.sh\n\tmake all\n\t```\n5. Install\n\n\t```shell\n\tmake install\n\t```\n\n### Windows native with MSVC (untested)\n\n1. Install pw3270 with sdk modules\n\n2. Install git for windows\n\n3. Download and install [Visual Studio Build Tools](https://visualstudio.microsoft.com/pt-br/downloads/)\n\n4. Get sources from git\n\n\t```shell\n\tgit clone https://github.com/PerryWerneck/libipc3270.git ./ipc3270\n\t```\n\n5. Build and install\n\n\t```shell\n\tcd ipc3270\n\tinstall.bat\n\t```\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fperrywerneck%2Flibipc3270","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fperrywerneck%2Flibipc3270","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fperrywerneck%2Flibipc3270/lists"}