开云体育

ctrl + shift + ? for shortcuts
© 2025 开云体育

server programming in "C"


 

I am trying to port over a server program in "C", to MUSIC/SP using WATC?? In the AR guide, part-3
page 228, the following is referenced:

.If you wish to code socket application in C, you must include a call to CARGENV (no parameters required)
in order to cause the socket routines to automatically convert the arguments passed to assembler calling
conventions. In this case, use the normal C calling conventions as defined by the SOCKET.HDR header file.

I can find NO reference anyway else about CARGENV.? and of course by server program will not work
on MUSIC/SP.? Any direction or info on how to use or where to find info on CARGENV, would be
very helpful.

Thank You
Tom c
?


 

Look here:?

Joe

On Sun, Jun 20, 2021 at 2:27 PM Tom Chandler <tchandler48@...> wrote:
I am trying to port over a server program in "C", to MUSIC/SP using WATC?? In the AR guide, part-3
page 228, the following is referenced:

.If you wish to code socket application in C, you must include a call to CARGENV (no parameters required)
in order to cause the socket routines to automatically convert the arguments passed to assembler calling
conventions. In this case, use the normal C calling conventions as defined by the SOCKET.HDR header file.

I can find NO reference anyway else about CARGENV.? and of course by server program will not work
on MUSIC/SP.? Any direction or info on how to use or where to find info on CARGENV, would be
very helpful.

Thank You
Tom c
?


 

I think that if you link your program with $TCP:WATC.SOCKETS.OBJ
you will not have to call anything special.

my 2 cents,

Xtian.

On 2021-06-20 15:27, Tom Chandler wrote:
I am trying to port over a server program in "C", to MUSIC/SP using WATC?? In the AR guide, part-3
page 228, the following is referenced:
.If you wish to code socket application in C, you must include a call to CARGENV (no parameters required)
in order to cause the socket routines to automatically convert the arguments passed to assembler calling
conventions. In this case, use the normal C calling conventions as defined by the SOCKET.HDR header file.
I can find NO reference anyway else about CARGENV.? and of course by server program will not work
on MUSIC/SP.? Any direction or info on how to use or where to find info on CARGENV, would be
very helpful.
Thank You
Tom c


 

Thank you for your reply.? I had included the following:

/inc $tcp:watc.sockets.obj
/inc $tcp:watc.muresolv.obj
/inc $tcp:watc.mugetsoc.obj

with no change.? The program hangs on the:
sock = socket (AF_INET, SOCK_STREAM, 0);
code.

Cheers
Tom c.


Virus-free.

On Sun, Jun 20, 2021 at 5:08 PM Christian Robert via <christian.robert=[email protected]> wrote:

I think that if you link your program with $TCP:WATC.SOCKETS.OBJ
you will not have to call anything special.

my 2 cents,

Xtian.

On 2021-06-20 15:27, Tom Chandler wrote:
> I am trying to port over a server program in "C", to MUSIC/SP using WATC?? In the AR guide, part-3
> page 228, the following is referenced:
>
> .If you wish to code socket application in C, you must include a call to CARGENV (no parameters required)
> in order to cause the socket routines to automatically convert the arguments passed to assembler calling
> conventions. In this case, use the normal C calling conventions as defined by the SOCKET.HDR header file.
>
> I can find NO reference anyway else about CARGENV.? and of course by server program will not work
> on MUSIC/SP.? Any direction or info on how to use or where to find info on CARGENV, would be
> very helpful.
>
> Thank You
> Tom c
>






 

Thank you for the reference.? I thought it look familiar as I had a pdf, hardcopy, and text
version.? Re-read it to make sure, but with no luck.

Cheers
Tom c


Virus-free.


On Sun, Jun 20, 2021 at 4:36 PM Joe Monk <joemonk64@...> wrote:
Look here:?

Joe

On Sun, Jun 20, 2021 at 2:27 PM Tom Chandler <tchandler48@...> wrote:
I am trying to port over a server program in "C", to MUSIC/SP using WATC?? In the AR guide, part-3
page 228, the following is referenced:

.If you wish to code socket application in C, you must include a call to CARGENV (no parameters required)
in order to cause the socket routines to automatically convert the arguments passed to assembler calling
conventions. In this case, use the normal C calling conventions as defined by the SOCKET.HDR header file.

I can find NO reference anyway else about CARGENV.? and of course by server program will not work
on MUSIC/SP.? Any direction or info on how to use or where to find info on CARGENV, would be
very helpful.

Thank You
Tom c
?


 

On 2021-06-20 19:00, Tom Chandler wrote:
Thank you for your reply.? I had included the following:
/inc $tcp:watc.sockets.obj
/inc $tcp:watc.muresolv.obj
/inc $tcp:watc.mugetsoc.obj
with no change.? The program hangs on the:
sock = socket (AF_INET, SOCK_STREAM, 0);
code.
Cheers
Tom c.
I would use sock = socket (AF_INET, SOCK_STREAM, IP_PROTO_TCP);
or something like that.

I can't help you more because I didn't manage to make TCPIP available yet in my Hercules.
Not sure if it's possible.

Xtian.


<> Virus-free. www.avg.com <>
<#DAB4FAD8-2DD7-40BB-A1B8-4E2AA1F9FDF2>
On Sun, Jun 20, 2021 at 5:08 PM Christian Robert via groups.io <> <christian.robert@... <mailto:[email protected]>> wrote:
I think that if you link your program with $TCP:WATC.SOCKETS.OBJ
you will not have to call anything special.
my 2 cents,
Xtian.
On 2021-06-20 15:27, Tom Chandler wrote:
> I am trying to port over a server program in "C", to MUSIC/SP using WATC?? In the AR guide, part-3
> page 228, the following is referenced:
>
> .If you wish to code socket application in C, you must include a call to CARGENV (no parameters required)
> in order to cause the socket routines to automatically convert the arguments passed to assembler calling
> conventions. In this case, use the normal C calling conventions as defined by the SOCKET.HDR header file.
>
> I can find NO reference anyway else about CARGENV.? and of course by server program will not work
> on MUSIC/SP.? Any direction or info on how to use or where to find info on CARGENV, would be
> very helpful.
>
> Thank You
> Tom c
>


 

Are you running under hercules or Sim390?

Joe

On Sun, Jun 20, 2021 at 6:00 PM Tom Chandler <tchandler48@...> wrote:
Thank you for your reply.? I had included the following:

/inc $tcp:watc.sockets.obj
/inc $tcp:watc.muresolv.obj
/inc $tcp:watc.mugetsoc.obj

with no change.? The program hangs on the:
sock = socket (AF_INET, SOCK_STREAM, 0);
code.

Cheers
Tom c.


Virus-free.

On Sun, Jun 20, 2021 at 5:08 PM Christian Robert via <christian.robert=[email protected]> wrote:
I think that if you link your program with $TCP:WATC.SOCKETS.OBJ
you will not have to call anything special.

my 2 cents,

Xtian.

On 2021-06-20 15:27, Tom Chandler wrote:
> I am trying to port over a server program in "C", to MUSIC/SP using WATC?? In the AR guide, part-3
> page 228, the following is referenced:
>
> .If you wish to code socket application in C, you must include a call to CARGENV (no parameters required)
> in order to cause the socket routines to automatically convert the arguments passed to assembler calling
> conventions. In this case, use the normal C calling conventions as defined by the SOCKET.HDR header file.
>
> I can find NO reference anyway else about CARGENV.? and of course by server program will not work
> on MUSIC/SP.? Any direction or info on how to use or where to find info on CARGENV, would be
> very helpful.
>
> Thank You
> Tom c
>






 

The reason I ask is this, from the readme.txt in the musdemo_b download:

"You can also run the MUSIC/SP Demo system under the Hercules mainframe
emulator, but in that case none of the tcp/ip applications in MUSIC/SP
can be used, such as FTP, FTPD, HTTPD, socket programming, etc."

Joe


On Sun, Jun 20, 2021 at 7:27 PM Joe Monk via <joemonk64=[email protected]> wrote:
Are you running under hercules or Sim390?

Joe

On Sun, Jun 20, 2021 at 6:00 PM Tom Chandler <tchandler48@...> wrote:
Thank you for your reply.? I had included the following:

/inc $tcp:watc.sockets.obj
/inc $tcp:watc.muresolv.obj
/inc $tcp:watc.mugetsoc.obj

with no change.? The program hangs on the:
sock = socket (AF_INET, SOCK_STREAM, 0);
code.

Cheers
Tom c.


Virus-free.

On Sun, Jun 20, 2021 at 5:08 PM Christian Robert via <christian.robert=[email protected]> wrote:
I think that if you link your program with $TCP:WATC.SOCKETS.OBJ
you will not have to call anything special.

my 2 cents,

Xtian.

On 2021-06-20 15:27, Tom Chandler wrote:
> I am trying to port over a server program in "C", to MUSIC/SP using WATC?? In the AR guide, part-3
> page 228, the following is referenced:
>
> .If you wish to code socket application in C, you must include a call to CARGENV (no parameters required)
> in order to cause the socket routines to automatically convert the arguments passed to assembler calling
> conventions. In this case, use the normal C calling conventions as defined by the SOCKET.HDR header file.
>
> I can find NO reference anyway else about CARGENV.? and of course by server program will not work
> on MUSIC/SP.? Any direction or info on how to use or where to find info on CARGENV, would be
> very helpful.
>
> Thank You
> Tom c
>






 

Sir,
for testing, I run a sim390 and a Hercules version.? The Hercules is SPINHAWK, using
the modifications by Peter Coghlan.? It allows MUSIC/SP tcpip access while running
under Hercules.? The ftp & http server work great.? Have been using it for over a year now.

The reason I usd sim390 and Hercules is to help validate Peter's modification are
working as expected.

Cheers
Tom? c.

Virus-free.

On Sun, Jun 20, 2021 at 7:29 PM Joe Monk <joemonk64@...> wrote:
The reason I ask is this, from the readme.txt in the musdemo_b download:

"You can also run the MUSIC/SP Demo system under the Hercules mainframe
emulator, but in that case none of the tcp/ip applications in MUSIC/SP
can be used, such as FTP, FTPD, HTTPD, socket programming, etc."

Joe

On Sun, Jun 20, 2021 at 7:27 PM Joe Monk via <joemonk64=[email protected]> wrote:
Are you running under hercules or Sim390?

Joe

On Sun, Jun 20, 2021 at 6:00 PM Tom Chandler <tchandler48@...> wrote:
Thank you for your reply.? I had included the following:

/inc $tcp:watc.sockets.obj
/inc $tcp:watc.muresolv.obj
/inc $tcp:watc.mugetsoc.obj

with no change.? The program hangs on the:
sock = socket (AF_INET, SOCK_STREAM, 0);
code.

Cheers
Tom c.


Virus-free.

On Sun, Jun 20, 2021 at 5:08 PM Christian Robert via <christian.robert=[email protected]> wrote:
I think that if you link your program with $TCP:WATC.SOCKETS.OBJ
you will not have to call anything special.

my 2 cents,

Xtian.

On 2021-06-20 15:27, Tom Chandler wrote:
> I am trying to port over a server program in "C", to MUSIC/SP using WATC?? In the AR guide, part-3
> page 228, the following is referenced:
>
> .If you wish to code socket application in C, you must include a call to CARGENV (no parameters required)
> in order to cause the socket routines to automatically convert the arguments passed to assembler calling
> conventions. In this case, use the normal C calling conventions as defined by the SOCKET.HDR header file.
>
> I can find NO reference anyway else about CARGENV.? and of course by server program will not work
> on MUSIC/SP.? Any direction or info on how to use or where to find info on CARGENV, would be
> very helpful.
>
> Thank You
> Tom c
>






 

Sir,
Gave it a try, but it fails in the compile as IP_PROTO_TCP
reports as undefined.

Cheers
Tom c


Virus-free.

On Sun, Jun 20, 2021 at 7:22 PM Christian Robert via <christian.robert=[email protected]> wrote:

On 2021-06-20 19:00, Tom Chandler wrote:
> Thank you for your reply.? I had included the following:
>
> /inc $tcp:watc.sockets.obj
> /inc $tcp:watc.muresolv.obj
> /inc $tcp:watc.mugetsoc.obj
>
> with no change.? The program hangs on the:
> sock = socket (AF_INET, SOCK_STREAM, 0);
> code.
>
> Cheers
> Tom c.

I would use sock = socket (AF_INET, SOCK_STREAM, IP_PROTO_TCP);
or something like that.

I can't help you more because I didn't manage to make TCPIP available yet in my Hercules.
Not sure if it's possible.

Xtian.


>
>
> <>? ? ? Virus-free. <>
>
> <#DAB4FAD8-2DD7-40BB-A1B8-4E2AA1F9FDF2>
>
> On Sun, Jun 20, 2021 at 5:08 PM Christian Robert via <> <christian.robert=[email protected] <mailto:[email protected]>> wrote:
>
>? ? ?I think that if you link your program with $TCP:WATC.SOCKETS.OBJ
>? ? ?you will not have to call anything special.
>
>? ? ?my 2 cents,
>
>? ? ?Xtian.
>
>? ? ?On 2021-06-20 15:27, Tom Chandler wrote:
>? ? ? > I am trying to port over a server program in "C", to MUSIC/SP using WATC?? In the AR guide, part-3
>? ? ? > page 228, the following is referenced:
>? ? ? >
>? ? ? > .If you wish to code socket application in C, you must include a call to CARGENV (no parameters required)
>? ? ? > in order to cause the socket routines to automatically convert the arguments passed to assembler calling
>? ? ? > conventions. In this case, use the normal C calling conventions as defined by the SOCKET.HDR header file.
>? ? ? >
>? ? ? > I can find NO reference anyway else about CARGENV.? and of course by server program will not work
>? ? ? > on MUSIC/SP.? Any direction or info on how to use or where to find info on CARGENV, would be
>? ? ? > very helpful.
>? ? ? >
>? ? ? > Thank You
>? ? ? > Tom c
>? ? ? >
>
>
>
>
>
>






 

IP_PROTO_TCP is defined in ip.h

Joe

On Mon, Jun 21, 2021 at 9:01 AM Tom Chandler <tchandler48@...> wrote:
Sir,
Gave it a try, but it fails in the compile as IP_PROTO_TCP
reports as undefined.

Cheers
Tom c


Virus-free.

On Sun, Jun 20, 2021 at 7:22 PM Christian Robert via <christian.robert=[email protected]> wrote:
On 2021-06-20 19:00, Tom Chandler wrote:
> Thank you for your reply.? I had included the following:
>
> /inc $tcp:watc.sockets.obj
> /inc $tcp:watc.muresolv.obj
> /inc $tcp:watc.mugetsoc.obj
>
> with no change.? The program hangs on the:
> sock = socket (AF_INET, SOCK_STREAM, 0);
> code.
>
> Cheers
> Tom c.

I would use sock = socket (AF_INET, SOCK_STREAM, IP_PROTO_TCP);
or something like that.

I can't help you more because I didn't manage to make TCPIP available yet in my Hercules.
Not sure if it's possible.

Xtian.


>
>
> <>? ? ? Virus-free. <>
>
> <#DAB4FAD8-2DD7-40BB-A1B8-4E2AA1F9FDF2>
>
> On Sun, Jun 20, 2021 at 5:08 PM Christian Robert via <> <christian.robert=[email protected] <mailto:[email protected]>> wrote:
>
>? ? ?I think that if you link your program with $TCP:WATC.SOCKETS.OBJ
>? ? ?you will not have to call anything special.
>
>? ? ?my 2 cents,
>
>? ? ?Xtian.
>
>? ? ?On 2021-06-20 15:27, Tom Chandler wrote:
>? ? ? > I am trying to port over a server program in "C", to MUSIC/SP using WATC?? In the AR guide, part-3
>? ? ? > page 228, the following is referenced:
>? ? ? >
>? ? ? > .If you wish to code socket application in C, you must include a call to CARGENV (no parameters required)
>? ? ? > in order to cause the socket routines to automatically convert the arguments passed to assembler calling
>? ? ? > conventions. In this case, use the normal C calling conventions as defined by the SOCKET.HDR header file.
>? ? ? >
>? ? ? > I can find NO reference anyway else about CARGENV.? and of course by server program will not work
>? ? ? > on MUSIC/SP.? Any direction or info on how to use or where to find info on CARGENV, would be
>? ? ? > very helpful.
>? ? ? >
>? ? ? > Thank You
>? ? ? > Tom c
>? ? ? >
>
>
>
>
>
>






 

Sir,
That may true, but in WATC on music/sp, it is not defined in the socket.h
file,

Cheers
Tom c


Virus-free.


On Mon, Jun 21, 2021 at 9:14 AM Joe Monk <joemonk64@...> wrote:
IP_PROTO_TCP is defined in ip.h

Joe

On Mon, Jun 21, 2021 at 9:01 AM Tom Chandler <tchandler48@...> wrote:
Sir,
Gave it a try, but it fails in the compile as IP_PROTO_TCP
reports as undefined.

Cheers
Tom c


Virus-free.

On Sun, Jun 20, 2021 at 7:22 PM Christian Robert via <christian.robert=[email protected]> wrote:
On 2021-06-20 19:00, Tom Chandler wrote:
> Thank you for your reply.? I had included the following:
>
> /inc $tcp:watc.sockets.obj
> /inc $tcp:watc.muresolv.obj
> /inc $tcp:watc.mugetsoc.obj
>
> with no change.? The program hangs on the:
> sock = socket (AF_INET, SOCK_STREAM, 0);
> code.
>
> Cheers
> Tom c.

I would use sock = socket (AF_INET, SOCK_STREAM, IP_PROTO_TCP);
or something like that.

I can't help you more because I didn't manage to make TCPIP available yet in my Hercules.
Not sure if it's possible.

Xtian.


>
>
> <>? ? ? Virus-free. <>
>
> <#DAB4FAD8-2DD7-40BB-A1B8-4E2AA1F9FDF2>
>
> On Sun, Jun 20, 2021 at 5:08 PM Christian Robert via <> <christian.robert=[email protected] <mailto:[email protected]>> wrote:
>
>? ? ?I think that if you link your program with $TCP:WATC.SOCKETS.OBJ
>? ? ?you will not have to call anything special.
>
>? ? ?my 2 cents,
>
>? ? ?Xtian.
>
>? ? ?On 2021-06-20 15:27, Tom Chandler wrote:
>? ? ? > I am trying to port over a server program in "C", to MUSIC/SP using WATC?? In the AR guide, part-3
>? ? ? > page 228, the following is referenced:
>? ? ? >
>? ? ? > .If you wish to code socket application in C, you must include a call to CARGENV (no parameters required)
>? ? ? > in order to cause the socket routines to automatically convert the arguments passed to assembler calling
>? ? ? > conventions. In this case, use the normal C calling conventions as defined by the SOCKET.HDR header file.
>? ? ? >
>? ? ? > I can find NO reference anyway else about CARGENV.? and of course by server program will not work
>? ? ? > on MUSIC/SP.? Any direction or info on how to use or where to find info on CARGENV, would be
>? ? ? > very helpful.
>? ? ? >
>? ? ? > Thank You
>? ? ? > Tom c
>? ? ? >
>
>
>
>
>
>






 


with no change. The program hangs on the:
sock = socket (AF_INET, SOCK_STREAM, 0);
code.
When you say hangs, do you mean hangs waiting for something or hangs stuck
in an infinte loop?

This is a complete wild guess. Maybe CARGENV causes arguments passed by
value to socket routines to be somehow changed into arguments passed by
reference? How about trying something like this as a test:

sock = socket (&AF_INET, &SOCK_STREAM, &0);

and see if it still hangs?

Maybe the MUSIC debugger could be used to get more details on what is
going wrong? It might even be possible to figure out in what way the
arguments being passed to socket() from C are "wrong" which might in
turn allow a replacement for CARGENV to be written?

Regards,
Peter Coghlan.


 

Sir,
The change did not compile, something about a LVALUE needed.? BUT, I think you
are on the right track.? See below from ar_pf3 manual:

****
If you wish to code socket application in C, you must include a call to CARGENV (no parameters required)
in order to cause the socket routines to automatically convert the arguments passed to assembler calling
conventions. In this case, use the normal C calling conventions as defined by the SOCKET.HDR header file.
****

It appears that cargenv converts arguments from a "C" to something else.? Still digging.? WIll look at the
debugger to see what can be done.

Thank you very much for your help and interest.

Cheers
Tom c


Virus-free.


On Mon, Jun 21, 2021 at 10:40 AM Peter Coghlan <groups@...> wrote:
>
> with no change.? The program hangs on the:
> sock = socket (AF_INET, SOCK_STREAM, 0);
> code.
>

When you say hangs, do you mean hangs waiting for something or hangs stuck
in an infinte loop?

This is a complete wild guess.? Maybe CARGENV causes arguments passed by
value to socket routines to be somehow changed into arguments passed by
reference?? How about trying something like this as a test:

sock = socket (&AF_INET, &SOCK_STREAM, &0);

and see if it still hangs?

Maybe the MUSIC debugger could be used to get more details on what is
going wrong?? It might even be possible to figure out in what way the
arguments being passed to socket() from C are "wrong" which might in
turn allow a replacement for CARGENV to be written?

Regards,
Peter Coghlan.






 


The change did not compile, something about a LVALUE needed. BUT, I think
you are on the right track. See below from ar_pf3 manual:
In that case, you probably need something more complex than adding an &.
Maybe something like this:

int family = AF_INET;
int type = SOCK_STREAM;
int zero = 0;

sock = socket (&family, &type, &zero);

Regards,
Peter Coghlan.


 

I will try the change, but I found this, now to figure out how,what,when....


CARGCALL ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?
? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?
? This subroutine is intended for C programmers calling TCP/IP socket ? ? ? ?
? routines.? When called before the first socket routine, it guarantees that
? the arguments are passed in the manner C requires. ? ? ? ? ? ? ? ? ? ? ? ?
? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?
CALLING SEQUENCE: ?CALL CARGCALL(); ? ? ? ??
I think I am not linking to the correct MUSIC/SP library.
Got to learn more about compile time libraries.

The above was found in? the help menu, system subroutines.

Still working on it.
Cheers
Tom c
? ? ? ? ? ? ? ? ? ? ??

Virus-free.


On Mon, Jun 21, 2021 at 11:13 AM Peter Coghlan <groups@...> wrote:
>
> The change did not compile, something about a LVALUE needed.? BUT, I think
> you are on the right track.? See below from ar_pf3 manual:
>

In that case, you probably need something more complex than adding an &.
Maybe something like this:

int family = AF_INET;
int type = SOCK_STREAM;
int zero = 0;

sock = socket (&family, &type, &zero);

Regards,
Peter Coghlan.






 

I will try the change, but I found this, now to figure out how,what,when....


CARGCALL



This subroutine is intended for C programmers calling TCP/IP socket

routines. When called before the first socket routine, it guarantees
that
the arguments are passed in the manner C requires.



CALLING SEQUENCE: CALL CARGCALL();
I think I am not linking to the correct MUSIC/SP library.
Got to learn more about compile time libraries.

The above was found in the help menu, system subroutines.

Still working on it.
Ok. In a FORTRAN program, you might use something like this:

/FILE SUBLIB PDS(*OS,*MUS)

I don't know if this would work in a C program or if you need something
different in that environment.

Bear in mind that the available documentation may be appropriate for
C/370 or something else that is not WATC.

Regards,
Peter Coghlan.


 

Ok first ... remember the manuals were written for Music 5.1. You are running Music/SP 6.2.

Look at the sample program. It should show everything you need.

Joe

On Mon, Jun 21, 2021 at 11:24 AM Tom Chandler <tchandler48@...> wrote:
I will try the change, but I found this, now to figure out how,what,when....


CARGCALL ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?
? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?
? This subroutine is intended for C programmers calling TCP/IP socket ? ? ? ?
? routines.? When called before the first socket routine, it guarantees that
? the arguments are passed in the manner C requires. ? ? ? ? ? ? ? ? ? ? ? ?
? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?
CALLING SEQUENCE: ?CALL CARGCALL(); ? ? ? ??
I think I am not linking to the correct MUSIC/SP library.
Got to learn more about compile time libraries.

The above was found in? the help menu, system subroutines.

Still working on it.
Cheers
Tom c
? ? ? ? ? ? ? ? ? ? ??

Virus-free.

On Mon, Jun 21, 2021 at 11:13 AM Peter Coghlan <groups@...> wrote:
>
> The change did not compile, something about a LVALUE needed.? BUT, I think
> you are on the right track.? See below from ar_pf3 manual:
>

In that case, you probably need something more complex than adding an &.
Maybe something like this:

int family = AF_INET;
int type = SOCK_STREAM;
int zero = 0;

sock = socket (&family, &type, &zero);

Regards,
Peter Coghlan.






 

tried the sample program int the dir $TCP and it will not work also.

Cheers
tom c


Virus-free.


On Mon, Jun 21, 2021 at 12:12 PM Joe Monk <joemonk64@...> wrote:
Ok first ... remember the manuals were written for Music 5.1. You are running Music/SP 6.2.

Look at the sample program. It should show everything you need.

Joe

On Mon, Jun 21, 2021 at 11:24 AM Tom Chandler <tchandler48@...> wrote:
I will try the change, but I found this, now to figure out how,what,when....


CARGCALL ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?
? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?
? This subroutine is intended for C programmers calling TCP/IP socket ? ? ? ?
? routines.? When called before the first socket routine, it guarantees that
? the arguments are passed in the manner C requires. ? ? ? ? ? ? ? ? ? ? ? ?
? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?
CALLING SEQUENCE: ?CALL CARGCALL(); ? ? ? ??
I think I am not linking to the correct MUSIC/SP library.
Got to learn more about compile time libraries.

The above was found in? the help menu, system subroutines.

Still working on it.
Cheers
Tom c
? ? ? ? ? ? ? ? ? ? ??

Virus-free.

On Mon, Jun 21, 2021 at 11:13 AM Peter Coghlan <groups@...> wrote:
>
> The change did not compile, something about a LVALUE needed.? BUT, I think
> you are on the right track.? See below from ar_pf3 manual:
>

In that case, you probably need something more complex than adding an &.
Maybe something like this:

int family = AF_INET;
int type = SOCK_STREAM;
int zero = 0;

sock = socket (&family, &type, &zero);

Regards,
Peter Coghlan.






 

Ok do me a favor ... copy/paste the sample program in a reply to this email.

joe

On Mon, Jun 21, 2021 at 12:24 PM Tom Chandler <tchandler48@...> wrote:
tried the sample program int the dir $TCP and it will not work also.

Cheers
tom c


Virus-free.

On Mon, Jun 21, 2021 at 12:12 PM Joe Monk <joemonk64@...> wrote:
Ok first ... remember the manuals were written for Music 5.1. You are running Music/SP 6.2.

Look at the sample program. It should show everything you need.

Joe

On Mon, Jun 21, 2021 at 11:24 AM Tom Chandler <tchandler48@...> wrote:
I will try the change, but I found this, now to figure out how,what,when....


CARGCALL ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?
? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?
? This subroutine is intended for C programmers calling TCP/IP socket ? ? ? ?
? routines.? When called before the first socket routine, it guarantees that
? the arguments are passed in the manner C requires. ? ? ? ? ? ? ? ? ? ? ? ?
? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?
CALLING SEQUENCE: ?CALL CARGCALL(); ? ? ? ??
I think I am not linking to the correct MUSIC/SP library.
Got to learn more about compile time libraries.

The above was found in? the help menu, system subroutines.

Still working on it.
Cheers
Tom c
? ? ? ? ? ? ? ? ? ? ??

Virus-free.

On Mon, Jun 21, 2021 at 11:13 AM Peter Coghlan <groups@...> wrote:
>
> The change did not compile, something about a LVALUE needed.? BUT, I think
> you are on the right track.? See below from ar_pf3 manual:
>

In that case, you probably need something more complex than adding an &.
Maybe something like this:

int family = AF_INET;
int type = SOCK_STREAM;
int zero = 0;

sock = socket (&family, &type, &zero);

Regards,
Peter Coghlan.