1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-26 00:55:14 +00:00

KNC is Kerberised NetCat. It works in basically the same way as either netcat

or stunnel except that it is uses GSS-API to secure the communication. You can
use it to construct client/server applications while keeping the Kerberos
libraries out of your programs address space quickly and easily.

WWW: http://oskt.secure-endpoints.com/knc.html

PR:		ports/175952
Submitted by:	Denis Generalov <gd@rambler-co.ru>
This commit is contained in:
Chris Rees 2013-02-09 17:55:38 +00:00
parent 132fb9254f
commit 16cc3b1cec
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=311990
5 changed files with 37 additions and 0 deletions

View File

@ -282,6 +282,7 @@
SUBDIR += kiax
SUBDIR += kio-upnp-ms
SUBDIR += kissd
SUBDIR += knc
SUBDIR += knemo
SUBDIR += knemo-kde4
SUBDIR += kojoney

17
net/knc/Makefile Normal file
View File

@ -0,0 +1,17 @@
# Created by: Denis Generalov <gd@rambler-co.ru>
# $FreeBSD$
PORTNAME= knc
PORTVERSION= 1.7
CATEGORIES= net
MASTER_SITES= http://oskt.secure-endpoints.com/downloads/
MAINTAINER= gd@rambler-co.ru
COMMENT= KNC is Kerberised NetCat
USE_AUTOTOOLS= libtool
MAN1= knc.1
PLIST_FILES= bin/knc
.include <bsd.port.mk>

2
net/knc/distinfo Normal file
View File

@ -0,0 +1,2 @@
SHA256 (knc-1.7.tar.gz) = d36cdec27dc505a6eca4f230bc53dafcee422122bd2ec6addc0af0c35a95f46f
SIZE (knc-1.7.tar.gz) = 646756

View File

@ -0,0 +1,11 @@
--- ./bin/knc.c.orig 2013-02-09 21:09:13.000000000 +0400
+++ ./bin/knc.c 2013-02-09 21:09:29.000000000 +0400
@@ -47,7 +47,7 @@
#include <time.h>
#include <unistd.h>
-#include "gssapi/gssapi.h"
+#include "config.h"
#include "gssstdio.h"
#include "knc.h"

6
net/knc/pkg-descr Normal file
View File

@ -0,0 +1,6 @@
KNC is Kerberised NetCat. It works in basically the same way as either netcat
or stunnel except that it is uses GSS-API to secure the communication. You can
use it to construct client/server applications while keeping the Kerberos
libraries out of your programs address space quickly and easily.
WWW: http://oskt.secure-endpoints.com/knc.html