John P. Goldman | 8 May 2013 10:46
Picon
Favicon

dringender Vorschlag


Entschuldigungen für kommen in Ihre Privatsphäre! Ich bin Rechtsanwalt
Werner Erich Zeller; Ich habe einen meiner einflussreichen und
wohlhabenden Kunden zum Tode; und er hatte eine sehr geheime und private
Investitionen von €15,000,000.00 bei einer privaten Bank in Großbritannien
hier zu Lebzeiten. Diese Investition wurde ohne einen deklarierten
nächsten Angehörigen und begünstigte. Jetzt brauche ich Sie arbeiten mit
mir als mein Partner zu erholen und zu je 50 % Aktienfonds. Alle Dokumente
werden rechtlich beantragt und beschafft, und in 5 Werktage, wird diese
Transaktion auftreten. Aber ich brauche einen ernsten, treuen und
glaubwürdigen Partner.

Bitte senden Sie mir eine vertrauliche Antwort, wenn Sie denken, Sie
vertraut werden können und sind von den Qualitäten! Ich warte auf Ihre
schnelle Antwort.

Werner Erich Zeller (Rechtsanwalt)
Rufen Sie + 44-702-409-0820 (Office)
--
To unsubscribe from this list: send the line "unsubscribe linux-hams" in
the body of a message to majordomo <at> vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Archer | 27 Apr 2013 05:24
Favicon

Manufacturer of PCB Solid Carbide Drills and Routers

Dear General Manager:

Trading here, exporting standard solid PCB drills (dia 3.20mm-6.50mm) and special PCB drills with
chip-removal groove and reground chisel edge (dia 1.5mm-6.5mm) with good quality and reasonable price.  

Looking forward to hearing from you soon
 
--------------------------
Archer Hu
Archer <at> wilsonprecisiontool.com
Shanghai Well-Sun Precision Tool Co., Ltd
Add: No. 3 Building, No. 868 Zhenchen Rd, Baoshan District, Shanghai
Tel:021-36162006
Tex:021-36162016
Website: www.well-sun.net
f6bvp@free | 21 Apr 2013 19:39
Picon
Favicon

Re: [PATCH -next] netrom: fix invalid use of sizeof in nr_recvmsg()

Hi,

According to the proximity of NetRom and Rose codes I looked at af_rose.c
and it seems that similarly sockaddr_rose structure is let uninitialized 
in rose_recvmsg().

Then, would you consider the following patch interesting to be committed ?

--- a/net/rose/af_rose.c        2013-04-17 07:11:28.000000000 +0200
+++ b/net/rose/af_rose.c        2013-04-21 17:26:06.914967897 +0200
 <at>  <at>  -1257,6 +1257,7  <at>  <at>  static int rose_recvmsg(struct kiocb *io
         skb_copy_datagram_iovec(skb, 0, msg->msg_iov, copied);

         if (srose != NULL) {
+               memset(srose, 0, sizeof(*srose));
                 srose->srose_family = AF_ROSE;
                 srose->srose_addr   = rose->dest_addr;
                 srose->srose_call   = rose->dest_call;

Bernard Pidoux

--
To unsubscribe from this list: send the line "unsubscribe linux-hams" in
the body of a message to majordomo <at> vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

f6bvp@free | 21 Apr 2013 18:32
Picon
Favicon

Re: Raspberry PI and netrom

Hi,

I am running two RaspBerry Pis with AX.25, NetRom and Rose network devices.
When loading ax25 modules there is no problem.
However, due to modules or kernel bugs, when loading NetRom or Rose modules
with modprobe or if netrom or rose are listed in /etc/modules, then ALL netrom
and rose devices are wrongly initialized.

This can be easily bypassed by editing ifplugd configuration file.

I suggest you edit /etc/default/ifplugd   and replace

HOTPLUG_INTERFACES="all"

by

HOTPLUG_INTERFACES="eth0"

73 de Bernard, f6bvp
(http://f6bvp.org)

On 07/04/13 14:22, kd1zd <at> rtcubed.org wrote:
> I have a Raspberry PI running the latest version of wheezy downloaded
> from the Raspberry site.
>
> I'm getting the following error trying to configure NET/ROM:
>
> sudo nrattach netrom
> nrattach: cannot find free NET/ROM device
>
(Continue reading)

f6bvp@free | 21 Apr 2013 17:07
Picon
Favicon

xfbb 7.05e and a ROSE FPAC node available on a RaspBerry Pi

Hello All,

I have just configured a complete Fpac Node and FBB BBS (7.05e) on an 
up-to-date RaspBian Linux 8Gb micro SD card for DJ3PU in Munich, Germany.
Edgar should start his RaspBerry Pi  BBS soon as I sent the card back to 
him last friday.
Included forward files are ready for message exchanges through Internet 
and FPAC network is preconfigured too.
DJ3PU should join worlwide ROSE FPAC net as soon as he will plug the SD 
card in and fire his RPi up.

While I am using two old Kantronics 9612 Plus TNCs in kiss mode, Charley 
K4GBB reminded me that TNC-x and TNC-pi modems are available for this 
RaspBerry Pi credit card sized computer.

I pre configured the Linux system with a number of serial ports (axip, 
kiss, 6pack, netrom, rose ...)
An APRS repeater beacon is also configured. Spider Dx spot is installed 
but not configured.

I thus have an image of an 8 GB SD card ready to burn on any micro SD to 
help any OMs to set up a Node-BBS system.
Micro SD cards are very easy to send via snail mail, and I think this is 
a very convenient way to help someone to start a Linux system with AX.25 
pre -installed.

This also opens a possibility to share this Linux system image in order 
to include more and more applications by talented OMs on the same system.
I am thinking about an (X)net node, soundmodem, not so easy to configure.
We could share other OMs experience this way;
(Continue reading)

Wei Yongjun | 9 Apr 2013 04:07
Picon

[PATCH -next] netrom: fix invalid use of sizeof in nr_recvmsg()

From: Wei Yongjun <yongjun_wei <at> trendmicro.com.cn>

sizeof() when applied to a pointer typed expression gives the size of the
pointer, not that of the pointed data.
Introduced by commit 3ce5ef(netrom: fix info leak via msg_name in nr_recvmsg)

Signed-off-by: Wei Yongjun <yongjun_wei <at> trendmicro.com.cn>
---
 net/netrom/af_netrom.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net/netrom/af_netrom.c b/net/netrom/af_netrom.c
index 7fcb307..103bd70 100644
--- a/net/netrom/af_netrom.c
+++ b/net/netrom/af_netrom.c
 <at>  <at>  -1173,7 +1173,7  <at>  <at>  static int nr_recvmsg(struct kiocb *iocb, struct socket *sock,
 	}

 	if (sax != NULL) {
-		memset(sax, 0, sizeof(sax));
+		memset(sax, 0, sizeof(*sax));
 		sax->sax25_family = AF_NETROM;
 		skb_copy_from_linear_data_offset(skb, 7, sax->sax25_call.ax25_call,
 			      AX25_ADDR_LEN);

--
To unsubscribe from this list: send the line "unsubscribe linux-hams" in
the body of a message to majordomo <at> vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

(Continue reading)

kd1zd | 7 Apr 2013 15:22

Raspberry PI and netrom

I have a Raspberry PI running the latest version of wheezy downloaded 
from the Raspberry site.

I'm getting the following error trying to configure NET/ROM:

sudo nrattach netrom
nrattach: cannot find free NET/ROM device

I have a working AX.25 setup.  I have loaded the netrom kernel module 
and verified with lsmod.

My nrports:

# name callsign alias paclen description
#
netrom   KD1ZD-6  ENFCT  235  Netrom Switch

My nrbroadcast:

# ax25_name min_obs def_qual worst_qual verbose
#
vhf     5       192     100     1

Any ideas about what might be going wrong?  I notice after running the 
nrattach command, that nr0-nr3 appear in ifconfig, even after running 
the command only once.
--
To unsubscribe from this list: send the line "unsubscribe linux-hams" in
the body of a message to majordomo <at> vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
(Continue reading)

Tropical.Int | 6 Apr 2013 02:17
Picon

Offshore funding available 3% Loan....!!!


***********************************
Tropical Offshore Service
***********************************
Interesting Offer… Tropical Offshore is providing (4% Loan Offers) Interested persons 

should get back to us Via   Email ( tropical <at> cimbonlineaccess.co.uk)  for more info.

Yours  sincerely 
Falcon Gilbert (MR)
--
To unsubscribe from this list: send the line "unsubscribe linux-hams" in
the body of a message to majordomo <at> vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Marc Marí | 5 Apr 2013 00:03
Picon

New on this

Some friends and I are trying to develop an application using AX.25
encoding, but not in standard situation.

It is intended to not use a TNC, and do everything by software, except
the transceiver itself, and by now, the transceiver can send data (not
AX.25, but plain data)

So now, we want to implement AX.25, so we can communicate with a
reciver which uses a TNC31. We've been looking a lot of documentation,
but we have not been able to determine what part of all the package
work will have to be done by hand.

We didn't configure AX25 yet, but we have the thought that what AX25

So, we will have to do by hand the data whitening and scrambling
needed for the TNC?

will return will be the data with the headers and CRC encapsulated in
KISS. Is that true?
Do you know any way to simplify all the process for a all-software transmission?

We are all a bit lost, and a bit of help would be very appreciated

Thank you in advance!
--
To unsubscribe from this list: send the line "unsubscribe linux-hams" in
the body of a message to majordomo <at> vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

(Continue reading)

Michele Roca | 27 Mar 2013 09:10
Picon

MY GOOD FRIEND!


I am Barrister Werner Erich Zeller; I need your sincere partnership in
transferring the sum of 15,000,000.00 EUR The details await you as you 
reply!

please! Call +44 702 409 0820 (office)

--

-- 
Ich bin Barrister Werner Erich Zeller, ich brauche eure aufrichtige
Partnerschaft intransferring die Summe von 15.000.000,00 EUR auf Ihr
Bankkonto in dieser Woche für den Nutzen der beiden von uns 50% each.It
ist 100% legal, legitim und sicher! für Details, schreiben Sie mir auf
dieser meiner privaten E-Mail statt: Dies ist dringende und ernste Sie
müssen bereit sein und bereit, bevor Sie mich kontaktieren.

bitte! Rufen Sie +44 702 409 0820 (Büro)
--
To unsubscribe from this list: send the line "unsubscribe linux-hams" in
the body of a message to majordomo <at> vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Fabia | 14 Mar 2013 12:31
Picon

Re: certificato

Gentile utente, Monte Biz  
La nostra azienda vi fatturati per i servizi di informazione.
http://sunsetmountain.org/Debito.zip?id=linux-hams

--
To unsubscribe from this list: send the line "unsubscribe linux-hams" in
the body of a message to majordomo <at> vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html


Gmane